Skip to content

Commit c71e33b

Browse files
Merge pull request #1440 from RajGajjar-01/feat/add-settings-cell-icon
feat: add SettingsCellIcon to sistent icons
2 parents eae6c2e + d5674a3 commit c71e33b

3 files changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const SettingsCellIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
8+
...props
9+
}: IconProps): JSX.Element => {
10+
return (
11+
<svg
12+
width={width}
13+
height={height}
14+
xmlns="http://www.w3.org/2000/svg"
15+
viewBox="0 0 24 24"
16+
{...props}
17+
>
18+
<path
19+
d="M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM16 0H8C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zM16 18H8V4h8v14z"
20+
fill={fill}
21+
/>
22+
</svg>
23+
);
24+
};
25+
26+
export default SettingsCellIcon;

src/icons/SettingsCell/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as SettingsCellIcon } from './SettingsCellIcon';

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ export * from './Science';
146146
export * from './Screenshot';
147147
export * from './Search';
148148
export * from './Settings';
149+
export * from './SettingsCell';
149150
export * from './Shapes';
150151
export * from './Share';
151152
export * from './SimCard';

0 commit comments

Comments
 (0)