diff --git a/src/icons/SettingsRemoteIcon.tsx b/src/icons/SettingsRemoteIcon.tsx new file mode 100644 index 00000000..dd12b4f5 --- /dev/null +++ b/src/icons/SettingsRemoteIcon.tsx @@ -0,0 +1,10 @@ +import React from 'react'; +import { SvgIcon, SvgIconProps } from '@mui/material'; + +export const SettingsRemoteIcon: React.FC = (props) => { + return ( + + + + ); +}; diff --git a/src/icons/index.ts b/src/icons/index.ts index f53cf04d..8c62c2d9 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -142,6 +142,7 @@ export * from './Science'; export * from './Screenshot'; export * from './Search'; export * from './Settings'; +export * from './SettingsRemoteIcon'; export * from './Shapes'; export * from './Share'; export * from './SimCard';