-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathicons.tsx
More file actions
40 lines (39 loc) · 720 Bytes
/
icons.tsx
File metadata and controls
40 lines (39 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
export function IncompleteIcon() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="40"
height="40"
viewBox="-3 -3 105 105"
>
<circle
cx="50"
cy="50"
r="50"
fill="none"
stroke="#ededed"
stroke-width="3"
/>
</svg>
);
}
export function CompleteIcon() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="40"
height="40"
viewBox="-3 -3 105 105"
>
<circle
cx="50"
cy="50"
r="50"
fill="none"
stroke="#bddad5"
stroke-width="3"
/>
<path fill="#5dc2af" d="M72 25L42 71 27 56l-4 4 20 20 34-52z" />
</svg>
);
}