Skip to content

Commit e0fc843

Browse files
committed
[Feature] Add SettingsRemote icon
Signed-off-by: Prarthana <226818177+prarii@users.noreply.github.com>
1 parent 4164102 commit e0fc843

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/icons/SettingsRemoteIcon.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from 'react';
2+
import { SvgIcon, SvgIconProps } from '@mui/material';
3+
4+
export const SettingsRemoteIcon: React.FC<SvgIconProps> = (props) => {
5+
return (
6+
<SvgIcon {...props}>
7+
<path d="M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1m-3 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2M7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05M12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0" />
8+
</SvgIcon>
9+
);
10+
};

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ export * from './Science';
142142
export * from './Screenshot';
143143
export * from './Search';
144144
export * from './Settings';
145+
export * from './SettingsRemoteIcon';
145146
export * from './Shapes';
146147
export * from './Share';
147148
export * from './SimCard';

0 commit comments

Comments
 (0)