Skip to content

Commit b3541f0

Browse files
authored
feat: add group experimental icon (#547)
* feat: add group experimental icon * fix: 24x24 icon
1 parent f1f4662 commit b3541f0

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed
Lines changed: 6 additions & 0 deletions
Loading
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// DO NOT EDIT. This file was generated by running `npm run generate`.;
2+
import * as React from 'react';
3+
import { get } from '../../utils/themeGet';
4+
import { IconProps } from '../IconProps';
5+
type Props = IconProps;
6+
const GroupIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
7+
const props = { ...rest, color };
8+
const sizePx = Number.isFinite(size as number)
9+
? size
10+
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
11+
return (
12+
<svg
13+
{...props}
14+
width={sizePx}
15+
height={sizePx}
16+
viewBox="0 0 24 24"
17+
fill="none"
18+
xmlns="http://www.w3.org/2000/svg"
19+
>
20+
<g clipPath="url(#GroupIcon__clip0_996_29951)">
21+
<path
22+
d="M5.332 12.832c.918 0 1.668-.75 1.668-1.668C7 10.25 6.25 9.5 5.332 9.5a1.67 1.67 0 00-1.664 1.664c0 .918.75 1.668 1.664 1.668zm.941.914a6.159 6.159 0 00-.941-.082 5.8 5.8 0 00-2.316.484A1.668 1.668 0 002 15.688v1.308h3.75v-1.34c0-.691.191-1.344.523-1.91zm12.395-.914c.914 0 1.664-.75 1.664-1.668A1.67 1.67 0 0018.668 9.5c-.918 0-1.668.75-1.668 1.664 0 .918.75 1.668 1.668 1.668zM22 15.687c0-.675-.398-1.273-1.016-1.539a5.8 5.8 0 00-2.316-.484c-.328 0-.633.035-.941.082.332.566.523 1.219.523 1.91v1.34H22zm-6.469-2.316a8.675 8.675 0 00-3.531-.75c-1.36 0-2.559.328-3.535.75A2.495 2.495 0 007 15.656v1.34h10v-1.34c0-.984-.566-1.883-1.469-2.285zm-6.804 1.957c.074-.191.105-.324.757-.574A6.87 6.87 0 0112 14.289c.86 0 1.707.149 2.516.465.64.25.675.383.757.574zM12 8.668a.833.833 0 010 1.664.833.833 0 010-1.664zM12 7a2.497 2.497 0 00-2.5 2.5c0 1.383 1.117 2.5 2.5 2.5s2.5-1.117 2.5-2.5S13.383 7 12 7zm0 0"
23+
fill="currentColor"
24+
/>
25+
</g>
26+
<defs>
27+
<clipPath id="GroupIcon__clip0_996_29951">
28+
<path fill="#fff" d="M0 0h24v24H0z" />
29+
</clipPath>
30+
</defs>
31+
</svg>
32+
);
33+
};
34+
export default GroupIcon;

src/icons/experimental/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ export { default as EventRepeatIcon } from './EventRepeatIcon';
1111
export { default as CogOutlineIcon } from './CogOutlineIcon';
1212
export { default as SupportAgentIcon } from './SupportAgentIcon';
1313
export { default as ExitIcon } from './ExitIcon';
14+
export { default as GroupIcon } from './GroupIcon';

0 commit comments

Comments
 (0)