generated from gravity-ui/package-example
-
Notifications
You must be signed in to change notification settings - Fork 7
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
52 changed files
with
787 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const AlignCenter = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<g clipPath="url(#a)"> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M16 2.75a.75.75 0 0 0-1.5 0v10.5a.75.75 0 0 0 1.5 0V2.75ZM8.72 8.53a.75.75 0 0 1 0-1.06l2-2a.75.75 0 1 1 1.06 1.06l-.72.72h1.69a.75.75 0 0 1 0 1.5h-1.69l.72.72a.75.75 0 1 1-1.06 1.06l-2-2ZM7.28 7.47a.75.75 0 0 1 0 1.06l-2 2a.75.75 0 1 1-1.06-1.06l.72-.72H3.25a.75.75 0 0 1 0-1.5h1.69l-.72-.72a.75.75 0 0 1 1.06-1.06l2 2ZM.75 2a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-1.5 0V2.75A.75.75 0 0 1 .75 2Z" | ||
clipRule="evenodd" | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="a"> | ||
<path fill="currentColor" d="M0 0h16v16H0z" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
export default AlignCenter; |
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,27 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const AlignFull = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<g clipPath="url(#a)"> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M16 2.75a.75.75 0 0 0-1.5 0v10.5a.75.75 0 0 0 1.5 0V2.75Zm-2.72 4.72a.75.75 0 0 1 0 1.06l-2 2a.75.75 0 1 1-1.06-1.06l.72-.72H5.06l.72.72a.75.75 0 1 1-1.06 1.06l-2-2a.75.75 0 0 1 0-1.06l2-2a.75.75 0 0 1 1.06 1.06l-.72.72h5.88l-.72-.72a.75.75 0 1 1 1.06-1.06l2 2ZM.75 2a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-1.5 0V2.75A.75.75 0 0 1 .75 2Z" | ||
clipRule="evenodd" | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="a"> | ||
<path fill="currentColor" d="M0 0h16v16H0z" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
export default AlignFull; |
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,27 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const AlignLeft = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<g clipPath="url(#a)"> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M16 2.75a.75.75 0 0 0-1.5 0v10.5a.75.75 0 0 0 1.5 0V2.75ZM2.72 8.53a.75.75 0 0 1 0-1.06l2-2a.75.75 0 0 1 1.06 1.06l-.72.72h3.19a.75.75 0 1 1 0 1.5H5.06l.72.72a.75.75 0 1 1-1.06 1.06l-2-2ZM.75 2a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-1.5 0V2.75A.75.75 0 0 1 .75 2Z" | ||
clipRule="evenodd" | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="a"> | ||
<path fill="currentColor" d="M0 0h16v16H0z" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
export default AlignLeft; |
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,27 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const AlignRight = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<g clipPath="url(#a)"> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M16 2.75a.75.75 0 0 0-1.5 0v10.5a.75.75 0 0 0 1.5 0V2.75Zm-2.72 4.72a.75.75 0 0 1 0 1.06l-2 2a.75.75 0 1 1-1.06-1.06l.72-.72H7.75a.75.75 0 0 1 0-1.5h3.19l-.72-.72a.75.75 0 1 1 1.06-1.06l2 2ZM.75 2a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-1.5 0V2.75A.75.75 0 0 1 .75 2Z" | ||
clipRule="evenodd" | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="a"> | ||
<path fill="currentColor" d="M0 0h16v16H0z" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
export default AlignRight; |
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,20 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const ArrowBarsDescendingAlignLeft = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M2.22 13.28a.75.75 0 0 0 1.06 0l2-2a.75.75 0 1 0-1.06-1.06l-.72.72V3.25a.75.75 0 0 0-1.5 0v7.69l-.72-.72a.75.75 0 1 0-1.06 1.06l2 2ZM7 3.25a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 7 3.25Zm.75 4a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm0 4.75a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
export default ArrowBarsDescendingAlignLeft; |
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,18 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const ArrowsRotateLeftSlash = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<g fill="currentColor" fillRule="evenodd" clipRule="evenodd"> | ||
<path d="M8 1.5a6.47 6.47 0 0 1 2.709.59L9.552 3.245A4.996 4.996 0 0 0 8 3a4.983 4.983 0 0 0-3.57 1.5h1.32a.75.75 0 1 1 0 1.5h-3A.75.75 0 0 1 2 5.25v-3a.75.75 0 1 1 1.5 0v1.06A6.48 6.48 0 0 1 8 1.5Zm4.026 3.534-6.991 6.992C5.865 12.638 6.89 13 8 13a4.983 4.983 0 0 0 3.57-1.5h-1.32a.75.75 0 0 1 0-1.5h3a.75.75 0 0 1 .75.75v3a.75.75 0 1 1-1.5 0v-1.06A6.48 6.48 0 0 1 8 14.5a6.472 6.472 0 0 1-4.035-1.404l-.935.934a.75.75 0 0 1-1.06-1.06l11-11a.75.75 0 0 1 1.06 1.06l-.934.935a6.472 6.472 0 0 1 1.349 3.184.75.75 0 0 1-1.488.194 4.972 4.972 0 0 0-.93-2.309ZM3.043 8.657c.04.308.109.607.203.895L2.09 10.708a6.46 6.46 0 0 1-.534-1.857.75.75 0 1 1 1.487-.194Z" /> | ||
<path d="M8 1.5a6.47 6.47 0 0 1 2.709.59L9.552 3.245A4.996 4.996 0 0 0 8 3a4.983 4.983 0 0 0-3.57 1.5h1.32a.75.75 0 1 1 0 1.5h-3A.75.75 0 0 1 2 5.25v-3a.75.75 0 1 1 1.5 0v1.06A6.48 6.48 0 0 1 8 1.5Zm4.026 3.534-6.991 6.992C5.865 12.638 6.89 13 8 13a4.983 4.983 0 0 0 3.57-1.5h-1.32a.75.75 0 0 1 0-1.5h3a.75.75 0 0 1 .75.75v3a.75.75 0 1 1-1.5 0v-1.06A6.48 6.48 0 0 1 8 14.5a6.472 6.472 0 0 1-4.035-1.404l-.935.934a.75.75 0 0 1-1.06-1.06l11-11a.75.75 0 0 1 1.06 1.06l-.934.935a6.472 6.472 0 0 1 1.349 3.184.75.75 0 0 1-1.488.194 4.972 4.972 0 0 0-.93-2.309ZM3.043 8.657c.04.308.109.607.203.895L2.09 10.708a6.46 6.46 0 0 1-.534-1.857.75.75 0 1 1 1.487-.194Z" /> | ||
</g> | ||
</svg> | ||
); | ||
export default ArrowsRotateLeftSlash; |
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,20 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const ArrowsRotateRightSlash = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M2.904 3.965a6.472 6.472 0 0 0-1.349 3.184.75.75 0 0 0 1.488.194 4.971 4.971 0 0 1 .93-2.309l6.992 6.992A4.978 4.978 0 0 1 8 13a4.983 4.983 0 0 1-3.57-1.5h1.32a.75.75 0 0 0 0-1.5h-3a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 1.5 0v-1.06A6.48 6.48 0 0 0 8 14.5a6.472 6.472 0 0 0 4.035-1.404l.935.934a.75.75 0 1 0 1.06-1.06l-11-11a.75.75 0 0 0-1.06 1.06l.934.935Zm9.85 5.587 1.156 1.156a6.457 6.457 0 0 0 .534-1.857.75.75 0 1 0-1.487-.194c-.04.308-.109.607-.203.895ZM5.291 2.09l1.157 1.157A4.996 4.996 0 0 1 8 3a4.98 4.98 0 0 1 3.57 1.5h-1.32a.75.75 0 1 0 0 1.5h3a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-1.5 0v1.06A6.48 6.48 0 0 0 8 1.5a6.47 6.47 0 0 0-2.709.59Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
export default ArrowsRotateRightSlash; |
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,20 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const CardClub = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M12.5 4v8a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 12V4A1.5 1.5 0 0 1 5 2.5h6A1.5 1.5 0 0 1 12.5 4ZM11 1a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V4a3 3 0 0 1 3-3h6ZM9.5 6c0 .176-.03.345-.086.502L9.5 6.5a1.5 1.5 0 1 1-1.228 2.361c.08.667.382 1.293.862 1.773L9.5 11v.5h-3V11l.366-.366c.48-.48.782-1.106.862-1.773a1.5 1.5 0 1 1-1.142-2.359A1.5 1.5 0 1 1 9.5 6Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
export default CardClub; |
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,20 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const CardDiamond = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M12.5 4v8a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 12V4A1.5 1.5 0 0 1 5 2.5h6A1.5 1.5 0 0 1 12.5 4ZM11 1a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V4a3 3 0 0 1 3-3h6ZM5 8.25v-.5A5.564 5.564 0 0 0 7.75 4h.5A5.564 5.564 0 0 0 11 7.75v.5A5.564 5.564 0 0 0 8.25 12h-.5A5.564 5.564 0 0 0 5 8.25Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
export default CardDiamond; |
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,20 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const CardHeart = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M12.5 4v8a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 12V4A1.5 1.5 0 0 1 5 2.5h6A1.5 1.5 0 0 1 12.5 4ZM11 1a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V4a3 3 0 0 1 3-3h6ZM4.75 7.333c0-1.148.734-2.084 1.846-2.084.613 0 1.253.595 1.404 1.501.15-.915.791-1.5 1.404-1.5 1.112 0 1.846.935 1.846 2.083 0 1.895-1.69 3.1-3.1 3.878a.307.307 0 0 1-.3-.001c-1.412-.786-3.1-1.973-3.1-3.877Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
export default CardHeart; |
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,20 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const CardSpade = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M12.5 4v8a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 12V4A1.5 1.5 0 0 1 5 2.5h6A1.5 1.5 0 0 1 12.5 4ZM11 1a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V4a3 3 0 0 1 3-3h6ZM9.296 9.5C10.279 9.5 11 8.803 11 7.855c0-1.308-1.38-2.246-2.464-2.983-.19-.13-.372-.254-.536-.372-.162.117-.342.24-.53.368C6.384 5.608 5 6.55 5 7.855 5 8.803 5.721 9.5 6.704 9.5c.388 0 .716-.124.974-.345a3.018 3.018 0 0 1-.812 1.479L6.5 11v.5h3V11l-.366-.366a3.018 3.018 0 0 1-.812-1.479c.258.221.587.345.974.345Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
export default CardSpade; |
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,27 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const CloudGear = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<g clipPath="url(#a)"> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M4.5 5.25a3.25 3.25 0 0 1 6.398-.811.75.75 0 0 0 .702.563 2.986 2.986 0 0 1 1.94.798c.591.549.96 1.33.96 2.2A.75.75 0 0 0 16 8a4.49 4.49 0 0 0-1.44-3.3 4.489 4.489 0 0 0-2.373-1.148 4.751 4.751 0 0 0-9.184 1.522A3.751 3.751 0 0 0 3.75 12.5h.5a.75.75 0 0 0 0-1.5h-.5a2.25 2.25 0 0 1-.002-4.5h.03a.75.75 0 0 0 .747-.843A3.289 3.289 0 0 1 4.5 5.25Zm8.509 5.939a2.223 2.223 0 0 1-1.66-2.138l-.68-.256a2.38 2.38 0 0 1-2.748.816l-.406.569c.57.788.57 1.87 0 2.657l.406.569a2.38 2.38 0 0 1 2.747.816l.68-.255a2.223 2.223 0 0 1 1.66-2.139v-.639Zm-.113-2.396a.715.715 0 0 0-.418-.921l-1.798-.674a.865.865 0 0 0-1.114.506.87.87 0 0 1-1.32.395.884.884 0 0 0-1.23.2L5.94 9.805a.771.771 0 0 0 .18 1.076c.43.307.43.948 0 1.255a.771.771 0 0 0-.18 1.076l1.076 1.506a.884.884 0 0 0 1.23.2.87.87 0 0 1 1.32.395.865.865 0 0 0 1.114.506l1.798-.674a.715.715 0 0 0 .418-.92.715.715 0 0 1 .67-.966h.134a.808.808 0 0 0 .809-.809v-1.883a.808.808 0 0 0-.809-.808h-.134a.715.715 0 0 1-.67-.966Zm-1.833 2.709a1.052 1.052 0 1 1-2.103 0 1.052 1.052 0 0 1 2.103 0Z" | ||
clipRule="evenodd" | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="a"> | ||
<path fill="currentColor" d="M0 0h16v16H0z" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
export default CloudGear; |
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,20 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const CloudNut = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M4.5 5.25a3.25 3.25 0 0 1 6.398-.811.75.75 0 0 0 .702.563 2.986 2.986 0 0 1 1.94.798c.591.549.96 1.33.96 2.2A.75.75 0 0 0 16 8a4.49 4.49 0 0 0-1.44-3.3 4.489 4.489 0 0 0-2.373-1.148 4.751 4.751 0 0 0-9.184 1.522A3.751 3.751 0 0 0 3.75 12.5h.5a.75.75 0 0 0 0-1.5h-.5a2.25 2.25 0 0 1-.002-4.5h.03a.75.75 0 0 0 .747-.843A3.289 3.289 0 0 1 4.5 5.25Zm7.123 8.25 1.406-2.5-1.406-2.5H8.877L7.471 11l1.406 2.5h2.746Zm2.713-1.765a1.5 1.5 0 0 0 0-1.47l-1.406-2.5A1.5 1.5 0 0 0 11.623 7H8.877a1.5 1.5 0 0 0-1.307.765l-1.406 2.5a1.5 1.5 0 0 0 0 1.47l1.406 2.5A1.5 1.5 0 0 0 8.877 15h2.746a1.5 1.5 0 0 0 1.307-.765l1.406-2.5ZM11.25 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
export default CloudNut; |
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,20 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const DatabaseArrowRight = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M11.5 4c0 .174-.071.513-.885.888C9.8 5.263 8.538 5.5 7 5.5c-1.538 0-2.799-.237-3.615-.612C2.57 4.513 2.5 4.174 2.5 4c0-.174.071-.513.885-.888C4.2 2.737 5.462 2.5 7 2.5c1.538 0 2.799.237 3.615.612.814.375.885.714.885.888ZM3.385 8.888C2.578 8.516 2.5 8.179 2.5 8V6.123C3.6 6.708 5.208 7 7 7c1.792 0 3.4-.292 4.5-.877V7.25a.75.75 0 0 0 1.5 0V4c0-2-2.686-3-6-3S1 2 1 4v8c0 .995.665 1.747 1.757 2.25l.314-.681-.314.681c1.086.5 2.586.75 4.243.75.088 0 .176 0 .263-.002a.75.75 0 0 0-.025-1.5L7 13.5c-1.538 0-2.799-.236-3.615-.613-.807-.371-.885-.708-.885-.887v-1.877c.083.044.169.086.257.127 1.086.5 2.586.75 4.243.75.09 0 .178 0 .266-.002a.75.75 0 1 0-.024-1.5L7 9.5c-1.538 0-2.799-.237-3.615-.612ZM13.78 14.53a.75.75 0 1 1-1.06-1.06l.72-.72H10a.75.75 0 0 1 0-1.5h3.44l-.72-.72a.75.75 0 1 1 1.06-1.06l2 2a.75.75 0 0 1 0 1.06l-2 2Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
export default DatabaseArrowRight; |
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,20 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const EnvelopeOpenXmark = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M14 6.498V11.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 11.5V6.498c0-.54.29-1.039.76-1.305l4.5-2.55a1.5 1.5 0 0 1 1.48 0l4.5 2.55c.47.266.76.765.76 1.305Zm-13.5 0a3 3 0 0 1 1.521-2.61l4.5-2.55a3 3 0 0 1 2.958 0l4.5 2.55a3 3 0 0 1 1.521 2.61V11.5a3 3 0 0 1-3 3h-9a3 3 0 0 1-3-3V6.498Zm6.03-.528a.75.75 0 0 0-1.06 1.06L6.94 8.5 5.47 9.97a.75.75 0 1 0 1.06 1.06L8 9.56l1.47 1.47a.75.75 0 1 0 1.06-1.06L9.06 8.5l1.47-1.47a.75.75 0 1 0-1.06-1.06L8 7.44 6.53 5.97Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
export default EnvelopeOpenXmark; |
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,20 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const FaceNeutralDashed = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M8 1c-.372 0-.737.03-1.094.085a.75.75 0 0 0 .232 1.482 5.546 5.546 0 0 1 1.724 0 .75.75 0 0 0 .232-1.482A7.047 7.047 0 0 0 8 1ZM4.767 3.55a.75.75 0 1 0-.882-1.213 7.036 7.036 0 0 0-1.548 1.548.75.75 0 0 0 1.213.882c.34-.466.75-.878 1.217-1.217Zm7.348-1.213a.75.75 0 1 0-.883 1.213c.467.34.879.75 1.218 1.217a.75.75 0 0 0 1.213-.882 7.037 7.037 0 0 0-1.548-1.548ZM2.567 7.138a.75.75 0 0 0-1.482-.232 7.047 7.047 0 0 0 0 2.188.75.75 0 0 0 1.482-.232 5.546 5.546 0 0 1 0-1.724Zm12.348-.232a.75.75 0 1 0-1.482.232 5.54 5.54 0 0 1 0 1.724.75.75 0 0 0 1.482.232 7.048 7.048 0 0 0 0-2.188ZM3.55 11.233a.75.75 0 1 0-1.213.882 7.037 7.037 0 0 0 1.548 1.548.75.75 0 0 0 .882-1.213 5.533 5.533 0 0 1-1.217-1.217Zm10.113.882a.75.75 0 0 0-1.213-.883 5.53 5.53 0 0 1-1.217 1.218.75.75 0 0 0 .882 1.213 7.037 7.037 0 0 0 1.548-1.548Zm-6.525 1.318a.75.75 0 0 0-.232 1.482 7.048 7.048 0 0 0 2.188 0 .75.75 0 1 0-.232-1.482 5.54 5.54 0 0 1-1.724 0ZM10 11a.75.75 0 0 0 0-1.5H6A.75.75 0 0 0 6 11h4Zm0-3a.75.75 0 0 1-.75-.75v-1a.75.75 0 0 1 1.5 0v1A.75.75 0 0 1 10 8Zm-4.75-.75a.75.75 0 0 0 1.5 0v-1a.75.75 0 0 0-1.5 0v1Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
export default FaceNeutralDashed; |
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,20 @@ | ||
import * as React from 'react'; | ||
import {SVGProps} from 'react'; | ||
const FileRuble = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={16} | ||
height={16} | ||
fill="none" | ||
viewBox="0 0 16 16" | ||
{...props} | ||
> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="M11 13.5H5A1.5 1.5 0 0 1 3.5 12V4A1.5 1.5 0 0 1 5 2.5h2.757a1.5 1.5 0 0 1 1.061.44l3.243 3.242a1.5 1.5 0 0 1 .439 1.06V12a1.5 1.5 0 0 1-1.5 1.5Zm2.121-8.379A3 3 0 0 1 14 7.243V12a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V4a3 3 0 0 1 3-3h2.757a3 3 0 0 1 2.122.879L13.12 5.12ZM6.75 4.5a.75.75 0 0 0-.75.75v2h-.25a.75.75 0 0 0 0 1.5H6v.75h-.25a.75.75 0 0 0 0 1.5H6v.25a.75.75 0 0 0 1.5 0V11h.75a.75.75 0 0 0 0-1.5H7.5v-.75h.875a2.125 2.125 0 0 0 0-4.25H6.75Zm1.625 2.75H7.5V6h.875a.625.625 0 1 1 0 1.25Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
export default FileRuble; |
Oops, something went wrong.