Skip to content
This repository was archived by the owner on Nov 28, 2021. It is now read-only.

Commit 6c7a989

Browse files
authored
Merge pull request #3 from jackyef/update-icons
feat: add new icons
2 parents ea48d39 + ab22699 commit 6c7a989

File tree

565 files changed

+10871
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

565 files changed

+10871
-10
lines changed

components/Activity.tsx

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const Activity = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg
12+
width={size}
13+
height={size} viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M4.75 11.75h3.5l2-7 3.5 14.5 2-7.5h3.5"
20+
stroke="currentColor"
21+
strokeWidth={1.5}
22+
strokeLinecap="round"
23+
strokeLinejoin="round"
24+
/>
25+
</svg>
26+
);
27+
}
28+
29+

components/Aerial.tsx

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const Aerial = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg
12+
width={size}
13+
height={size} viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M12.5 10a.5.5 0 11-1 0 .5.5 0 011 0z"
20+
stroke="currentColor"
21+
strokeLinecap="round"
22+
strokeLinejoin="round"
23+
/>
24+
<path
25+
d="M9.25 13.25c-2.04-1.688-1.914-4.75 0-6.5M14.767 13.25c2.04-1.688 1.914-4.75 0-6.5M12.25 12.75h-.5l-2 6.5h4.5l-2-6.5zM7.25 15.25c-3.336-3.336-3.32-7.172 0-10.5M16.754 15.25c3.336-3.336 3.32-7.172 0-10.5"
26+
stroke="currentColor"
27+
strokeWidth={1.5}
28+
strokeLinecap="round"
29+
strokeLinejoin="round"
30+
/>
31+
</svg>
32+
);
33+
}
34+
35+

components/AirplaytoTv.tsx

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const AirplaytoTv = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg width={size} height={size} viewBox="0 0 24 24" fill="none" {...props}>
12+
<path
13+
stroke="currentColor"
14+
strokeLinecap="round"
15+
strokeLinejoin="round"
16+
strokeWidth={1.5}
17+
d="M16.75 17.25h.5a2 2 0 002-2v-8.5a2 2 0 00-2-2H6.75a2 2 0 00-2 2v8.5a2 2 0 002 2h.5"
18+
/>
19+
<path
20+
stroke="currentColor"
21+
strokeLinecap="round"
22+
strokeLinejoin="round"
23+
strokeWidth={1.5}
24+
d="M12 15.75l-3 3.5h6l-3-3.5z"
25+
/>
26+
</svg>
27+
);
28+
}
29+
30+

components/Alarm.tsx

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const Alarm = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg
12+
width={size}
13+
height={size} viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M7 18l-1.25 1.25M17 18l1.25 1.25M12 8.75V12l2.25 2.25"
20+
stroke="currentColor"
21+
strokeWidth={1.5}
22+
strokeLinecap="round"
23+
strokeLinejoin="round"
24+
/>
25+
<path
26+
d="M19.25 12a7.25 7.25 0 11-14.5 0 7.25 7.25 0 0114.5 0zM18.75 4.75l.5.5M5.25 4.75l-.5.5"
27+
stroke="currentColor"
28+
strokeWidth={1.5}
29+
strokeLinecap="round"
30+
strokeLinejoin="round"
31+
/>
32+
</svg>
33+
);
34+
}
35+
36+

components/AlignArrowDown.tsx

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const AlignArrowDown = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg
12+
width={size}
13+
height={size} viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M4.75 4.75h14.5M12 19.25V8.75M15.25 15.75L12 19.25l-3.25-3.5"
20+
stroke="currentColor"
21+
strokeWidth={1.5}
22+
strokeLinecap="round"
23+
strokeLinejoin="round"
24+
/>
25+
</svg>
26+
);
27+
}
28+
29+

components/AlignArrowLeft.tsx

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const AlignArrowLeft = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg
12+
width={size}
13+
height={size} viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M19.25 4.75v14.5M4.75 12h10.5M8.25 8.75L4.75 12l3.5 3.25"
20+
stroke="currentColor"
21+
strokeWidth={1.5}
22+
strokeLinecap="round"
23+
strokeLinejoin="round"
24+
/>
25+
</svg>
26+
);
27+
}
28+
29+

components/AlignArrowRight.tsx

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const AlignArrowRight = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg
12+
width={size}
13+
height={size} viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M4.75 4.75v14.5M8.75 12h10.5M15.75 8.75l3.5 3.25-3.5 3.25"
20+
stroke="currentColor"
21+
strokeWidth={1.5}
22+
strokeLinecap="round"
23+
strokeLinejoin="round"
24+
/>
25+
</svg>
26+
);
27+
}
28+
29+

components/AlignArrowUp.tsx

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const AlignArrowUp = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg
12+
width={size}
13+
height={size} viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M4.75 19.25h14.5M12 15.25V4.75M15.25 8.25L12 4.75l-3.25 3.5"
20+
stroke="currentColor"
21+
strokeWidth={1.5}
22+
strokeLinecap="round"
23+
strokeLinejoin="round"
24+
/>
25+
</svg>
26+
);
27+
}
28+
29+

components/AlignBottom.tsx

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const AlignBottom = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg
12+
width={size}
13+
height={size} viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M13.25 15.25h-2.5a2 2 0 01-2-2v-6.5a2 2 0 012-2h2.5a2 2 0 012 2v6.5a2 2 0 01-2 2zM4.75 19.25h14.5"
20+
stroke="currentColor"
21+
strokeWidth={1.5}
22+
strokeLinecap="round"
23+
strokeLinejoin="round"
24+
/>
25+
</svg>
26+
);
27+
}
28+
29+

components/AlignHorizontalCenter.tsx

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const AlignHorizontalCenter = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg
12+
width={size}
13+
height={size} viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M13.25 17.25h-2.5a2 2 0 01-2-2v-6.5a2 2 0 012-2h2.5a2 2 0 012 2v6.5a2 2 0 01-2 2zM19.25 4.75v14.5M4.75 4.75v14.5"
20+
stroke="currentColor"
21+
strokeWidth={1.5}
22+
strokeLinecap="round"
23+
strokeLinejoin="round"
24+
/>
25+
</svg>
26+
);
27+
}
28+
29+

components/AlignLeft.tsx

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const AlignLeft = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg
12+
width={size}
13+
height={size} viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M8.75 13.25v-2.5a2 2 0 012-2h6.5a2 2 0 012 2v2.5a2 2 0 01-2 2h-6.5a2 2 0 01-2-2zM4.75 4.75v14.5"
20+
stroke="currentColor"
21+
strokeWidth={1.5}
22+
strokeLinecap="round"
23+
strokeLinejoin="round"
24+
/>
25+
</svg>
26+
);
27+
}
28+
29+

components/AlignRight.tsx

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/* This file is auto-generated */
2+
3+
import * as React from "react";
4+
5+
interface Props extends React.SVGAttributes<SVGElement> {
6+
size?: number;
7+
}
8+
9+
export const AlignRight = ({ size = 24, ...props }: Props) => {
10+
return (
11+
<svg
12+
width={size}
13+
height={size} viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M4.75 13.25v-2.5a2 2 0 012-2h6.5a2 2 0 012 2v2.5a2 2 0 01-2 2h-6.5a2 2 0 01-2-2zM19.25 4.75v14.5"
20+
stroke="currentColor"
21+
strokeWidth={1.5}
22+
strokeLinecap="round"
23+
strokeLinejoin="round"
24+
/>
25+
</svg>
26+
);
27+
}
28+
29+

0 commit comments

Comments
 (0)