Skip to content

Commit

Permalink
Release 20241104 (#419)
Browse files Browse the repository at this point in the history
  • Loading branch information
beawar authored Nov 4, 2024
2 parents d7ca8b2 + efa504b commit 9927155
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ tsTemplate.js
/storybook-static
*storybook.log
*.zip
.tool-versions
.DS_Store
10 changes: 10 additions & 0 deletions src/icons/fill/GroupCalendar.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import * as React from 'react';
import type { SVGProps } from 'react';

const SvgGroupCalendar = (props: SVGProps<SVGSVGElement>): React.JSX.Element => (
<svg xmlns="http://www.w3.org/2000/svg" width={24} height={24} fill="none" {...props}>
<path d="M19.828 21A2.996 2.996 0 0 1 17 23H5a3 3 0 0 1-2.121-.879A3 3 0 0 1 2 20V9a3 3 0 0 1 2-2.828V20a.997.997 0 0 0 1 1z" />
<path d="M22.982 9.976H5v7.029a3.01 3.01 0 0 0 2.997 2.997h11.988a3.01 3.01 0 0 0 2.997-2.997zm-12.987 6.01c-.548 0-.999-.452-.999-1s.451-.999 1-.999c.547 0 .998.451.998 1 0 .547-.45.998-.999.998m7.992 0h-3.996c-.548 0-.999-.452-.999-1s.451-.999 1-.999h3.995c.548 0 1 .451 1 1 0 .547-.452.998-1 .998M16.988 2.998V2c0-.548.451-.999 1-.999.547 0 .998.45.998.999v1h1a3.01 3.01 0 0 1 2.996 2.996v1.983H5V5.995a3.01 3.01 0 0 1 2.997-2.997h1V2a1 1 0 0 1 .503-.866 1 1 0 0 1 .54-.132 1 1 0 0 1 .652.284 1 1 0 0 1 .302.714v1z" />
</svg>
);
export default SvgGroupCalendar;
1 change: 1 addition & 0 deletions src/icons/fill/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ export { default as Globe3 } from './Globe3';
export { default as Globe } from './Globe';
export { default as Google } from './Google';
export { default as Grid } from './Grid';
export { default as GroupCalendar } from './GroupCalendar';
export { default as Group } from './Group';
export { default as Hangup } from './Hangup';
export { default as HardDrive } from './HardDrive';
Expand Down
13 changes: 13 additions & 0 deletions src/icons/outline/GroupCalendarOutline.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import * as React from 'react';
import type { SVGProps } from 'react';

const SvgGroupCalendarOutline = (props: SVGProps<SVGSVGElement>): React.JSX.Element => (
<svg xmlns="http://www.w3.org/2000/svg" width={24} height={24} fill="none" {...props}>
<path
fillRule="evenodd"
d="M19 3h1c.796 0 1.559.316 2.121.879S23 5.204 23 6v11c0 .796-.316 1.559-.879 2.121A3 3 0 0 1 20 20H8a3 3 0 0 1-2.121-.879A3 3 0 0 1 5 17V6c0-.796.316-1.559.879-2.121A3 3 0 0 1 8 3h1V2a.997.997 0 0 1 1-1 .997.997 0 0 1 1 1v1h6V2a.997.997 0 0 1 1-1 .997.997 0 0 1 1 1zM9 5H8a.997.997 0 0 0-1 1v4h14V6a.997.997 0 0 0-1-1h-1v1a.997.997 0 0 1-1 1 .997.997 0 0 1-1-1V5h-6v1a.997.997 0 0 1-1 1 .997.997 0 0 1-1-1zm11 13a.997.997 0 0 0 1-1v-5H7v5a.997.997 0 0 0 1 1zm-2-4h-4a.997.997 0 0 0-1 1 .997.997 0 0 0 1 1h4a.997.997 0 0 0 1-1 .997.997 0 0 0-1-1m1.121 8.121c.32-.319.56-.703.707-1.121H5a.997.997 0 0 1-1-1V6.172A2.996 2.996 0 0 0 2 9v11c0 .796.316 1.559.879 2.121A3 3 0 0 0 5 23h12c.796 0 1.559-.316 2.121-.879M11 15a1 1 0 1 1-2 0 1 1 0 0 1 2 0"
clipRule="evenodd"
/>
</svg>
);
export default SvgGroupCalendarOutline;
1 change: 1 addition & 0 deletions src/icons/outline/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ export { default as GoFirstOutline } from './GoFirstOutline';
export { default as GoLastOutline } from './GoLastOutline';
export { default as GoogleOutline } from './GoogleOutline';
export { default as GridOutline } from './GridOutline';
export { default as GroupCalendarOutline } from './GroupCalendarOutline';
export { default as GroupOutline } from './GroupOutline';
export { default as HangupOutline } from './HangupOutline';
export { default as HardDriveOutline } from './HardDriveOutline';
Expand Down

0 comments on commit 9927155

Please sign in to comment.