-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,5 @@ tsTemplate.js | |
/storybook-static | ||
*storybook.log | ||
*.zip | ||
.tool-versions | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters