diff --git a/src/icons/Settings/SettingsRemoteIcon.tsx b/src/icons/Settings/SettingsRemoteIcon.tsx new file mode 100644 index 000000000..d270b87c0 --- /dev/null +++ b/src/icons/Settings/SettingsRemoteIcon.tsx @@ -0,0 +1,25 @@ +import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants'; +import { IconProps } from '../types'; + +export const SettingsRemoteIcon = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL_NONE, + ...props +}: IconProps): JSX.Element => { + return ( + + + + ); +}; +export default SettingsRemoteIcon; \ No newline at end of file diff --git a/src/icons/Settings/index.ts b/src/icons/Settings/index.ts index e1819d516..73e6042e0 100644 --- a/src/icons/Settings/index.ts +++ b/src/icons/Settings/index.ts @@ -1 +1,2 @@ export { default as OutlinedSettingsIcon } from './OutlinedSettingsIcon'; +export { default as SettingsRemoteIcon } from './SettingsRemoteIcon'; \ No newline at end of file