From 50f5f43029f17179bc5c571f624c304345641ca5 Mon Sep 17 00:00:00 2001 From: Prarthana <226818177+prarii@users.noreply.github.com> Date: Mon, 20 Apr 2026 18:31:51 +0000 Subject: [PATCH] [Feature] Add SettingsIcon Signed-off-by: Prarthana <226818177+prarii@users.noreply.github.com> --- src/icons/SettingsIcon.tsx | 10 ++++++++++ src/icons/index.ts | 1 + 2 files changed, 11 insertions(+) create mode 100644 src/icons/SettingsIcon.tsx diff --git a/src/icons/SettingsIcon.tsx b/src/icons/SettingsIcon.tsx new file mode 100644 index 00000000..8d62b7bb --- /dev/null +++ b/src/icons/SettingsIcon.tsx @@ -0,0 +1,10 @@ +import React from 'react'; +import { SvgIcon, SvgIconProps } from '@mui/material'; + +export const SettingsIcon: React.FC = (props) => { + return ( + + + + ); +}; diff --git a/src/icons/index.ts b/src/icons/index.ts index f53cf04d..c5a8c7a6 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 './SettingsIcon'; export * from './Shapes'; export * from './Share'; export * from './SimCard';