Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: sync icons #11

Merged
merged 1 commit into from
Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
20 changes: 20 additions & 0 deletions lib/ArrowShapeDown.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import {SVGProps} from 'react';
const ArrowShapeDown = (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="M6 7.5H3.33a.33.33 0 0 0-.252.542l4.42 5.225a.656.656 0 0 0 1.003 0l4.42-5.225a.33.33 0 0 0-.251-.542H10V3a.5.5 0 0 0-.5-.5h-3A.5.5 0 0 0 6 3v4.5ZM4.5 3a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3h1.17a1.83 1.83 0 0 1 1.397 3.011l-4.421 5.225a2.156 2.156 0 0 1-3.292 0L1.933 9.011A1.83 1.83 0 0 1 3.329 6H4.5V3Z"
clipRule="evenodd"
/>
</svg>
);
export default ArrowShapeDown;
20 changes: 20 additions & 0 deletions lib/ArrowShapeLeft.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import {SVGProps} from 'react';
const ArrowShapeLeft = (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.5 6V3.33a.33.33 0 0 0-.543-.252L2.732 7.499a.656.656 0 0 0 0 1.002l5.225 4.421a.33.33 0 0 0 .543-.252V10H13a.5.5 0 0 0 .5-.5v-3A.5.5 0 0 0 13 6H8.5ZM13 4.5a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3v1.17a1.83 1.83 0 0 1-3.012 1.397L1.763 9.646a2.156 2.156 0 0 1 0-3.292l5.225-4.421A1.83 1.83 0 0 1 10 3.33V4.5h3Z"
clipRule="evenodd"
/>
</svg>
);
export default ArrowShapeLeft;
20 changes: 20 additions & 0 deletions lib/ArrowShapeRight.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import {SVGProps} from 'react';
const ArrowShapeRight = (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="M7.5 10v2.67a.33.33 0 0 0 .542.252l5.225-4.421a.656.656 0 0 0 0-1.002L8.042 3.078a.33.33 0 0 0-.543.252V6H3a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h4.5ZM3 11.5a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3V3.33a1.83 1.83 0 0 1 3.01-1.397l5.226 4.421a2.156 2.156 0 0 1 0 3.292L9.01 14.067a1.83 1.83 0 0 1-3.012-1.397V11.5H3Z"
clipRule="evenodd"
/>
</svg>
);
export default ArrowShapeRight;
20 changes: 20 additions & 0 deletions lib/ArrowShapeUp.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import {SVGProps} from 'react';
const ArrowShapeUp = (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="M10 8.5h2.67a.33.33 0 0 0 .252-.542L8.5 2.733a.656.656 0 0 0-1.002 0l-4.42 5.225a.33.33 0 0 0 .252.542H6V13a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5V8.5Zm1.5 4.5a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-3H3.33a1.83 1.83 0 0 1-1.398-3.01l4.42-5.225a2.156 2.156 0 0 1 3.293 0l4.42 5.225A1.83 1.83 0 0 1 12.67 10H11.5v3Z"
clipRule="evenodd"
/>
</svg>
);
export default ArrowShapeUp;
20 changes: 20 additions & 0 deletions lib/ArrowUpFromSquareSlash.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import {SVGProps} from 'react';
const ArrowUpFromSquareSlash = (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="M7.47 1.22a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 1 1-1.06 1.06L8.75 3.56v3.738l-1.5-1.5V3.56L6.131 4.679l-1.06-1.06 2.399-2.4Zm-.22 8.84v1.19a.75.75 0 0 0 1.453.263l1.986 1.987H4A1.5 1.5 0 0 1 2.5 12V9.5A1.5 1.5 0 0 1 4 8h1.19l2.06 2.06ZM3.704 6.515 1.97 4.78a.75.75 0 0 1 1.06-1.06l11 11a.75.75 0 1 1-1.06 1.06l-.786-.785A3.11 3.11 0 0 1 12 15H4a3 3 0 0 1-3-3V9.5a3 3 0 0 1 2.704-2.986Zm9.795 5.533 1.22 1.22A2.98 2.98 0 0 0 15 12.001V9.5a3 3 0 0 0-3-3h-.25a.75.75 0 0 0 0 1.5H12a1.5 1.5 0 0 1 1.5 1.5v2.547Z"
clipRule="evenodd"
/>
</svg>
);
export default ArrowUpFromSquareSlash;
27 changes: 27 additions & 0 deletions lib/Arrows3RotateLeftLetterA.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import * as React from 'react';
import {SVGProps} from 'react';
const Arrows3RotateLeftLetterA = (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="M8.007 1.52a6.466 6.466 0 0 1 3.384.983.75.75 0 1 1-.795 1.272 4.973 4.973 0 0 0-2.602-.756 4.983 4.983 0 0 0-3.583 1.469l.817.007a.75.75 0 1 1-.013 1.5l-2.497-.022a.75.75 0 0 1-.743-.756l.022-2.5a.75.75 0 1 1 1.5.013l-.005.56a6.48 6.48 0 0 1 4.515-1.77ZM1.453 7.796a6.473 6.473 0 0 0 .84 3.422 6.48 6.48 0 0 0 3.791 3.026l-.487.275a.75.75 0 0 0 .739 1.306l2.176-1.231a.75.75 0 0 0 .283-1.022L7.565 11.4a.75.75 0 0 0-1.305.738l.403.712a4.983 4.983 0 0 1-3.064-2.37 4.973 4.973 0 0 1-.647-2.63.75.75 0 1 0-1.499-.053Zm9.554 5.959a6.473 6.473 0 0 0 2.544-2.438 6.48 6.48 0 0 0 .724-4.796l.483.284a.75.75 0 1 0 .761-1.293l-2.154-1.268a.75.75 0 0 0-1.027.265L11.071 6.66a.75.75 0 0 0 1.292.762l.415-.705a4.983 4.983 0 0 1-.52 3.838 4.974 4.974 0 0 1-1.955 1.876.75.75 0 1 0 .704 1.324ZM7.003 5.284a1.056 1.056 0 0 1 1.994 0l1.45 4.142a.75.75 0 0 1-1.416.496L8.9 9.543H7.1l-.132.379a.75.75 0 0 1-1.416-.496l1.45-4.142ZM8 6.975l.374 1.068h-.748L8 6.975Z"
clipRule="evenodd"
/>
</g>
<defs>
<clipPath id="a">
<path fill="currentColor" d="M0 0h16v16H0z" />
</clipPath>
</defs>
</svg>
);
export default Arrows3RotateLeftLetterA;
2 changes: 1 addition & 1 deletion lib/At.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const At = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M8 2.5a5.5 5.5 0 1 0 3.52 9.726.75.75 0 0 1 .96 1.153A7 7 0 1 1 15 8a2.5 2.5 0 0 1-4.083 1.935A3.5 3.5 0 1 1 11.5 8a1 1 0 1 0 2 0A5.5 5.5 0 0 0 8 2.5ZM10 8a2 2 0 1 0-4 0 2 2 0 0 0 4 0Z"
d="M8 2.5a5.5 5.5 0 1 0 3.52 9.726.75.75 0 1 1 .96 1.153A7 7 0 1 1 15 8a2.5 2.5 0 0 1-4.083 1.935A3.5 3.5 0 1 1 11.5 8a1 1 0 1 0 2 0A5.5 5.5 0 0 0 8 2.5ZM10 8a2 2 0 1 0-4 0 2 2 0 0 0 4 0Z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/Bars.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Bars = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M1.25 3.75A.75.75 0 0 1 2 3h12a.75.75 0 0 1 0 1.5H2a.75.75 0 0 1-.75-.75Zm0 4.25A.75.75 0 0 1 2 7.25h12a.75.75 0 0 1 0 1.5H2A.75.75 0 0 1 1.25 8ZM2 11.5A.75.75 0 0 0 2 13h12a.75.75 0 0 0 0-1.5H2Z"
d="M1.25 3.25A.75.75 0 0 1 2 2.5h12A.75.75 0 0 1 14 4H2a.75.75 0 0 1-.75-.75Zm0 4.75A.75.75 0 0 1 2 7.25h12a.75.75 0 0 1 0 1.5H2A.75.75 0 0 1 1.25 8ZM2 12a.75.75 0 0 0 0 1.5h12a.75.75 0 0 0 0-1.5H2Z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/BarsAscendingAlignCenter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const BarsAscendingAlignCenter = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M1 12.25c0 .414.336.75.75.75h12.5a.75.75 0 0 0 0-1.5H1.75a.75.75 0 0 0-.75.75ZM3 8c0 .414.336.75.75.75h8.5a.75.75 0 0 0 0-1.5h-8.5A.75.75 0 0 0 3 8Zm3.75-3.5a.75.75 0 0 1 0-1.5h2.5a.75.75 0 0 1 0 1.5h-2.5Z"
d="M1 12.75c0 .414.336.75.75.75h12.5a.75.75 0 0 0 0-1.5H1.75a.75.75 0 0 0-.75.75ZM3 8c0 .414.336.75.75.75h8.5a.75.75 0 0 0 0-1.5h-8.5A.75.75 0 0 0 3 8Zm3.75-4a.75.75 0 0 1 0-1.5h2.5a.75.75 0 0 1 0 1.5h-2.5Z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/BarsAscendingAlignLeft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const BarsAscendingAlignLeft = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M1 12.25c0 .414.336.75.75.75h12.5a.75.75 0 0 0 0-1.5H1.75a.75.75 0 0 0-.75.75ZM1 8c0 .414.336.75.75.75h8.5a.75.75 0 0 0 0-1.5h-8.5A.75.75 0 0 0 1 8Zm.75-3.5a.75.75 0 0 1 0-1.5h2.5a.75.75 0 0 1 0 1.5h-2.5Z"
d="M1 12.75c0 .414.336.75.75.75h12.5a.75.75 0 0 0 0-1.5H1.75a.75.75 0 0 0-.75.75ZM1 8c0 .414.336.75.75.75h8.5a.75.75 0 0 0 0-1.5h-8.5A.75.75 0 0 0 1 8Zm.75-4a.75.75 0 0 1 0-1.5h2.5a.75.75 0 0 1 0 1.5h-2.5Z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/BarsAscendingAlignRight.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const BarsAscendingAlignRight = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M15 12.25a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1 0-1.5h12.5a.75.75 0 0 1 .75.75ZM15 8a.75.75 0 0 1-.75.75h-8.5a.75.75 0 0 1 0-1.5h8.5A.75.75 0 0 1 15 8Zm-.75-3.5a.75.75 0 0 0 0-1.5h-2.5a.75.75 0 0 0 0 1.5h2.5Z"
d="M15 12.75a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1 0-1.5h12.5a.75.75 0 0 1 .75.75ZM15 8a.75.75 0 0 1-.75.75h-8.5a.75.75 0 0 1 0-1.5h8.5A.75.75 0 0 1 15 8Zm-.75-4a.75.75 0 0 0 0-1.5h-2.5a.75.75 0 0 0 0 1.5h2.5Z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/BarsDescendingAlignCenter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const BarsDescendingAlignCenter = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M1 3.75A.75.75 0 0 1 1.75 3h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 3.75ZM3 8a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 3 8Zm3.75 3.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z"
d="M1 3.25a.75.75 0 0 1 .75-.75h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 3.25ZM3 8a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 3 8Zm3.75 4a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/BarsDescendingAlignLeft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const BarsDescendingAlignLeft = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M1 3.75A.75.75 0 0 1 1.75 3h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 3.75ZM1 8a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 1 8Zm.75 3.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z"
d="M1 3.25a.75.75 0 0 1 .75-.75h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 3.25ZM1 8a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 1 8Zm.75 4a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/BarsDescendingAlignRight.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const BarsDescendingAlignRight = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M15 3.75a.75.75 0 0 0-.75-.75H1.75a.75.75 0 0 0 0 1.5h12.5a.75.75 0 0 0 .75-.75ZM15 8a.75.75 0 0 0-.75-.75h-8.5a.75.75 0 0 0 0 1.5h8.5A.75.75 0 0 0 15 8Zm-.75 3.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1 0-1.5h2.5Z"
d="M15 3.25a.75.75 0 0 0-.75-.75H1.75a.75.75 0 0 0 0 1.5h12.5a.75.75 0 0 0 .75-.75ZM15 8a.75.75 0 0 0-.75-.75h-8.5a.75.75 0 0 0 0 1.5h8.5A.75.75 0 0 0 15 8Zm-.75 4a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1 0-1.5h2.5Z"
clipRule="evenodd"
/>
</svg>
Expand Down
20 changes: 20 additions & 0 deletions lib/Book.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import {SVGProps} from 'react';
const Book = (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="M3.5 11.937V13a.5.5 0 0 0 .5.5h7a1.5 1.5 0 0 0 1.5-1.5v-.401A2.987 2.987 0 0 1 11 12H4c-.173 0-.34-.022-.5-.063ZM2 10V3a1.987 1.987 0 0 1 .686-1.508A1.994 1.994 0 0 1 4 1h7a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H4a2 2 0 0 1-2-2v-3Zm1.5 0a.5.5 0 0 0 .5.5h7A1.5 1.5 0 0 0 12.5 9V4A1.5 1.5 0 0 0 11 2.5H4a.498.498 0 0 0-.5.5v7Zm2-4.75a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Z"
clipRule="evenodd"
/>
</svg>
);
export default Book;
20 changes: 20 additions & 0 deletions lib/BranchesDown.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import {SVGProps} from 'react';
const BranchesDown = (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="M13.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-.75-1.372a2.251 2.251 0 1 0 1.5 0v-.378a3 3 0 0 0-3-3H8.75V5.372a2.25 2.25 0 1 0-1.5 0V7.25H5a3 3 0 0 0-3 3v.378a2.251 2.251 0 1 0 1.5 0v-.378A1.5 1.5 0 0 1 5 8.75h2.25v1.878a2.251 2.251 0 1 0 1.5 0V8.75H11a1.5 1.5 0 0 1 1.5 1.5v.378ZM2.75 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm4.5.75a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0ZM8 2.5A.75.75 0 1 0 8 4a.75.75 0 0 0 0-1.5Z"
clipRule="evenodd"
/>
</svg>
);
export default BranchesDown;
20 changes: 20 additions & 0 deletions lib/BranchesRight.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import {SVGProps} from 'react';
const BranchesRight = (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 2.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm-1.372.75a2.251 2.251 0 1 0 0-1.5h-.378a3 3 0 0 0-3 3v2.25H5.372a2.25 2.25 0 1 0 0 1.5H7.25V11a3 3 0 0 0 3 3h.378a2.251 2.251 0 1 0 0-1.5h-.378a1.5 1.5 0 0 1-1.5-1.5V8.75h1.878a2.251 2.251 0 1 0 0-1.5H8.75V5a1.5 1.5 0 0 1 1.5-1.5h.378ZM12 13.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm.75-4.5a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5ZM2.5 8A.75.75 0 1 0 4 8a.75.75 0 0 0-1.5 0Z"
clipRule="evenodd"
/>
</svg>
);
export default BranchesRight;
4 changes: 2 additions & 2 deletions lib/Case.tsx → lib/Briefcase.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react';
import {SVGProps} from 'react';
const Case = (props: SVGProps<SVGSVGElement>) => (
const Briefcase = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={16}
Expand All @@ -17,4 +17,4 @@ const Case = (props: SVGProps<SVGSVGElement>) => (
/>
</svg>
);
export default Case;
export default Briefcase;
20 changes: 20 additions & 0 deletions lib/BucketPaint.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import {SVGProps} from 'react';
const BucketPaint = (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.773 7.412c-.064.064-.27.249-1.017-.027-.75-.277-1.706-.928-2.695-1.918-.99-.99-1.64-1.945-1.918-2.695-.276-.746-.091-.953-.027-1.017.064-.064.27-.249 1.017.027.094.035.19.075.29.122.7.323 1.54.93 2.405 1.796.99.99 1.641 1.945 1.918 2.695.276.747.091.953.027 1.017ZM7 6.528c.85.85 1.738 1.535 2.581 1.972H1.694v-.027a1.292 1.292 0 0 1 .1-.507l2.802-4.33c.056-.087.114-.174.172-.26C5.16 4.383 5.956 5.485 7 6.529Zm3.89-3.889c2.147 2.148 3.24 4.537 1.944 5.834a12.973 12.973 0 0 1-2.127 1.719L6.352 13.01s-1.945 1.296-4.537-1.296C-.778 9.12.518 7.176.518 7.176l2.818-4.355A12.98 12.98 0 0 1 5.056.695C6.351-.602 8.74.49 10.888 2.639ZM12.75 15c.966 0 1.75-.766 1.75-1.71 0-1.234-1.17-2.76-1.512-3.18a.304.304 0 0 0-.237-.11.31.31 0 0 0-.24.112c-.34.422-1.511 1.96-1.511 3.178 0 .944.784 1.71 1.75 1.71Z"
clipRule="evenodd"
/>
</svg>
);
export default BucketPaint;
2 changes: 1 addition & 1 deletion lib/Bug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Bug = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M5.865.031a.75.75 0 0 1 .918.53l.531 1.981a5.554 5.554 0 0 1 2.384.225 2.5 2.5 0 1 1 3.535 3.535 5.496 5.496 0 0 1 .225 2.384l1.98.53a.75.75 0 1 1-.388 1.45l-1.98-.53a5.49 5.49 0 0 1-.687 1.187l1.45 1.45a.75.75 0 0 1-1.06 1.06l-1.45-1.45a5.495 5.495 0 0 1-1.188.687l.53 1.98a.75.75 0 1 1-1.448.388l-.531-1.98a5.5 5.5 0 0 1-6.144-6.143l-1.98-.532A.75.75 0 0 1 .95 5.334l1.98.531c.18-.426.41-.824.687-1.188l-1.45-1.45a.75.75 0 0 1 1.06-1.06l1.45 1.45a5.494 5.494 0 0 1 1.188-.687L5.335.95a.75.75 0 0 1 .53-.919ZM8 12a4 4 0 1 0-3.309-1.752L8.42 6.52a.75.75 0 0 1 1.06 1.06l-3.728 3.73c.64.435 1.414.69 2.248.69Z"
d="M5.865.031a.75.75 0 0 1 .918.53l.531 1.981a5.554 5.554 0 0 1 2.384.225 2.5 2.5 0 1 1 3.535 3.535 5.496 5.496 0 0 1 .225 2.384l1.98.53a.75.75 0 0 1-.388 1.45l-1.98-.53a5.49 5.49 0 0 1-.687 1.187l1.45 1.45a.75.75 0 0 1-1.06 1.06l-1.45-1.45a5.493 5.493 0 0 1-1.188.687l.53 1.98a.75.75 0 1 1-1.448.388l-.531-1.98a5.5 5.5 0 0 1-6.144-6.143l-1.98-.532A.75.75 0 0 1 .95 5.334l1.98.531c.18-.426.411-.824.687-1.188l-1.45-1.45a.75.75 0 1 1 1.06-1.06l1.45 1.45a5.494 5.494 0 0 1 1.188-.687L5.335.95a.75.75 0 0 1 .53-.919ZM8 12a4 4 0 1 0-3.309-1.752L8.42 6.52a.75.75 0 0 1 1.06 1.06l-3.728 3.73c.64.435 1.414.69 2.248.69Z"
clipRule="evenodd"
/>
</g>
Expand Down
2 changes: 1 addition & 1 deletion lib/Bulb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Bulb = (props: SVGProps<SVGSVGElement>) => (
d="M6.26 15.109a4 4 0 0 0 3.48 0l.13-.063a2 2 0 0 0 1.13-1.8v-.468c0-1.352.776-2.557 1.54-3.673a5.5 5.5 0 1 0-9.08 0C4.224 10.221 5 11.425 5 12.778v.467a2 2 0 0 0 1.13 1.801l.13.063Zm2.828-1.35.13-.064a.5.5 0 0 0 .282-.45v-.467c0-.17.009-.337.025-.5a5.328 5.328 0 0 1-3.05 0c.016.163.025.33.025.5v.467a.5.5 0 0 0 .282.45l.13.063a2.5 2.5 0 0 0 2.176 0Zm-4.39-5.501c.394.576.891 1.302 1.263 2.148a3.793 3.793 0 0 0 4.078 0c.372-.846.869-1.572 1.264-2.148a4 4 0 1 0-6.605 0Z"
clipRule="evenodd"
/>
<path d="M8 3.5A.75.75 0 1 0 8 5a1 1 0 0 1 1 1 .75.75 0 0 0 1.5 0A2.5 2.5 0 0 0 8 3.5Z" />
<path d="M8 3.5A.75.75 0 0 0 8 5a1 1 0 0 1 1 1 .75.75 0 0 0 1.5 0A2.5 2.5 0 0 0 8 3.5Z" />
</g>
</svg>
);
Expand Down
2 changes: 1 addition & 1 deletion lib/ChartAreaStacked.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ChartAreaStacked = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M14 12a.5.5 0 0 1-.5.5h-11A.5.5 0 0 1 2 12v-.25l3.044-2.283a1.242 1.242 0 0 1 1.301-.117l1.584.791a3.397 3.397 0 0 0 3.342-.172L14 8.233V12Zm0-5.545-3.534 2.248A1.896 1.896 0 0 1 8.6 8.8l-1.584-.792a2.743 2.743 0 0 0-2.872.259L2 9.875v-.748a1.5 1.5 0 0 1 .371-.988l2.256-2.577a1.31 1.31 0 0 1 1.303-.408l3.104.776a2.358 2.358 0 0 0 2.362-.753l1.842-2.15a.433.433 0 0 1 .762.282v3.146Zm1.5-.955V12a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V9.127a3 3 0 0 1 .742-1.975l2.256-2.578a2.81 2.81 0 0 1 2.796-.876l3.104.776a.857.857 0 0 0 .859-.273l1.842-2.15A1.933 1.933 0 0 1 15.5 3.309V5.5Z"
d="M10.257 4.2a.858.858 0 0 1-.86.274l-3.103-.776a2.81 2.81 0 0 0-2.796.876L1.242 7.152A3 3 0 0 0 .5 9.127V12a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2V3.309a1.933 1.933 0 0 0-3.4-1.258l-1.31 1.528-.533.622ZM14 6.48V3.31a.433.433 0 0 0-.762-.282l-1.842 2.15a2.358 2.358 0 0 1-2.362.753L5.93 5.154a1.31 1.31 0 0 0-1.303.408L2.37 8.139a1.5 1.5 0 0 0-.37.988v.685l2.304-1.44a2.59 2.59 0 0 1 2.458-.155l1.923.888a1.578 1.578 0 0 0 1.777-.317l.22-.22 1.575-1.574A1.862 1.862 0 0 1 14 6.479ZM2 12c0 .277.226.501.5.501h11a.5.5 0 0 0 .5-.5V8.337a.4.4 0 0 0-.683-.283L11.523 9.85a3.078 3.078 0 0 1-3.466.618L6.134 9.58a1.09 1.09 0 0 0-1.035.066L2.352 11.36a.752.752 0 0 0-.352.637Z"
clipRule="evenodd"
/>
</svg>
Expand Down
20 changes: 20 additions & 0 deletions lib/ChartAreaStackedNormalized.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import {SVGProps} from 'react';
const ChartAreaStackedNormalized = (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="M13.5 12.5h-11A.5.5 0 0 1 2 12v-1.611l2.812-1.985a1.25 1.25 0 0 1 1.414-.019l1.753 1.169a2.75 2.75 0 0 0 3.757-.681L14 5.728V12a.5.5 0 0 1-.5.5Zm.22-8.95-3.201 4.446a1.25 1.25 0 0 1-1.708.31L7.058 7.137a2.75 2.75 0 0 0-3.111.042L2 8.553V4a.5.5 0 0 1 .5-.5h11c.079 0 .153.018.22.05ZM.5 9.992V4a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2V9.991Z"
clipRule="evenodd"
/>
</svg>
);
export default ChartAreaStackedNormalized;
Loading