Skip to content

Commit 50f5f43

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

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/icons/SettingsIcon.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 SettingsIcon: React.FC<SvgIconProps> = (props) => {
5+
return (
6+
<SvgIcon {...props}>
7+
<path d="M19.14 12.94c.04-.3.06-.61.06-.94 0-.32-.02-.64-.07-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.05.3-.09.63-.09.94s.02.64.07.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6"/>
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 './SettingsIcon';
145146
export * from './Shapes';
146147
export * from './Share';
147148
export * from './SimCard';

0 commit comments

Comments
 (0)