Skip to content

Commit 5db974e

Browse files
committed
add icon components
1 parent 2eb7c3c commit 5db974e

File tree

4 files changed

+93
-0
lines changed

4 files changed

+93
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
export const CheckIcon = () => {
2+
return (
3+
<svg
4+
width="16"
5+
height="16"
6+
viewBox="0 0 16 16"
7+
fill="none"
8+
xmlns="http://www.w3.org/2000/svg"
9+
>
10+
<path
11+
d="M13 4L6 12L3 9"
12+
stroke="currentColor"
13+
strokeWidth="1.5"
14+
strokeLinecap="round"
15+
strokeLinejoin="round"
16+
></path>
17+
</svg>
18+
);
19+
};
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
export const ClearIcon = () => {
2+
return (
3+
<svg
4+
width="16"
5+
height="16"
6+
viewBox="0 0 16 16"
7+
fill="none"
8+
xmlns="http://www.w3.org/2000/svg"
9+
>
10+
<path
11+
d="M4.1094 3.3359L1 8L4.1094 12.6641C4.6658 13.4987 5.60249 14 6.60555 14H15V2H6.60555C5.60249 2 4.6658 2.5013 4.1094 3.3359Z"
12+
stroke="currentColor"
13+
strokeWidth="1.5"
14+
strokeLinecap="round"
15+
strokeLinejoin="round"
16+
></path>
17+
<path
18+
d="M7 6L11 10M11 6L7 10"
19+
stroke="currentColor"
20+
strokeWidth="1.5"
21+
strokeLinecap="round"
22+
strokeLinejoin="round"
23+
></path>
24+
</svg>
25+
);
26+
};
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
export const CopyIcon = () => {
2+
return (
3+
<svg
4+
width="16"
5+
height="16"
6+
viewBox="0 0 16 16"
7+
fill="none"
8+
xmlns="http://www.w3.org/2000/svg"
9+
>
10+
<path
11+
d="M8 15H12C13.6569 15 15 13.6569 15 12V8C15 6.34315 13.6569 5 12 5H8C6.34315 5 5 6.34315 5 8V12C5 13.6569 6.34315 15 8 15Z"
12+
stroke="currentColor"
13+
strokeWidth="1.5"
14+
strokeLinecap="round"
15+
strokeLinejoin="round"
16+
></path>
17+
<path
18+
d="M8 0.25C9.33915 0.25 10.5138 0.952094 11.177 2.00819C11.4679 2.47151 11.0737 3 10.5266 3C10.2123 3 9.93488 2.81318 9.7352 2.57055C9.32304 2.06973 8.6994 1.75 8 1.75H4C2.75736 1.75 1.75 2.75736 1.75 4V8C1.75 8.69927 2.06986 9.32232 2.57062 9.73428C2.81326 9.93389 3 10.2113 3 10.5255C3 11.0726 2.47146 11.4669 2.00808 11.176C0.952101 10.513 0.25 9.33902 0.25 8V4C0.25 1.92893 1.92893 0.25 4 0.25H8Z"
19+
fill="currentColor"
20+
></path>
21+
</svg>
22+
);
23+
};
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
export const HeaderIcon = () => {
2+
return (
3+
<svg
4+
width="16"
5+
height="16"
6+
viewBox="0 0 16 16"
7+
fill="none"
8+
xmlns="http://www.w3.org/2000/svg"
9+
>
10+
<path
11+
d="M3 4L7 8L3 12"
12+
stroke="currentColor"
13+
strokeWidth="1.5"
14+
strokeLinecap="round"
15+
strokeLinejoin="round"
16+
></path>
17+
<path
18+
d="M9 12H13"
19+
stroke="currentColor"
20+
strokeWidth="1.5"
21+
strokeLinecap="round"
22+
></path>
23+
</svg>
24+
);
25+
};

0 commit comments

Comments
 (0)