Skip to content

Commit 5cca7ed

Browse files
feat: Add az icon (#714)
1 parent 77de256 commit 5cca7ed

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import createIcon from './createIcon'
2+
3+
export default createIcon(({ size, color }) => (
4+
<svg
5+
width={size}
6+
height={size}
7+
viewBox="0 0 14 14"
8+
fill="none"
9+
xmlns="http://www.w3.org/2000/svg"
10+
>
11+
<path
12+
d="M11.5 4C11.9213 5.97781 11.9213 8.02219 11.5 10"
13+
stroke={color}
14+
strokeLinecap="round"
15+
strokeLinejoin="round"
16+
/>
17+
<path
18+
d="M2.50005 4C2.07876 5.97781 2.07876 8.02219 2.50005 10"
19+
stroke={color}
20+
strokeLinecap="round"
21+
strokeLinejoin="round"
22+
/>
23+
<path
24+
d="M4 11.5C5.97781 11.9213 8.02219 11.9213 10 11.5"
25+
stroke={color}
26+
strokeLinecap="round"
27+
strokeLinejoin="round"
28+
/>
29+
<path
30+
d="M4 2.50005C5.97781 2.07876 8.02219 2.07876 10 2.50005"
31+
stroke={color}
32+
strokeLinecap="round"
33+
strokeLinejoin="round"
34+
/>
35+
<path
36+
d="M12.4 10H10.6C10.2686 10 10 10.2686 10 10.6V12.4C10 12.7314 10.2686 13 10.6 13H12.4C12.7314 13 13 12.7314 13 12.4V10.6C13 10.2686 12.7314 10 12.4 10Z"
37+
stroke={color}
38+
strokeLinecap="round"
39+
strokeLinejoin="round"
40+
/>
41+
<path
42+
d="M12.4 1H10.6C10.2686 1 10 1.26863 10 1.6V3.4C10 3.73137 10.2686 4 10.6 4H12.4C12.7314 4 13 3.73137 13 3.4V1.6C13 1.26863 12.7314 1 12.4 1Z"
43+
stroke={color}
44+
strokeLinecap="round"
45+
strokeLinejoin="round"
46+
/>
47+
<path
48+
d="M3.4 10H1.6C1.26863 10 1 10.2686 1 10.6V12.4C1 12.7314 1.26863 13 1.6 13H3.4C3.73137 13 4 12.7314 4 12.4V10.6C4 10.2686 3.73137 10 3.4 10Z"
49+
stroke={color}
50+
strokeLinecap="round"
51+
strokeLinejoin="round"
52+
/>
53+
<path
54+
d="M3.4 1H1.6C1.26863 1 1 1.26863 1 1.6V3.4C1 3.73137 1.26863 4 1.6 4H3.4C3.73137 4 4 3.73137 4 3.4V1.6C4 1.26863 3.73137 1 3.4 1Z"
55+
stroke={color}
56+
strokeLinecap="round"
57+
strokeLinejoin="round"
58+
/>
59+
</svg>
60+
))

0 commit comments

Comments
 (0)