1use dioxus::prelude::*;
4pub use dioxus_icon_component::{Icon, IconProps, IconShape};
5
6
7#[derive(Default, Copy, Clone, PartialEq, Eq)]
8pub struct Accessibility;
9
10impl IconShape for Accessibility {
11 fn child_elements(&self) -> Element {
12 rsx!(path {
13 d: "M7.49927 0.877014C11.1567 0.877014 14.1219 3.84175 14.1223 7.49908C14.1223 11.1567 11.1569 14.1221 7.49927 14.1221C3.84193 14.1217 0.877197 11.1565 0.877197 7.49908C0.877608 3.842 3.84219 0.877426 7.49927 0.877014ZM7.49927 1.82623C4.36686 1.82664 1.82683 4.36667 1.82642 7.49908C1.82642 10.6318 4.3666 13.1715 7.49927 13.1719C10.6323 13.1719 13.1721 10.6321 13.1721 7.49908C13.1717 4.36642 10.632 1.82623 7.49927 1.82623ZM10.4534 5.31061C10.7201 5.23914 10.9942 5.39739 11.0657 5.66412C11.1371 5.93082 10.9789 6.20497 10.7122 6.27643L8.74634 6.8028C8.74634 6.8028 8.74634 7.66701 8.74634 8.26959C8.74634 8.8722 9.62622 11.6973 9.62622 11.6973C9.69765 11.964 9.53942 12.2382 9.27271 12.3096C9.00611 12.3808 8.73187 12.2227 8.6604 11.9561C8.6604 11.9561 7.91969 9.1274 7.86841 9.00006C7.81967 8.87277 7.64966 8.87311 7.64966 8.87311H7.34302C7.33713 8.87315 7.16884 8.87496 7.12427 9.00006C7.06931 9.12902 6.33622 11.9402 6.3313 11.959C6.25983 12.2258 5.98573 12.384 5.71899 12.3126C5.45246 12.241 5.29404 11.9669 5.36548 11.7003C5.37084 11.683 6.24634 8.87035 6.24634 8.26959V6.80084L4.28735 6.27643C4.02087 6.20492 3.86268 5.93066 3.93384 5.66412C4.00529 5.39745 4.27947 5.23925 4.54614 5.31061C4.54614 5.31061 6.20058 5.87311 6.84595 5.87311H8.15552C8.79825 5.87284 10.4383 5.31573 10.4534 5.31061ZM7.50024 2.87018C8.12156 2.87018 8.62524 3.37386 8.62524 3.99518C8.62519 4.61645 8.12153 5.12018 7.50024 5.12018C6.87904 5.12008 6.3753 4.61639 6.37524 3.99518C6.37524 3.37392 6.87901 2.87028 7.50024 2.87018Z",
14 fill: "currentColor",
15 })
16 }
17
18 const WIDTH: Option<&'static str> = Some("15");
19 const HEIGHT: Option<&'static str> = Some("15");
20 const FILL: Option<&'static str> = Some("none");
21 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
22
23}
24
25#[derive(Default, Copy, Clone, PartialEq, Eq)]
26pub struct ActivityLog;
27
28impl IconShape for ActivityLog {
29 fn child_elements(&self) -> Element {
30 rsx!(path {
31 d: "M2.5 13C2.77614 13 3 13.2239 3 13.5C3 13.7761 2.77614 14 2.5 14H0.5C0.223858 14 0 13.7761 0 13.5C0 13.2239 0.223858 13 0.5 13H2.5ZM14.5 13C14.7761 13 15 13.2239 15 13.5C15 13.7761 14.7761 14 14.5 14H4.5C4.22386 14 4 13.7761 4 13.5C4 13.2239 4.22386 13 4.5 13H14.5ZM11.5 10C11.7761 10 12 10.2239 12 10.5C12 10.7761 11.7761 11 11.5 11H4.5C4.22386 11 4 10.7761 4 10.5C4 10.2239 4.22386 10 4.5 10H11.5ZM2.5 7C2.77614 7 3 7.22386 3 7.5C3 7.77614 2.77614 8 2.5 8H0.5C0.223858 8 0 7.77614 0 7.5C0 7.22386 0.223858 7 0.5 7H2.5ZM14.5 7C14.7761 7 15 7.22386 15 7.5C15 7.77614 14.7761 8 14.5 8H4.5C4.22386 8 4 7.77614 4 7.5C4 7.22386 4.22386 7 4.5 7H14.5ZM11.5 4C11.7761 4 12 4.22386 12 4.5C12 4.77614 11.7761 5 11.5 5H4.5C4.22386 5 4 4.77614 4 4.5C4 4.22386 4.22386 4 4.5 4H11.5ZM2.5 1C2.77614 1 3 1.22386 3 1.5C3 1.77614 2.77614 2 2.5 2H0.5C0.223858 2 0 1.77614 0 1.5C0 1.22386 0.223858 1 0.5 1H2.5ZM14.5 1C14.7761 1 15 1.22386 15 1.5C15 1.77614 14.7761 2 14.5 2H4.5C4.22386 2 4 1.77614 4 1.5C4 1.22386 4.22386 1 4.5 1H14.5Z",
32 fill: "currentColor",
33 })
34 }
35
36 const WIDTH: Option<&'static str> = Some("15");
37 const HEIGHT: Option<&'static str> = Some("15");
38 const FILL: Option<&'static str> = Some("none");
39 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
40
41}
42
43#[derive(Default, Copy, Clone, PartialEq, Eq)]
44pub struct AlignBaseline;
45
46impl IconShape for AlignBaseline {
47 fn child_elements(&self) -> Element {
48 rsx!(path {
49 d: "M14.5809 13.1084C14.763 13.1459 14.9003 13.3069 14.9003 13.5C14.9003 13.6932 14.763 13.8541 14.5809 13.8916L14.4999 13.9004H0.499878C0.279006 13.9004 0.0994873 13.7209 0.0994873 13.5C0.0995038 13.2792 0.279016 13.0997 0.499878 13.0996H14.4999L14.5809 13.1084ZM7.97058 10.7393C7.8769 10.999 7.5897 11.1337 7.32996 11.0401C7.0706 10.9463 6.93592 10.6599 7.02917 10.4004L7.97058 10.7393ZM10.4999 1.75003C10.7105 1.75005 10.899 1.88199 10.9706 2.08011L13.9706 10.4004C14.0639 10.66 13.9292 10.9463 13.6698 11.0401C13.4101 11.1337 13.1228 10.999 13.0292 10.7393L12.0468 8.01566H8.953L7.97058 10.7393L7.49988 10.5694L7.02917 10.4004L10.0292 2.08011L10.0614 2.00882C10.1482 1.85093 10.3156 1.75008 10.4999 1.75003ZM2.49988 2.09964C2.72061 2.09985 2.90027 2.27925 2.90027 2.50003V9.53323L4.21667 8.21683C4.3729 8.06078 4.62693 8.06067 4.78308 8.21683C4.93901 8.373 4.93905 8.62709 4.78308 8.78323L2.78308 10.7832C2.70816 10.8582 2.60582 10.9003 2.49988 10.9004C2.3939 10.9004 2.29167 10.8581 2.21667 10.7832L0.216675 8.78323L0.165894 8.71976C0.0635299 8.56452 0.0800509 8.35345 0.216675 8.21683C0.353304 8.08036 0.564425 8.06372 0.719604 8.16605L0.783081 8.21683L2.09949 9.53323V2.50003C2.09949 2.27912 2.27896 2.09964 2.49988 2.09964ZM9.25867 7.16605H11.7411L10.4999 3.72464L9.25867 7.16605Z",
50 fill: "currentColor",
51 })
52 }
53
54 const WIDTH: Option<&'static str> = Some("15");
55 const HEIGHT: Option<&'static str> = Some("15");
56 const FILL: Option<&'static str> = Some("none");
57 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
58
59}
60
61#[derive(Default, Copy, Clone, PartialEq, Eq)]
62pub struct AlignBottom;
63
64impl IconShape for AlignBottom {
65 fn child_elements(&self) -> Element {
66 rsx!(path {
67 d: "M8 2C8.55228 2 9 2.44772 9 3V14H13.5C13.7761 14 14 14.2239 14 14.5C14 14.7761 13.7761 15 13.5 15H1.5C1.22386 15 1 14.7761 1 14.5C1 14.2239 1.22386 14 1.5 14H6V3C6 2.44772 6.44772 2 7 2H8Z",
68 fill: "currentColor",
69 })
70 }
71
72 const WIDTH: Option<&'static str> = Some("15");
73 const HEIGHT: Option<&'static str> = Some("15");
74 const FILL: Option<&'static str> = Some("none");
75 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
76
77}
78
79#[derive(Default, Copy, Clone, PartialEq, Eq)]
80pub struct AlignCenterHorizontally;
81
82impl IconShape for AlignCenterHorizontally {
83 fn child_elements(&self) -> Element {
84 rsx!(path {
85 d: "M13.9999 8.00001C13.9999 8.55229 13.5522 9.00001 12.9999 9.00001L7.99988 9.00001L7.99988 13.5C7.99988 13.7761 7.77602 14 7.49988 14C7.22374 14 6.99988 13.7761 6.99988 13.5L6.99988 9.00001L1.99988 9.00001C1.44759 9.00001 0.999878 8.55229 0.999878 8.00001L0.999878 7.00001C0.999878 6.44772 1.44759 6.00001 1.99988 6.00001L6.99988 6.00001L6.99988 1.50001C6.99988 1.22387 7.22374 1.00001 7.49988 1.00001C7.77602 1.00001 7.99988 1.22387 7.99988 1.50001L7.99988 6.00001L12.9999 6.00001C13.5522 6.00001 13.9999 6.44772 13.9999 7.00001L13.9999 8.00001Z",
86 fill: "currentColor",
87 })
88 }
89
90 const WIDTH: Option<&'static str> = Some("15");
91 const HEIGHT: Option<&'static str> = Some("15");
92 const FILL: Option<&'static str> = Some("none");
93 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
94
95}
96
97#[derive(Default, Copy, Clone, PartialEq, Eq)]
98pub struct AlignCenterVertically;
99
100impl IconShape for AlignCenterVertically {
101 fn child_elements(&self) -> Element {
102 rsx!(path {
103 d: "M7.99988 1.00001C8.55216 1.00001 8.99988 1.44772 8.99988 2.00001V7.00001H13.4999C13.776 7.00001 13.9999 7.22387 13.9999 7.50001C13.9999 7.77615 13.776 8.00001 13.4999 8.00001H8.99988V13C8.99988 13.5523 8.55216 14 7.99988 14H6.99988C6.44759 14 5.99988 13.5523 5.99988 13V8.00001H1.49988C1.22374 8.00001 0.999878 7.77615 0.999878 7.50001C0.999878 7.22387 1.22374 7.00001 1.49988 7.00001H5.99988V2.00001C5.99988 1.44772 6.44759 1.00001 6.99988 1.00001H7.99988Z",
104 fill: "currentColor",
105 })
106 }
107
108 const WIDTH: Option<&'static str> = Some("15");
109 const HEIGHT: Option<&'static str> = Some("15");
110 const FILL: Option<&'static str> = Some("none");
111 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
112
113}
114
115#[derive(Default, Copy, Clone, PartialEq, Eq)]
116pub struct AlignLeft;
117
118impl IconShape for AlignLeft {
119 fn child_elements(&self) -> Element {
120 rsx!(path {
121 d: "M-5.46388e-07 1.49999C1.19309e-06 1.22385 0.223856 0.999992 0.499995 0.999992C0.776135 0.999992 0.99999 1.22385 0.999991 1.49999L0.999992 5.99995L11.9999 5.99995C12.5522 5.99995 12.9999 6.44766 12.9999 6.99994L12.9999 7.99993C12.9999 8.55221 12.5522 8.99993 11.9999 8.99993L0.999992 8.99993L0.999992 13.4999C0.999992 13.776 0.776136 13.9999 0.499996 13.9999C0.223856 13.9999 -2.18555e-08 13.776 -2.18555e-08 13.4999L-5.46388e-07 1.49999Z",
122 fill: "currentColor",
123 })
124 }
125
126 const WIDTH: Option<&'static str> = Some("15");
127 const HEIGHT: Option<&'static str> = Some("15");
128 const FILL: Option<&'static str> = Some("none");
129 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
130
131}
132
133#[derive(Default, Copy, Clone, PartialEq, Eq)]
134pub struct AlignRight;
135
136impl IconShape for AlignRight {
137 fn child_elements(&self) -> Element {
138 rsx!(path {
139 d: "M14.9999 13.5C14.9999 13.7761 14.776 14 14.4999 14C14.2237 14 13.9999 13.7761 13.9999 13.5L13.9999 9L2.99988 9C2.44759 9 1.99988 8.55228 1.99988 8L1.99988 7C1.99988 6.44771 2.44759 6 2.99988 6L13.9999 6L13.9999 1.5C13.9999 1.22386 14.2237 1 14.4999 1C14.776 1 14.9999 1.22386 14.9999 1.5L14.9999 13.5Z",
140 fill: "currentColor",
141 })
142 }
143
144 const WIDTH: Option<&'static str> = Some("15");
145 const HEIGHT: Option<&'static str> = Some("15");
146 const FILL: Option<&'static str> = Some("none");
147 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
148
149}
150
151#[derive(Default, Copy, Clone, PartialEq, Eq)]
152pub struct AlignTop;
153
154impl IconShape for AlignTop {
155 fn child_elements(&self) -> Element {
156 rsx!(path {
157 d: "M13.5 7.62939e-06C13.7761 7.82267e-06 14 0.223865 14 0.500008C14 0.77615 13.7761 1.00001 13.5 1.00001H9V12C9 12.5523 8.55228 13 8 13H7C6.44772 13 6 12.5523 6 12V1.00001H1.5C1.22386 1.00001 1 0.77615 1 0.500008C1 0.223865 1.22386 7.63946e-06 1.5 7.62939e-06H13.5Z",
158 fill: "currentColor",
159 })
160 }
161
162 const WIDTH: Option<&'static str> = Some("15");
163 const HEIGHT: Option<&'static str> = Some("15");
164 const FILL: Option<&'static str> = Some("none");
165 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
166
167}
168
169#[derive(Default, Copy, Clone, PartialEq, Eq)]
170pub struct AllSides;
171
172impl IconShape for AllSides {
173 fn child_elements(&self) -> Element {
174 rsx!(path {
175 d: "M7.5 14.25L5.25 12H9.75L7.5 14.25ZM3 9.75L0.75 7.5L3 5.25V9.75ZM14.25 7.5L12 9.75V5.25L14.25 7.5ZM9.75 3H5.25L7.5 0.75L9.75 3Z",
176 fill: "currentColor",
177 })
178 }
179
180 const WIDTH: Option<&'static str> = Some("15");
181 const HEIGHT: Option<&'static str> = Some("15");
182 const FILL: Option<&'static str> = Some("none");
183 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
184
185}
186
187#[derive(Default, Copy, Clone, PartialEq, Eq)]
188pub struct Angle;
189
190impl IconShape for Angle {
191 fn child_elements(&self) -> Element {
192 rsx!(path {
193 d: "M8.26075 2.23278C8.43141 2.07478 8.69525 2.05291 8.89161 2.19372C9.08772 2.33448 9.15128 2.5909 9.05665 2.80309L9.00587 2.89098L2.47364 12.0004H13.5L13.6006 12.0101C13.8285 12.0567 14 12.2587 14 12.5004C13.9998 12.7419 13.8284 12.9431 13.6006 12.9896L13.5 13.0004H1.50001C1.31254 13.0004 1.14129 12.8947 1.05567 12.7279C0.970155 12.5612 0.984544 12.3606 1.09376 12.2084L8.19337 2.30895L8.26075 2.23278ZM13.4004 10.0004C13.6764 10.0006 13.9004 10.2243 13.9004 10.5004C13.9002 10.7762 13.6763 11.0002 13.4004 11.0004C13.1244 11.0004 12.9006 10.7763 12.9004 10.5004C12.9004 10.2242 13.1243 10.0004 13.4004 10.0004ZM12.5996 8.00036C12.8758 8.00036 13.0996 8.22422 13.0996 8.50036C13.0994 8.77634 12.8756 9.00036 12.5996 9.00036C12.3238 9.00016 12.0998 8.77622 12.0996 8.50036C12.0996 8.22434 12.3236 8.00056 12.5996 8.00036ZM11.5996 6.00036C11.8758 6.00036 12.0996 6.22422 12.0996 6.50036C12.0994 6.77634 11.8756 7.00036 11.5996 7.00036C11.3238 7.00016 11.0998 6.77622 11.0996 6.50036C11.0996 6.22434 11.3236 6.00056 11.5996 6.00036ZM10.4004 4.00036C10.6764 4.00056 10.9004 4.22434 10.9004 4.50036C10.9002 4.77622 10.6763 5.00016 10.4004 5.00036C10.1244 5.00036 9.90059 4.77634 9.9004 4.50036C9.9004 4.22422 10.1243 4.00036 10.4004 4.00036Z",
194 fill: "currentColor",
195 })
196 }
197
198 const WIDTH: Option<&'static str> = Some("15");
199 const HEIGHT: Option<&'static str> = Some("15");
200 const FILL: Option<&'static str> = Some("none");
201 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
202
203}
204
205#[derive(Default, Copy, Clone, PartialEq, Eq)]
206pub struct Archive;
207
208impl IconShape for Archive {
209 fn child_elements(&self) -> Element {
210 rsx!(path {
211 d: "M11.6914 1C12.0699 1.00016 12.4156 1.21422 12.585 1.55273L13.9473 4.27637L13.9863 4.38477C13.9952 4.42241 14 4.46105 14 4.5V13C14 13.5523 13.5523 14 13 14H2C1.44772 14 1 13.5523 1 13V4.5C1 4.42238 1.01802 4.34579 1.05273 4.27637L2.41504 1.55273L2.48633 1.43164C2.6712 1.16394 2.97741 1.00014 3.30859 1H11.6914ZM2 13H13V5H2V13ZM9.5 7C9.77614 7 10 7.22386 10 7.5C10 7.77614 9.77614 8 9.5 8H5.5C5.22386 8 5 7.77614 5 7.5C5 7.22386 5.22386 7 5.5 7H9.5ZM2.30859 4H7V2H3.30859L2.30859 4ZM8 4H12.6914L11.6914 2H8V4Z",
212 fill: "currentColor",
213 })
214 }
215
216 const WIDTH: Option<&'static str> = Some("15");
217 const HEIGHT: Option<&'static str> = Some("15");
218 const FILL: Option<&'static str> = Some("none");
219 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
220
221}
222
223#[derive(Default, Copy, Clone, PartialEq, Eq)]
224pub struct ArrowBottomLeft;
225
226impl IconShape for ArrowBottomLeft {
227 fn child_elements(&self) -> Element {
228 rsx!(path {
229 d: "M3.50019 12C3.36778 12 3.24037 11.9471 3.14667 11.8535C3.05319 11.7599 3.0003 11.6323 3.00019 11.5V6L3.00995 5.89844C3.05682 5.67099 3.25888 5.50009 3.50019 5.5C3.74179 5.50009 3.94388 5.67154 3.99042 5.89941L4.00019 6V10.293L10.6467 3.64648C10.8418 3.45132 11.1584 3.45152 11.3537 3.64648C11.5487 3.84177 11.5489 4.15835 11.3537 4.35352L4.70722 11H9.00019C9.2762 11 9.50004 11.224 9.50019 11.5C9.50004 11.776 9.2762 12 9.00019 12H3.50019Z",
230 fill: "currentColor",
231 })
232 }
233
234 const WIDTH: Option<&'static str> = Some("15");
235 const HEIGHT: Option<&'static str> = Some("15");
236 const FILL: Option<&'static str> = Some("none");
237 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
238
239}
240
241#[derive(Default, Copy, Clone, PartialEq, Eq)]
242pub struct ArrowBottomRight;
243
244impl IconShape for ArrowBottomRight {
245 fn child_elements(&self) -> Element {
246 rsx!(path {
247 d: "M11.4998 12C11.6322 12 11.7596 11.9471 11.8533 11.8535C11.9468 11.7599 11.9997 11.6323 11.9998 11.5V6L11.99 5.89844C11.9432 5.67099 11.7411 5.50009 11.4998 5.5C11.2582 5.50009 11.0561 5.67154 11.0096 5.89941L10.9998 6V10.293L4.35333 3.64648C4.15816 3.45132 3.84158 3.45152 3.6463 3.64648C3.45133 3.84177 3.45114 4.15835 3.6463 4.35352L10.2928 11H5.99981C5.7238 11 5.49996 11.224 5.49981 11.5C5.49996 11.776 5.7238 12 5.99981 12H11.4998Z",
248 fill: "currentColor",
249 })
250 }
251
252 const WIDTH: Option<&'static str> = Some("15");
253 const HEIGHT: Option<&'static str> = Some("15");
254 const FILL: Option<&'static str> = Some("none");
255 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
256
257}
258
259#[derive(Default, Copy, Clone, PartialEq, Eq)]
260pub struct ArrowDown;
261
262impl IconShape for ArrowDown {
263 fn child_elements(&self) -> Element {
264 rsx!(path {
265 d: "M7.50021 2C7.77635 2 8.00021 2.22386 8.00021 2.5V11.293L11.1467 8.14648C11.342 7.95122 11.6585 7.95122 11.8537 8.14648C12.049 8.34175 12.049 8.65825 11.8537 8.85352L7.85372 12.8535C7.75995 12.9473 7.63282 13 7.50021 13C7.3676 13 7.24046 12.9473 7.14669 12.8535L3.14669 8.85352L3.08224 8.77539C2.95407 8.58131 2.97583 8.31735 3.14669 8.14648C3.31756 7.97562 3.58152 7.95387 3.7756 8.08203L3.85372 8.14648L7.00021 11.293V2.5C7.00021 2.22386 7.22407 2 7.50021 2Z",
266 fill: "currentColor",
267 })
268 }
269
270 const WIDTH: Option<&'static str> = Some("15");
271 const HEIGHT: Option<&'static str> = Some("15");
272 const FILL: Option<&'static str> = Some("none");
273 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
274
275}
276
277#[derive(Default, Copy, Clone, PartialEq, Eq)]
278pub struct ArrowLeft;
279
280impl IconShape for ArrowLeft {
281 fn child_elements(&self) -> Element {
282 rsx!(path {
283 d: "M6.22457 3.08224C6.41865 2.95407 6.68261 2.97583 6.85348 3.14669C7.02434 3.31756 7.04609 3.58152 6.91793 3.7756L6.85348 3.85372L3.70699 7.00021H12.5C12.7761 7.00021 13 7.22406 13 7.50021C13 7.77635 12.7761 8.00021 12.5 8.00021H3.70699L6.85348 11.1467L6.91793 11.2248C7.04609 11.4189 7.02434 11.6829 6.85348 11.8537C6.68261 12.0246 6.41865 12.0463 6.22457 11.9182L6.14645 11.8537L2.14645 7.85372C1.95118 7.65846 1.95118 7.34195 2.14645 7.14669L6.14645 3.14669L6.22457 3.08224Z",
284 fill: "currentColor",
285 })
286 }
287
288 const WIDTH: Option<&'static str> = Some("15");
289 const HEIGHT: Option<&'static str> = Some("15");
290 const FILL: Option<&'static str> = Some("none");
291 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
292
293}
294
295#[derive(Default, Copy, Clone, PartialEq, Eq)]
296pub struct ArrowRight;
297
298impl IconShape for ArrowRight {
299 fn child_elements(&self) -> Element {
300 rsx!(path {
301 d: "M8.14648 3.14669C8.31735 2.97583 8.58131 2.95407 8.77539 3.08224L8.85352 3.14669L12.8535 7.14669C13.0488 7.34195 13.0488 7.65846 12.8535 7.85372L8.85352 11.8537C8.65825 12.049 8.34175 12.049 8.14648 11.8537C7.95122 11.6585 7.95122 11.342 8.14648 11.1467L11.293 8.00021H2.5C2.22386 8.00021 2 7.77635 2 7.50021C2 7.22406 2.22386 7.00021 2.5 7.00021H11.293L8.14648 3.85372L8.08203 3.7756C7.95387 3.58152 7.97562 3.31756 8.14648 3.14669Z",
302 fill: "currentColor",
303 })
304 }
305
306 const WIDTH: Option<&'static str> = Some("15");
307 const HEIGHT: Option<&'static str> = Some("15");
308 const FILL: Option<&'static str> = Some("none");
309 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
310
311}
312
313#[derive(Default, Copy, Clone, PartialEq, Eq)]
314pub struct ArrowTopLeft;
315
316impl IconShape for ArrowTopLeft {
317 fn child_elements(&self) -> Element {
318 rsx!(path {
319 d: "M3.50019 3C3.36778 3.00005 3.24037 3.05295 3.14667 3.14648C3.05319 3.24013 3.0003 3.36768 3.00019 3.5V9L3.00995 9.10156C3.05682 9.32901 3.25888 9.49991 3.50019 9.5C3.74179 9.49991 3.94388 9.32846 3.99042 9.10059L4.00019 9V4.70703L10.6467 11.3535C10.8418 11.5487 11.1584 11.5485 11.3537 11.3535C11.5487 11.1582 11.5489 10.8416 11.3537 10.6465L4.70722 4H9.00019C9.2762 3.99996 9.50004 3.77599 9.50019 3.5C9.50004 3.22401 9.2762 3.00004 9.00019 3H3.50019Z",
320 fill: "currentColor",
321 })
322 }
323
324 const WIDTH: Option<&'static str> = Some("15");
325 const HEIGHT: Option<&'static str> = Some("15");
326 const FILL: Option<&'static str> = Some("none");
327 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
328
329}
330
331#[derive(Default, Copy, Clone, PartialEq, Eq)]
332pub struct ArrowTopRight;
333
334impl IconShape for ArrowTopRight {
335 fn child_elements(&self) -> Element {
336 rsx!(path {
337 d: "M11.4998 3C11.6322 3.00005 11.7596 3.05295 11.8533 3.14648C11.9468 3.24013 11.9997 3.36768 11.9998 3.5V9L11.99 9.10156C11.9432 9.32901 11.7411 9.49991 11.4998 9.5C11.2582 9.49991 11.0561 9.32846 11.0096 9.10059L10.9998 9V4.70703L4.35333 11.3535C4.15816 11.5487 3.84158 11.5485 3.6463 11.3535C3.45133 11.1582 3.45114 10.8416 3.6463 10.6465L10.2928 4H5.99981C5.7238 3.99996 5.49996 3.77599 5.49981 3.5C5.49996 3.22401 5.7238 3.00004 5.99981 3H11.4998Z",
338 fill: "currentColor",
339 })
340 }
341
342 const WIDTH: Option<&'static str> = Some("15");
343 const HEIGHT: Option<&'static str> = Some("15");
344 const FILL: Option<&'static str> = Some("none");
345 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
346
347}
348
349#[derive(Default, Copy, Clone, PartialEq, Eq)]
350pub struct ArrowUp;
351
352impl IconShape for ArrowUp {
353 fn child_elements(&self) -> Element {
354 rsx!(path {
355 d: "M7.22457 2.08224C7.41865 1.95407 7.68261 1.97583 7.85348 2.14669L11.8535 6.14669L11.9179 6.22482C12.0461 6.4189 12.0243 6.68286 11.8535 6.85372C11.6826 7.02459 11.4187 7.04634 11.2246 6.91818L11.1464 6.85372L7.99996 3.70724V12.5002C7.99996 12.7763 7.7761 13.0002 7.49996 13.0002C7.22382 13.0002 6.99996 12.7763 6.99996 12.5002V3.70724L3.85348 6.85372C3.65822 7.04899 3.34171 7.04899 3.14645 6.85372C2.95118 6.65846 2.95118 6.34195 3.14645 6.14669L7.14645 2.14669L7.22457 2.08224Z",
356 fill: "currentColor",
357 })
358 }
359
360 const WIDTH: Option<&'static str> = Some("15");
361 const HEIGHT: Option<&'static str> = Some("15");
362 const FILL: Option<&'static str> = Some("none");
363 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
364
365}
366
367#[derive(Default, Copy, Clone, PartialEq, Eq)]
368pub struct AspectRatio;
369
370impl IconShape for AspectRatio {
371 fn child_elements(&self) -> Element {
372 rsx!(path {
373 d: "M12.6533 1.00781C13.4097 1.08461 14 1.72334 14 2.5V12.5L13.9922 12.6533C13.9205 13.3593 13.3593 13.9205 12.6533 13.9922L12.5 14H2.5L2.34668 13.9922C1.64069 13.9205 1.07949 13.3593 1.00781 12.6533L1 12.5V2.5C1 1.72334 1.59028 1.08461 2.34668 1.00781L2.5 1H12.5L12.6533 1.00781ZM2.5 2C2.22386 2 2 2.22386 2 2.5V12.5C2 12.7761 2.22386 13 2.5 13H12.5C12.7761 13 13 12.7761 13 12.5V2.5C13 2.22386 12.7761 2 12.5 2H2.5ZM7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5C7 7.22386 7.22386 7 7.5 7ZM9.5 7C9.77614 7 10 7.22386 10 7.5C10 7.77614 9.77614 8 9.5 8C9.22386 8 9 7.77614 9 7.5C9 7.22386 9.22386 7 9.5 7ZM11.5 7C11.7761 7 12 7.22386 12 7.5C12 7.77614 11.7761 8 11.5 8C11.2239 8 11 7.77614 11 7.5C11 7.22386 11.2239 7 11.5 7ZM7.5 5C7.77614 5 8 5.22386 8 5.5C8 5.77614 7.77614 6 7.5 6C7.22386 6 7 5.77614 7 5.5C7 5.22386 7.22386 5 7.5 5ZM7.5 3C7.77614 3 8 3.22386 8 3.5C8 3.77614 7.77614 4 7.5 4C7.22386 4 7 3.77614 7 3.5C7 3.22386 7.22386 3 7.5 3Z",
374 fill: "currentColor",
375 })
376 }
377
378 const WIDTH: Option<&'static str> = Some("15");
379 const HEIGHT: Option<&'static str> = Some("15");
380 const FILL: Option<&'static str> = Some("none");
381 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
382
383}
384
385#[derive(Default, Copy, Clone, PartialEq, Eq)]
386pub struct Avatar;
387
388impl IconShape for Avatar {
389 fn child_elements(&self) -> Element {
390 rsx!(path {
391 d: "M7.49908 0.87706C11.1565 0.87706 14.1217 3.84179 14.1221 7.49913C14.1221 11.1568 11.1567 14.1222 7.49908 14.1222C3.84175 14.1218 0.877014 11.1565 0.877014 7.49913C0.877426 3.84205 3.842 0.877471 7.49908 0.87706ZM7.50006 9.97472C6.01506 9.9748 4.7185 10.78 4.02057 11.9786C4.98131 12.7259 6.18779 13.1718 7.49908 13.172C8.81087 13.172 10.0176 12.7253 10.9786 11.9776C10.2804 10.7797 8.98458 9.97474 7.50006 9.97472ZM7.49908 1.82628C4.36667 1.82669 1.82664 4.36672 1.82623 7.49913C1.82623 8.97122 2.38807 10.3122 3.30768 11.3204C4.19121 9.94086 5.73848 9.02558 7.50006 9.0255C9.26117 9.02552 10.8078 9.94052 11.6915 11.3194C12.6107 10.3113 13.1719 8.97095 13.1719 7.49913C13.1715 4.36647 10.6318 1.82628 7.49908 1.82628ZM7.50006 4.15538C8.7979 4.15542 9.84967 5.20714 9.84967 6.50499C9.84961 7.80279 8.79786 8.85456 7.50006 8.8546C6.20223 8.8546 5.15051 7.80281 5.15045 6.50499C5.15045 5.20712 6.20219 4.15538 7.50006 4.15538ZM7.50006 5.1046C6.72686 5.1046 6.09967 5.73179 6.09967 6.50499C6.09973 7.27814 6.7269 7.90538 7.50006 7.90538C8.27319 7.90534 8.9004 7.27812 8.90045 6.50499C8.90045 5.73181 8.27323 5.10464 7.50006 5.1046Z",
392 fill: "currentColor",
393 })
394 }
395
396 const WIDTH: Option<&'static str> = Some("15");
397 const HEIGHT: Option<&'static str> = Some("15");
398 const FILL: Option<&'static str> = Some("none");
399 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
400
401}
402
403#[derive(Default, Copy, Clone, PartialEq, Eq)]
404pub struct Backpack;
405
406impl IconShape for Backpack {
407 fn child_elements(&self) -> Element {
408 rsx!(path {
409 d: "M9 0C9.55229 0 10 0.447715 10 1V2H14C14.5523 2 15 2.44772 15 3V6C15 6.88839 14.6126 7.68566 14 8.23438V11.5C14 12.3284 13.3284 13 12.5 13H2.5C1.67157 13 1 12.3284 1 11.5V8.2334C0.387691 7.68474 0 6.88823 0 6V3C0 2.44772 0.447715 2 1 2H5V1C5 0.447715 5.44772 0 6 0H9ZM13 8.82715C12.6869 8.93792 12.3506 9 12 9H8V9.5C8 9.77614 7.77614 10 7.5 10C7.22386 10 7 9.77614 7 9.5V9H3C2.64938 9 2.31309 8.93795 2 8.82715V11.5C2 11.7761 2.22386 12 2.5 12H12.5C12.7761 12 13 11.7761 13 11.5V8.82715ZM1 6C1 6.65391 1.31294 7.23483 1.7998 7.60059L1.92969 7.68945C2.23914 7.88604 2.60573 8 3 8H7V7.5C7 7.22386 7.22386 7 7.5 7C7.77614 7 8 7.22386 8 7.5V8H12C12.4508 8 12.866 7.85163 13.2002 7.60059L13.374 7.45312C13.7601 7.08804 14 6.57214 14 6V3H1V6ZM6 2H9V1H6V2Z",
410 fill: "currentColor",
411 })
412 }
413
414 const WIDTH: Option<&'static str> = Some("15");
415 const HEIGHT: Option<&'static str> = Some("15");
416 const FILL: Option<&'static str> = Some("none");
417 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
418
419}
420
421#[derive(Default, Copy, Clone, PartialEq, Eq)]
422pub struct Badge;
423
424impl IconShape for Badge {
425 fn child_elements(&self) -> Element {
426 rsx!(path {
427 d: "M11.7559 5.0127C13.0164 5.14082 14 6.20566 14 7.5C14 8.79434 13.0164 9.85918 11.7559 9.9873L11.5 10H3.5L3.24414 9.9873C1.98361 9.85918 1 8.79434 1 7.5C1 6.20566 1.98361 5.14082 3.24414 5.0127L3.5 5H11.5L11.7559 5.0127ZM3.5 6C2.67157 6 2 6.67157 2 7.5C2 8.32843 2.67157 9 3.5 9H11.5C12.3284 9 13 8.32843 13 7.5C13 6.67157 12.3284 6 11.5 6H3.5ZM10.5 7C10.7761 7 11 7.22386 11 7.5C11 7.77614 10.7761 8 10.5 8H4.5C4.22386 8 4 7.77614 4 7.5C4 7.22386 4.22386 7 4.5 7H10.5Z",
428 fill: "currentColor",
429 })
430 }
431
432 const WIDTH: Option<&'static str> = Some("15");
433 const HEIGHT: Option<&'static str> = Some("15");
434 const FILL: Option<&'static str> = Some("none");
435 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
436
437}
438
439#[derive(Default, Copy, Clone, PartialEq, Eq)]
440pub struct BarChart;
441
442impl IconShape for BarChart {
443 fn child_elements(&self) -> Element {
444 rsx!(path {
445 d: "M1.5 5C1.77614 5 2 5.22386 2 5.5V13.5C2 13.7761 1.77614 14 1.5 14C1.22386 14 1 13.7761 1 13.5V5.5C1 5.22386 1.22386 5 1.5 5ZM3.5 7C3.77614 7 4 7.22386 4 7.5V13.5C4 13.7761 3.77614 14 3.5 14C3.22386 14 3 13.7761 3 13.5V7.5C3 7.22386 3.22386 7 3.5 7ZM5.5 4C5.77614 4 6 4.22386 6 4.5V13.5C6 13.7761 5.77614 14 5.5 14C5.22386 14 5 13.7761 5 13.5V4.5C5 4.22386 5.22386 4 5.5 4ZM7.5 5C7.77614 5 8 5.22386 8 5.5V13.5C8 13.7761 7.77614 14 7.5 14C7.22386 14 7 13.7761 7 13.5V5.5C7 5.22386 7.22386 5 7.5 5ZM9.5 3C9.77614 3 10 3.22386 10 3.5V13.5C10 13.7761 9.77614 14 9.5 14C9.22386 14 9 13.7761 9 13.5V3.5C9 3.22386 9.22386 3 9.5 3ZM11.5 1C11.7761 1 12 1.22386 12 1.5V13.5C12 13.7761 11.7761 14 11.5 14C11.2239 14 11 13.7761 11 13.5V1.5C11 1.22386 11.2239 1 11.5 1ZM13.5 3C13.7761 3 14 3.22386 14 3.5V13.5C14 13.7761 13.7761 14 13.5 14C13.2239 14 13 13.7761 13 13.5V3.5C13 3.22386 13.2239 3 13.5 3Z",
446 fill: "currentColor",
447 })
448 }
449
450 const WIDTH: Option<&'static str> = Some("15");
451 const HEIGHT: Option<&'static str> = Some("15");
452 const FILL: Option<&'static str> = Some("none");
453 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
454
455}
456
457#[derive(Default, Copy, Clone, PartialEq, Eq)]
458pub struct Bell;
459
460impl IconShape for Bell {
461 fn child_elements(&self) -> Element {
462 rsx!(path {
463 d: "M7.50094 0.150421C8.10865 0.150484 8.60153 0.64329 8.60153 1.25101C8.60146 1.757 8.25905 2.18112 7.79391 2.3096C10.1422 2.46099 11.9999 4.41337 12 6.79984V10.25C12 11.0562 12.0331 11.7074 12.7236 12.0528C12.9308 12.1564 13.0393 12.3888 12.9863 12.6143C12.933 12.84 12.7319 13 12.5 13H8.15915C8.3675 13.1833 8.49997 13.4507 8.49997 13.75C8.49995 14.3023 8.05224 14.75 7.49997 14.75C6.94771 14.75 6.49999 14.3023 6.49997 13.75C6.49997 13.4508 6.63246 13.1833 6.84079 13H2.49997C2.2681 13 2.06691 12.84 2.01364 12.6143C1.96065 12.3888 2.06913 12.1564 2.27634 12.0528C2.96696 11.7074 2.99996 11.0562 2.99997 10.25V6.79984C3.00005 4.41307 4.85835 2.46056 7.207 2.3096C6.74221 2.18089 6.40042 1.75675 6.40036 1.25101C6.40036 0.643252 6.89319 0.150421 7.50094 0.150421ZM7.49997 3.29984C5.56705 3.29986 4.00005 4.86693 3.99997 6.79984V10.25C3.99997 10.6948 4.01284 11.3855 3.69919 12H11.3007C10.9871 11.3855 11 10.6948 11 10.25V6.79984C10.9999 4.86691 9.43291 3.29984 7.49997 3.29984Z",
464 fill: "currentColor",
465 })
466 }
467
468 const WIDTH: Option<&'static str> = Some("15");
469 const HEIGHT: Option<&'static str> = Some("15");
470 const FILL: Option<&'static str> = Some("none");
471 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
472
473}
474
475#[derive(Default, Copy, Clone, PartialEq, Eq)]
476pub struct BlendingMode;
477
478impl IconShape for BlendingMode {
479 fn child_elements(&self) -> Element {
480 rsx!(path {
481 d: "M7.5 1.5C10.5 4.25 12 6.5 12 9L11.9941 9.23145C11.8737 11.6092 9.90766 13.5 7.5 13.5C5.01472 13.5 3 11.4853 3 9C3 6.5 4.5 4.25 7.5 1.5ZM7.5 2.87598C5.02773 5.27379 4 7.11234 4 9C4 9.28259 4.03443 9.55712 4.09766 9.82031C5.96219 10.2476 8.63227 7.42971 10.9521 8.30371C10.7246 6.65104 9.6678 4.97848 7.5 2.87598Z",
482 fill: "currentColor",
483 })
484 }
485
486 const WIDTH: Option<&'static str> = Some("15");
487 const HEIGHT: Option<&'static str> = Some("15");
488 const FILL: Option<&'static str> = Some("none");
489 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
490
491}
492
493#[derive(Default, Copy, Clone, PartialEq, Eq)]
494pub struct Bookmark;
495
496impl IconShape for Bookmark {
497 fn child_elements(&self) -> Element {
498 rsx!(path {
499 d: "M11.6006 2.00977C11.8286 2.05629 12 2.25829 12 2.5V13.5C12 13.6818 11.9012 13.8494 11.7422 13.9375C11.5833 14.0254 11.3894 14.02 11.2354 13.9238L7.5 11.5898L3.76465 13.9238C3.61062 14.02 3.41669 14.0254 3.25781 13.9375C3.09884 13.8494 3 13.6818 3 13.5V2.5L3.00977 2.39941C3.05629 2.17145 3.25829 2 3.5 2H11.5L11.6006 2.00977ZM4 12.5977L6.96973 10.7412C7.294 10.5385 7.706 10.5385 8.03027 10.7412L11 12.5977V3H4V12.5977Z",
500 fill: "currentColor",
501 })
502 }
503
504 const WIDTH: Option<&'static str> = Some("15");
505 const HEIGHT: Option<&'static str> = Some("15");
506 const FILL: Option<&'static str> = Some("none");
507 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
508
509}
510
511#[derive(Default, Copy, Clone, PartialEq, Eq)]
512pub struct BookmarkFilled;
513
514impl IconShape for BookmarkFilled {
515 fn child_elements(&self) -> Element {
516 rsx!(path {
517 d: "M11.6006 2.00977C11.8286 2.05629 12 2.25829 12 2.5V13.5C12 13.6818 11.9012 13.8494 11.7422 13.9375C11.5833 14.0254 11.3894 14.02 11.2354 13.9238L7.5 11.5898L3.76465 13.9238C3.61062 14.02 3.41669 14.0254 3.25781 13.9375C3.09884 13.8494 3 13.6818 3 13.5V2.5L3.00977 2.39941C3.05629 2.17145 3.25829 2 3.5 2H11.5L11.6006 2.00977Z",
518 fill: "currentColor",
519 })
520 }
521
522 const WIDTH: Option<&'static str> = Some("15");
523 const HEIGHT: Option<&'static str> = Some("15");
524 const FILL: Option<&'static str> = Some("none");
525 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
526
527}
528
529#[derive(Default, Copy, Clone, PartialEq, Eq)]
530pub struct BorderAll;
531
532impl IconShape for BorderAll {
533 fn child_elements(&self) -> Element {
534 rsx!(path {
535 clip_rule: "evenodd",
536 d: "M0.25 1C0.25 0.585786 0.585786 0.25 1 0.25H14C14.4142 0.25 14.75 0.585786 14.75 1V14C14.75 14.4142 14.4142 14.75 14 14.75H1C0.585786 14.75 0.25 14.4142 0.25 14V1ZM1.75 1.75V13.25H13.25V1.75H1.75Z",
537 fill: "currentColor",
538 fill_rule: "evenodd",
539 }
540rect {
541 fill: "currentColor",
542 height: "1",
543 rx: ".5",
544 width: "1",
545 x: "7",
546 y: "5",
547 }
548rect {
549 fill: "currentColor",
550 height: "1",
551 rx: ".5",
552 width: "1",
553 x: "7",
554 y: "3",
555 }
556rect {
557 fill: "currentColor",
558 height: "1",
559 rx: ".5",
560 width: "1",
561 x: "7",
562 y: "7",
563 }
564rect {
565 fill: "currentColor",
566 height: "1",
567 rx: ".5",
568 width: "1",
569 x: "5",
570 y: "7",
571 }
572rect {
573 fill: "currentColor",
574 height: "1",
575 rx: ".5",
576 width: "1",
577 x: "3",
578 y: "7",
579 }
580rect {
581 fill: "currentColor",
582 height: "1",
583 rx: ".5",
584 width: "1",
585 x: "9",
586 y: "7",
587 }
588rect {
589 fill: "currentColor",
590 height: "1",
591 rx: ".5",
592 width: "1",
593 x: "11",
594 y: "7",
595 }
596rect {
597 fill: "currentColor",
598 height: "1",
599 rx: ".5",
600 width: "1",
601 x: "7",
602 y: "9",
603 }
604rect {
605 fill: "currentColor",
606 height: "1",
607 rx: ".5",
608 width: "1",
609 x: "7",
610 y: "11",
611 })
612 }
613
614 const WIDTH: Option<&'static str> = Some("15");
615 const HEIGHT: Option<&'static str> = Some("15");
616 const FILL: Option<&'static str> = Some("none");
617 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
618
619}
620
621#[derive(Default, Copy, Clone, PartialEq, Eq)]
622pub struct BorderBottom;
623
624impl IconShape for BorderBottom {
625 fn child_elements(&self) -> Element {
626 rsx!(path {
627 clip_rule: "evenodd",
628 d: "M1 13.25L14 13.25V14.75L1 14.75V13.25Z",
629 fill: "currentColor",
630 fill_rule: "evenodd",
631 }
632rect {
633 fill: "currentColor",
634 height: "1",
635 rx: ".5",
636 width: "1",
637 x: "7",
638 y: "5",
639 }
640rect {
641 fill: "currentColor",
642 height: "1",
643 rx: ".5",
644 width: "1",
645 x: "13",
646 y: "5",
647 }
648rect {
649 fill: "currentColor",
650 height: "1",
651 rx: ".5",
652 width: "1",
653 x: "7",
654 y: "3",
655 }
656rect {
657 fill: "currentColor",
658 height: "1",
659 rx: ".5",
660 width: "1",
661 x: "13",
662 y: "3",
663 }
664rect {
665 fill: "currentColor",
666 height: "1",
667 rx: ".5",
668 width: "1",
669 x: "7",
670 y: "7",
671 }
672rect {
673 fill: "currentColor",
674 height: "1",
675 rx: ".5",
676 width: "1",
677 x: "7",
678 y: "1",
679 }
680rect {
681 fill: "currentColor",
682 height: "1",
683 rx: ".5",
684 width: "1",
685 x: "13",
686 y: "7",
687 }
688rect {
689 fill: "currentColor",
690 height: "1",
691 rx: ".5",
692 width: "1",
693 x: "13",
694 y: "1",
695 }
696rect {
697 fill: "currentColor",
698 height: "1",
699 rx: ".5",
700 width: "1",
701 x: "5",
702 y: "7",
703 }
704rect {
705 fill: "currentColor",
706 height: "1",
707 rx: ".5",
708 width: "1",
709 x: "5",
710 y: "1",
711 }
712rect {
713 fill: "currentColor",
714 height: "1",
715 rx: ".5",
716 width: "1",
717 x: "3",
718 y: "7",
719 }
720rect {
721 fill: "currentColor",
722 height: "1",
723 rx: ".5",
724 width: "1",
725 x: "3",
726 y: "1",
727 }
728rect {
729 fill: "currentColor",
730 height: "1",
731 rx: ".5",
732 width: "1",
733 x: "9",
734 y: "7",
735 }
736rect {
737 fill: "currentColor",
738 height: "1",
739 rx: ".5",
740 width: "1",
741 x: "9",
742 y: "1",
743 }
744rect {
745 fill: "currentColor",
746 height: "1",
747 rx: ".5",
748 width: "1",
749 x: "11",
750 y: "7",
751 }
752rect {
753 fill: "currentColor",
754 height: "1",
755 rx: ".5",
756 width: "1",
757 x: "11",
758 y: "1",
759 }
760rect {
761 fill: "currentColor",
762 height: "1",
763 rx: ".5",
764 width: "1",
765 x: "7",
766 y: "9",
767 }
768rect {
769 fill: "currentColor",
770 height: "1",
771 rx: ".5",
772 width: "1",
773 x: "13",
774 y: "9",
775 }
776rect {
777 fill: "currentColor",
778 height: "1",
779 rx: ".5",
780 width: "1",
781 x: "7",
782 y: "11",
783 }
784rect {
785 fill: "currentColor",
786 height: "1",
787 rx: ".5",
788 width: "1",
789 x: "13",
790 y: "11",
791 }
792rect {
793 fill: "currentColor",
794 height: "1",
795 rx: ".5",
796 width: "1",
797 x: "1",
798 y: "5",
799 }
800rect {
801 fill: "currentColor",
802 height: "1",
803 rx: ".5",
804 width: "1",
805 x: "1",
806 y: "3",
807 }
808rect {
809 fill: "currentColor",
810 height: "1",
811 rx: ".5",
812 width: "1",
813 x: "1",
814 y: "7",
815 }
816rect {
817 fill: "currentColor",
818 height: "1",
819 rx: ".5",
820 width: "1",
821 x: "1",
822 y: "1",
823 }
824rect {
825 fill: "currentColor",
826 height: "1",
827 rx: ".5",
828 width: "1",
829 x: "1",
830 y: "9",
831 }
832rect {
833 fill: "currentColor",
834 height: "1",
835 rx: ".5",
836 width: "1",
837 x: "1",
838 y: "11",
839 })
840 }
841
842 const WIDTH: Option<&'static str> = Some("15");
843 const HEIGHT: Option<&'static str> = Some("15");
844 const FILL: Option<&'static str> = Some("none");
845 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
846
847}
848
849#[derive(Default, Copy, Clone, PartialEq, Eq)]
850pub struct BorderDashed;
851
852impl IconShape for BorderDashed {
853 fn child_elements(&self) -> Element {
854 rsx!(path {
855 d: "M3 7C3.27614 7 3.5 7.22386 3.5 7.5C3.5 7.77614 3.27614 8 3 8H0.5C0.223858 8 0 7.77614 0 7.5C0 7.22386 0.223858 7 0.5 7H3ZM8.75 7C9.02614 7 9.25 7.22386 9.25 7.5C9.25 7.77614 9.02614 8 8.75 8H6.25C5.97386 8 5.75 7.77614 5.75 7.5C5.75 7.22386 5.97386 7 6.25 7H8.75ZM14.5 7C14.7761 7 15 7.22386 15 7.5C15 7.77614 14.7761 8 14.5 8H12C11.7239 8 11.5 7.77614 11.5 7.5C11.5 7.22386 11.7239 7 12 7H14.5Z",
856 fill: "currentColor",
857 })
858 }
859
860 const WIDTH: Option<&'static str> = Some("15");
861 const HEIGHT: Option<&'static str> = Some("15");
862 const FILL: Option<&'static str> = Some("none");
863 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
864
865}
866
867#[derive(Default, Copy, Clone, PartialEq, Eq)]
868pub struct BorderDotted;
869
870impl IconShape for BorderDotted {
871 fn child_elements(&self) -> Element {
872 rsx!(path {
873 d: "M1.5 6.625C1.98325 6.625 2.375 7.01675 2.375 7.5C2.375 7.98325 1.98325 8.375 1.5 8.375C1.01675 8.375 0.625 7.98325 0.625 7.5C0.625 7.01675 1.01675 6.625 1.5 6.625ZM5.5 6.625C5.98325 6.625 6.375 7.01675 6.375 7.5C6.375 7.98325 5.98325 8.375 5.5 8.375C5.01675 8.375 4.625 7.98325 4.625 7.5C4.625 7.01675 5.01675 6.625 5.5 6.625ZM9.5 6.625C9.98325 6.625 10.375 7.01675 10.375 7.5C10.375 7.98325 9.98325 8.375 9.5 8.375C9.01675 8.375 8.625 7.98325 8.625 7.5C8.625 7.01675 9.01675 6.625 9.5 6.625ZM13.5 6.625C13.9832 6.625 14.375 7.01675 14.375 7.5C14.375 7.98325 13.9832 8.375 13.5 8.375C13.0168 8.375 12.625 7.98325 12.625 7.5C12.625 7.01675 13.0168 6.625 13.5 6.625Z",
874 fill: "currentColor",
875 })
876 }
877
878 const WIDTH: Option<&'static str> = Some("15");
879 const HEIGHT: Option<&'static str> = Some("15");
880 const FILL: Option<&'static str> = Some("none");
881 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
882
883}
884
885#[derive(Default, Copy, Clone, PartialEq, Eq)]
886pub struct BorderLeft;
887
888impl IconShape for BorderLeft {
889 fn child_elements(&self) -> Element {
890 rsx!(path {
891 clip_rule: "evenodd",
892 d: "M1.75 1L1.75 14L0.249999 14L0.25 1L1.75 1Z",
893 fill: "currentColor",
894 fill_rule: "evenodd",
895 }
896rect {
897 fill: "currentColor",
898 height: "1",
899 rx: ".5",
900 transform: "rotate(90 10 7)",
901 width: "1",
902 x: "10",
903 y: "7",
904 }
905rect {
906 fill: "currentColor",
907 height: "1",
908 rx: ".5",
909 transform: "rotate(90 10 13)",
910 width: "1",
911 x: "10",
912 y: "13",
913 }
914rect {
915 fill: "currentColor",
916 height: "1",
917 rx: ".5",
918 transform: "rotate(90 12 7)",
919 width: "1",
920 x: "12",
921 y: "7",
922 }
923rect {
924 fill: "currentColor",
925 height: "1",
926 rx: ".5",
927 transform: "rotate(90 12 13)",
928 width: "1",
929 x: "12",
930 y: "13",
931 }
932rect {
933 fill: "currentColor",
934 height: "1",
935 rx: ".5",
936 transform: "rotate(90 8 7)",
937 width: "1",
938 x: "8",
939 y: "7",
940 }
941rect {
942 fill: "currentColor",
943 height: "1",
944 rx: ".5",
945 transform: "rotate(90 14 7)",
946 width: "1",
947 x: "14",
948 y: "7",
949 }
950rect {
951 fill: "currentColor",
952 height: "1",
953 rx: ".5",
954 transform: "rotate(90 8 13)",
955 width: "1",
956 x: "8",
957 y: "13",
958 }
959rect {
960 fill: "currentColor",
961 height: "1",
962 rx: ".5",
963 transform: "rotate(90 14 13)",
964 width: "1",
965 x: "14",
966 y: "13",
967 }
968rect {
969 fill: "currentColor",
970 height: "1",
971 rx: ".5",
972 transform: "rotate(90 8 5)",
973 width: "1",
974 x: "8",
975 y: "5",
976 }
977rect {
978 fill: "currentColor",
979 height: "1",
980 rx: ".5",
981 transform: "rotate(90 14 5)",
982 width: "1",
983 x: "14",
984 y: "5",
985 }
986rect {
987 fill: "currentColor",
988 height: "1",
989 rx: ".5",
990 transform: "rotate(90 8 3)",
991 width: "1",
992 x: "8",
993 y: "3",
994 }
995rect {
996 fill: "currentColor",
997 height: "1",
998 rx: ".5",
999 transform: "rotate(90 14 3)",
1000 width: "1",
1001 x: "14",
1002 y: "3",
1003 }
1004rect {
1005 fill: "currentColor",
1006 height: "1",
1007 rx: ".5",
1008 transform: "rotate(90 8 9)",
1009 width: "1",
1010 x: "8",
1011 y: "9",
1012 }
1013rect {
1014 fill: "currentColor",
1015 height: "1",
1016 rx: ".5",
1017 transform: "rotate(90 14 9)",
1018 width: "1",
1019 x: "14",
1020 y: "9",
1021 }
1022rect {
1023 fill: "currentColor",
1024 height: "1",
1025 rx: ".5",
1026 transform: "rotate(90 8 11)",
1027 width: "1",
1028 x: "8",
1029 y: "11",
1030 }
1031rect {
1032 fill: "currentColor",
1033 height: "1",
1034 rx: ".5",
1035 transform: "rotate(90 14 11)",
1036 width: "1",
1037 x: "14",
1038 y: "11",
1039 }
1040rect {
1041 fill: "currentColor",
1042 height: "1",
1043 rx: ".5",
1044 transform: "rotate(90 6 7)",
1045 width: "1",
1046 x: "6",
1047 y: "7",
1048 }
1049rect {
1050 fill: "currentColor",
1051 height: "1",
1052 rx: ".5",
1053 transform: "rotate(90 6 13)",
1054 width: "1",
1055 x: "6",
1056 y: "13",
1057 }
1058rect {
1059 fill: "currentColor",
1060 height: "1",
1061 rx: ".5",
1062 transform: "rotate(90 4 7)",
1063 width: "1",
1064 x: "4",
1065 y: "7",
1066 }
1067rect {
1068 fill: "currentColor",
1069 height: "1",
1070 rx: ".5",
1071 transform: "rotate(90 4 13)",
1072 width: "1",
1073 x: "4",
1074 y: "13",
1075 }
1076rect {
1077 fill: "currentColor",
1078 height: "1",
1079 rx: ".5",
1080 transform: "rotate(90 10 1)",
1081 width: "1",
1082 x: "10",
1083 y: "1",
1084 }
1085rect {
1086 fill: "currentColor",
1087 height: "1",
1088 rx: ".5",
1089 transform: "rotate(90 12 1)",
1090 width: "1",
1091 x: "12",
1092 y: "1",
1093 }
1094rect {
1095 fill: "currentColor",
1096 height: "1",
1097 rx: ".5",
1098 transform: "rotate(90 8 1)",
1099 width: "1",
1100 x: "8",
1101 y: "1",
1102 }
1103rect {
1104 fill: "currentColor",
1105 height: "1",
1106 rx: ".5",
1107 transform: "rotate(90 14 1)",
1108 width: "1",
1109 x: "14",
1110 y: "1",
1111 }
1112rect {
1113 fill: "currentColor",
1114 height: "1",
1115 rx: ".5",
1116 transform: "rotate(90 6 1)",
1117 width: "1",
1118 x: "6",
1119 y: "1",
1120 }
1121rect {
1122 fill: "currentColor",
1123 height: "1",
1124 rx: ".5",
1125 transform: "rotate(90 4 1)",
1126 width: "1",
1127 x: "4",
1128 y: "1",
1129 })
1130 }
1131
1132 const WIDTH: Option<&'static str> = Some("15");
1133 const HEIGHT: Option<&'static str> = Some("15");
1134 const FILL: Option<&'static str> = Some("none");
1135 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
1136
1137}
1138
1139#[derive(Default, Copy, Clone, PartialEq, Eq)]
1140pub struct BorderNone;
1141
1142impl IconShape for BorderNone {
1143 fn child_elements(&self) -> Element {
1144 rsx!(rect {
1145 fill: "currentColor",
1146 height: "1",
1147 rx: ".5",
1148 width: "1",
1149 x: "7",
1150 y: "5.025",
1151 }
1152rect {
1153 fill: "currentColor",
1154 height: "1",
1155 rx: ".5",
1156 width: "1",
1157 x: "13",
1158 y: "5.025",
1159 }
1160rect {
1161 fill: "currentColor",
1162 height: "1",
1163 rx: ".5",
1164 width: "1",
1165 x: "7",
1166 y: "3.025",
1167 }
1168rect {
1169 fill: "currentColor",
1170 height: "1",
1171 rx: ".5",
1172 width: "1",
1173 x: "13",
1174 y: "3.025",
1175 }
1176rect {
1177 fill: "currentColor",
1178 height: "1",
1179 rx: ".5",
1180 width: "1",
1181 x: "7",
1182 y: "7.025",
1183 }
1184rect {
1185 fill: "currentColor",
1186 height: "1",
1187 rx: ".5",
1188 width: "1",
1189 x: "7",
1190 y: "13.025",
1191 }
1192rect {
1193 fill: "currentColor",
1194 height: "1",
1195 rx: ".5",
1196 width: "1",
1197 x: "7",
1198 y: "1.025",
1199 }
1200rect {
1201 fill: "currentColor",
1202 height: "1",
1203 rx: ".5",
1204 width: "1",
1205 x: "13",
1206 y: "7.025",
1207 }
1208rect {
1209 fill: "currentColor",
1210 height: "1",
1211 rx: ".5",
1212 width: "1",
1213 x: "13",
1214 y: "13.025",
1215 }
1216rect {
1217 fill: "currentColor",
1218 height: "1",
1219 rx: ".5",
1220 width: "1",
1221 x: "13",
1222 y: "1.025",
1223 }
1224rect {
1225 fill: "currentColor",
1226 height: "1",
1227 rx: ".5",
1228 width: "1",
1229 x: "5",
1230 y: "7.025",
1231 }
1232rect {
1233 fill: "currentColor",
1234 height: "1",
1235 rx: ".5",
1236 width: "1",
1237 x: "5",
1238 y: "13.025",
1239 }
1240rect {
1241 fill: "currentColor",
1242 height: "1",
1243 rx: ".5",
1244 width: "1",
1245 x: "5",
1246 y: "1.025",
1247 }
1248rect {
1249 fill: "currentColor",
1250 height: "1",
1251 rx: ".5",
1252 width: "1",
1253 x: "3",
1254 y: "7.025",
1255 }
1256rect {
1257 fill: "currentColor",
1258 height: "1",
1259 rx: ".5",
1260 width: "1",
1261 x: "3",
1262 y: "13.025",
1263 }
1264rect {
1265 fill: "currentColor",
1266 height: "1",
1267 rx: ".5",
1268 width: "1",
1269 x: "3",
1270 y: "1.025",
1271 }
1272rect {
1273 fill: "currentColor",
1274 height: "1",
1275 rx: ".5",
1276 width: "1",
1277 x: "9",
1278 y: "7.025",
1279 }
1280rect {
1281 fill: "currentColor",
1282 height: "1",
1283 rx: ".5",
1284 width: "1",
1285 x: "9",
1286 y: "13.025",
1287 }
1288rect {
1289 fill: "currentColor",
1290 height: "1",
1291 rx: ".5",
1292 width: "1",
1293 x: "9",
1294 y: "1.025",
1295 }
1296rect {
1297 fill: "currentColor",
1298 height: "1",
1299 rx: ".5",
1300 width: "1",
1301 x: "11",
1302 y: "7.025",
1303 }
1304rect {
1305 fill: "currentColor",
1306 height: "1",
1307 rx: ".5",
1308 width: "1",
1309 x: "11",
1310 y: "13.025",
1311 }
1312rect {
1313 fill: "currentColor",
1314 height: "1",
1315 rx: ".5",
1316 width: "1",
1317 x: "11",
1318 y: "1.025",
1319 }
1320rect {
1321 fill: "currentColor",
1322 height: "1",
1323 rx: ".5",
1324 width: "1",
1325 x: "7",
1326 y: "9.025",
1327 }
1328rect {
1329 fill: "currentColor",
1330 height: "1",
1331 rx: ".5",
1332 width: "1",
1333 x: "13",
1334 y: "9.025",
1335 }
1336rect {
1337 fill: "currentColor",
1338 height: "1",
1339 rx: ".5",
1340 width: "1",
1341 x: "7",
1342 y: "11.025",
1343 }
1344rect {
1345 fill: "currentColor",
1346 height: "1",
1347 rx: ".5",
1348 width: "1",
1349 x: "13",
1350 y: "11.025",
1351 }
1352rect {
1353 fill: "currentColor",
1354 height: "1",
1355 rx: ".5",
1356 width: "1",
1357 x: "1",
1358 y: "5.025",
1359 }
1360rect {
1361 fill: "currentColor",
1362 height: "1",
1363 rx: ".5",
1364 width: "1",
1365 x: "1",
1366 y: "3.025",
1367 }
1368rect {
1369 fill: "currentColor",
1370 height: "1",
1371 rx: ".5",
1372 width: "1",
1373 x: "1",
1374 y: "7.025",
1375 }
1376rect {
1377 fill: "currentColor",
1378 height: "1",
1379 rx: ".5",
1380 width: "1",
1381 x: "1",
1382 y: "13.025",
1383 }
1384rect {
1385 fill: "currentColor",
1386 height: "1",
1387 rx: ".5",
1388 width: "1",
1389 x: "1",
1390 y: "1.025",
1391 }
1392rect {
1393 fill: "currentColor",
1394 height: "1",
1395 rx: ".5",
1396 width: "1",
1397 x: "1",
1398 y: "9.025",
1399 }
1400rect {
1401 fill: "currentColor",
1402 height: "1",
1403 rx: ".5",
1404 width: "1",
1405 x: "1",
1406 y: "11.025",
1407 })
1408 }
1409
1410 const WIDTH: Option<&'static str> = Some("15");
1411 const HEIGHT: Option<&'static str> = Some("15");
1412 const FILL: Option<&'static str> = Some("none");
1413 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
1414
1415}
1416
1417#[derive(Default, Copy, Clone, PartialEq, Eq)]
1418pub struct BorderRight;
1419
1420impl IconShape for BorderRight {
1421 fn child_elements(&self) -> Element {
1422 rsx!(path {
1423 clip_rule: "evenodd",
1424 d: "M13.25 1L13.25 14L14.75 14L14.75 1L13.25 1Z",
1425 fill: "currentColor",
1426 fill_rule: "evenodd",
1427 }
1428rect {
1429 fill: "currentColor",
1430 height: "1",
1431 rx: ".5",
1432 transform: "matrix(0 1 1 0 5 7)",
1433 width: "1",
1434 }
1435rect {
1436 fill: "currentColor",
1437 height: "1",
1438 rx: ".5",
1439 transform: "matrix(0 1 1 0 5 13)",
1440 width: "1",
1441 }
1442rect {
1443 fill: "currentColor",
1444 height: "1",
1445 rx: ".5",
1446 transform: "matrix(0 1 1 0 3 7)",
1447 width: "1",
1448 }
1449rect {
1450 fill: "currentColor",
1451 height: "1",
1452 rx: ".5",
1453 transform: "matrix(0 1 1 0 3 13)",
1454 width: "1",
1455 }
1456rect {
1457 fill: "currentColor",
1458 height: "1",
1459 rx: ".5",
1460 transform: "matrix(0 1 1 0 7 7)",
1461 width: "1",
1462 }
1463rect {
1464 fill: "currentColor",
1465 height: "1",
1466 rx: ".5",
1467 transform: "matrix(0 1 1 0 1 7)",
1468 width: "1",
1469 }
1470rect {
1471 fill: "currentColor",
1472 height: "1",
1473 rx: ".5",
1474 transform: "matrix(0 1 1 0 7 13)",
1475 width: "1",
1476 }
1477rect {
1478 fill: "currentColor",
1479 height: "1",
1480 rx: ".5",
1481 transform: "matrix(0 1 1 0 1 13)",
1482 width: "1",
1483 }
1484rect {
1485 fill: "currentColor",
1486 height: "1",
1487 rx: ".5",
1488 transform: "matrix(0 1 1 0 7 5)",
1489 width: "1",
1490 }
1491rect {
1492 fill: "currentColor",
1493 height: "1",
1494 rx: ".5",
1495 transform: "matrix(0 1 1 0 1 5)",
1496 width: "1",
1497 }
1498rect {
1499 fill: "currentColor",
1500 height: "1",
1501 rx: ".5",
1502 transform: "matrix(0 1 1 0 7 3)",
1503 width: "1",
1504 }
1505rect {
1506 fill: "currentColor",
1507 height: "1",
1508 rx: ".5",
1509 transform: "matrix(0 1 1 0 1 3)",
1510 width: "1",
1511 }
1512rect {
1513 fill: "currentColor",
1514 height: "1",
1515 rx: ".5",
1516 transform: "matrix(0 1 1 0 7 9)",
1517 width: "1",
1518 }
1519rect {
1520 fill: "currentColor",
1521 height: "1",
1522 rx: ".5",
1523 transform: "matrix(0 1 1 0 1 9)",
1524 width: "1",
1525 }
1526rect {
1527 fill: "currentColor",
1528 height: "1",
1529 rx: ".5",
1530 transform: "matrix(0 1 1 0 7 11)",
1531 width: "1",
1532 }
1533rect {
1534 fill: "currentColor",
1535 height: "1",
1536 rx: ".5",
1537 transform: "matrix(0 1 1 0 1 11)",
1538 width: "1",
1539 }
1540rect {
1541 fill: "currentColor",
1542 height: "1",
1543 rx: ".5",
1544 transform: "matrix(0 1 1 0 9 7)",
1545 width: "1",
1546 }
1547rect {
1548 fill: "currentColor",
1549 height: "1",
1550 rx: ".5",
1551 transform: "matrix(0 1 1 0 9 13)",
1552 width: "1",
1553 }
1554rect {
1555 fill: "currentColor",
1556 height: "1",
1557 rx: ".5",
1558 transform: "matrix(0 1 1 0 11 7)",
1559 width: "1",
1560 }
1561rect {
1562 fill: "currentColor",
1563 height: "1",
1564 rx: ".5",
1565 transform: "matrix(0 1 1 0 11 13)",
1566 width: "1",
1567 }
1568rect {
1569 fill: "currentColor",
1570 height: "1",
1571 rx: ".5",
1572 transform: "matrix(0 1 1 0 5 1)",
1573 width: "1",
1574 }
1575rect {
1576 fill: "currentColor",
1577 height: "1",
1578 rx: ".5",
1579 transform: "matrix(0 1 1 0 3 1)",
1580 width: "1",
1581 }
1582rect {
1583 fill: "currentColor",
1584 height: "1",
1585 rx: ".5",
1586 transform: "matrix(0 1 1 0 7 1)",
1587 width: "1",
1588 }
1589rect {
1590 fill: "currentColor",
1591 height: "1",
1592 rx: ".5",
1593 transform: "matrix(0 1 1 0 1 1)",
1594 width: "1",
1595 }
1596rect {
1597 fill: "currentColor",
1598 height: "1",
1599 rx: ".5",
1600 transform: "matrix(0 1 1 0 9 1)",
1601 width: "1",
1602 }
1603rect {
1604 fill: "currentColor",
1605 height: "1",
1606 rx: ".5",
1607 transform: "matrix(0 1 1 0 11 1)",
1608 width: "1",
1609 })
1610 }
1611
1612 const WIDTH: Option<&'static str> = Some("15");
1613 const HEIGHT: Option<&'static str> = Some("15");
1614 const FILL: Option<&'static str> = Some("none");
1615 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
1616
1617}
1618
1619#[derive(Default, Copy, Clone, PartialEq, Eq)]
1620pub struct BorderSolid;
1621
1622impl IconShape for BorderSolid {
1623 fn child_elements(&self) -> Element {
1624 rsx!(path {
1625 d: "M13.3506 7.00977C13.5786 7.05629 13.75 7.25829 13.75 7.5C13.75 7.74171 13.5786 7.94371 13.3506 7.99023L13.25 8H1.75C1.47386 8 1.25 7.77614 1.25 7.5C1.25 7.22386 1.47386 7 1.75 7H13.25L13.3506 7.00977Z",
1626 fill: "currentColor",
1627 })
1628 }
1629
1630 const WIDTH: Option<&'static str> = Some("15");
1631 const HEIGHT: Option<&'static str> = Some("15");
1632 const FILL: Option<&'static str> = Some("none");
1633 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
1634
1635}
1636
1637#[derive(Default, Copy, Clone, PartialEq, Eq)]
1638pub struct BorderSplit;
1639
1640impl IconShape for BorderSplit {
1641 fn child_elements(&self) -> Element {
1642 rsx!(rect {
1643 fill: "currentColor",
1644 height: "1",
1645 rx: ".5",
1646 width: "1",
1647 x: "7",
1648 y: "5.025",
1649 }
1650rect {
1651 fill: "currentColor",
1652 height: "1",
1653 rx: ".5",
1654 width: "1",
1655 x: "7",
1656 y: "3.025",
1657 }
1658rect {
1659 fill: "currentColor",
1660 height: "1",
1661 rx: ".5",
1662 width: "1",
1663 x: "7",
1664 y: "7.025",
1665 }
1666rect {
1667 fill: "currentColor",
1668 height: "1",
1669 rx: ".5",
1670 width: "1",
1671 x: "7",
1672 y: "13.025",
1673 }
1674rect {
1675 fill: "currentColor",
1676 height: "1",
1677 rx: ".5",
1678 width: "1",
1679 x: "7",
1680 y: "1.025",
1681 }
1682rect {
1683 fill: "currentColor",
1684 height: "1",
1685 rx: ".5",
1686 width: "1",
1687 x: "13",
1688 y: "7.025",
1689 }
1690rect {
1691 fill: "currentColor",
1692 height: "1",
1693 rx: ".5",
1694 width: "1",
1695 x: "5",
1696 y: "7.025",
1697 }
1698rect {
1699 fill: "currentColor",
1700 height: "1",
1701 rx: ".5",
1702 width: "1",
1703 x: "3",
1704 y: "7.025",
1705 }
1706rect {
1707 fill: "currentColor",
1708 height: "1",
1709 rx: ".5",
1710 width: "1",
1711 x: "9",
1712 y: "7.025",
1713 }
1714rect {
1715 fill: "currentColor",
1716 height: "1",
1717 rx: ".5",
1718 width: "1",
1719 x: "11",
1720 y: "7.025",
1721 }
1722rect {
1723 fill: "currentColor",
1724 height: "1",
1725 rx: ".5",
1726 width: "1",
1727 x: "7",
1728 y: "9.025",
1729 }
1730rect {
1731 fill: "currentColor",
1732 height: "1",
1733 rx: ".5",
1734 width: "1",
1735 x: "7",
1736 y: "11.025",
1737 }
1738rect {
1739 fill: "currentColor",
1740 height: "1",
1741 rx: ".5",
1742 width: "1",
1743 x: "1",
1744 y: "7.025",
1745 }
1746path {
1747 clip_rule: "evenodd",
1748 d: "M1 1.49994C1 1.2238 1.22386 0.999939 1.5 0.999939H6V1.99994H2V5.99994H1V1.49994ZM13 1.99994H9V0.999939H13.5C13.7761 0.999939 14 1.2238 14 1.49994V5.99994H13V1.99994ZM1 13.4999V8.99994H2V12.9999H6V13.9999H1.5C1.22386 13.9999 1 13.7761 1 13.4999ZM13 12.9999V8.99994H14V13.4999C14 13.7761 13.7761 13.9999 13.5 13.9999H9.5V12.9999H13Z",
1749 fill: "currentColor",
1750 fill_rule: "evenodd",
1751 })
1752 }
1753
1754 const WIDTH: Option<&'static str> = Some("15");
1755 const HEIGHT: Option<&'static str> = Some("15");
1756 const FILL: Option<&'static str> = Some("none");
1757 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
1758
1759}
1760
1761#[derive(Default, Copy, Clone, PartialEq, Eq)]
1762pub struct BorderStyle;
1763
1764impl IconShape for BorderStyle {
1765 fn child_elements(&self) -> Element {
1766 rsx!(path {
1767 d: "M1.5 11C1.77614 11 2 11.2239 2 11.5C2 11.7761 1.77614 12 1.5 12C1.22386 12 1 11.7761 1 11.5C1 11.2239 1.22386 11 1.5 11ZM3.5 11C3.77614 11 4 11.2239 4 11.5C4 11.7761 3.77614 12 3.5 12C3.22386 12 3 11.7761 3 11.5C3 11.2239 3.22386 11 3.5 11ZM5.5 11C5.77614 11 6 11.2239 6 11.5C6 11.7761 5.77614 12 5.5 12C5.22386 12 5 11.7761 5 11.5C5 11.2239 5.22386 11 5.5 11ZM7.5 11C7.77614 11 8 11.2239 8 11.5C8 11.7761 7.77614 12 7.5 12C7.22386 12 7 11.7761 7 11.5C7 11.2239 7.22386 11 7.5 11ZM9.5 11C9.77614 11 10 11.2239 10 11.5C10 11.7761 9.77614 12 9.5 12C9.22386 12 9 11.7761 9 11.5C9 11.2239 9.22386 11 9.5 11ZM11.5 11C11.7761 11 12 11.2239 12 11.5C12 11.7761 11.7761 12 11.5 12C11.2239 12 11 11.7761 11 11.5C11 11.2239 11.2239 11 11.5 11ZM13.5 11C13.7761 11 14 11.2239 14 11.5C14 11.7761 13.7761 12 13.5 12C13.2239 12 13 11.7761 13 11.5C13 11.2239 13.2239 11 13.5 11ZM3.5 7C3.77614 7 4 7.22386 4 7.5C4 7.77614 3.77614 8 3.5 8H1.5C1.22386 8 1 7.77614 1 7.5C1 7.22386 1.22386 7 1.5 7H3.5ZM8.5 7C8.77614 7 9 7.22386 9 7.5C9 7.77614 8.77614 8 8.5 8H6.5C6.22386 8 6 7.77614 6 7.5C6 7.22386 6.22386 7 6.5 7H8.5ZM13.5 7C13.7761 7 14 7.22386 14 7.5C14 7.77614 13.7761 8 13.5 8H11.5C11.2239 8 11 7.77614 11 7.5C11 7.22386 11.2239 7 11.5 7H13.5ZM13.5 3C13.7761 3 14 3.22386 14 3.5C14 3.77614 13.7761 4 13.5 4H1.5C1.22386 4 1 3.77614 1 3.5C1 3.22386 1.22386 3 1.5 3H13.5Z",
1768 fill: "currentColor",
1769 })
1770 }
1771
1772 const WIDTH: Option<&'static str> = Some("15");
1773 const HEIGHT: Option<&'static str> = Some("15");
1774 const FILL: Option<&'static str> = Some("none");
1775 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
1776
1777}
1778
1779#[derive(Default, Copy, Clone, PartialEq, Eq)]
1780pub struct BorderTop;
1781
1782impl IconShape for BorderTop {
1783 fn child_elements(&self) -> Element {
1784 rsx!(path {
1785 clip_rule: "evenodd",
1786 d: "M14 1.75L1 1.75L1 0.249999L14 0.25L14 1.75Z",
1787 fill: "currentColor",
1788 fill_rule: "evenodd",
1789 }
1790rect {
1791 fill: "currentColor",
1792 height: "1",
1793 rx: ".5",
1794 transform: "rotate(-180 8 10)",
1795 width: "1",
1796 x: "8",
1797 y: "10",
1798 }
1799rect {
1800 fill: "currentColor",
1801 height: "1",
1802 rx: ".5",
1803 transform: "rotate(-180 2 10)",
1804 width: "1",
1805 x: "2",
1806 y: "10",
1807 }
1808rect {
1809 fill: "currentColor",
1810 height: "1",
1811 rx: ".5",
1812 transform: "rotate(-180 8 12)",
1813 width: "1",
1814 x: "8",
1815 y: "12",
1816 }
1817rect {
1818 fill: "currentColor",
1819 height: "1",
1820 rx: ".5",
1821 transform: "rotate(-180 2 12)",
1822 width: "1",
1823 x: "2",
1824 y: "12",
1825 }
1826rect {
1827 fill: "currentColor",
1828 height: "1",
1829 rx: ".5",
1830 transform: "rotate(-180 8 8)",
1831 width: "1",
1832 x: "8",
1833 y: "8",
1834 }
1835rect {
1836 fill: "currentColor",
1837 height: "1",
1838 rx: ".5",
1839 transform: "rotate(-180 8 14)",
1840 width: "1",
1841 x: "8",
1842 y: "14",
1843 }
1844rect {
1845 fill: "currentColor",
1846 height: "1",
1847 rx: ".5",
1848 transform: "rotate(-180 2 8)",
1849 width: "1",
1850 x: "2",
1851 y: "8",
1852 }
1853rect {
1854 fill: "currentColor",
1855 height: "1",
1856 rx: ".5",
1857 transform: "rotate(-180 2 14)",
1858 width: "1",
1859 x: "2",
1860 y: "14",
1861 }
1862rect {
1863 fill: "currentColor",
1864 height: "1",
1865 rx: ".5",
1866 transform: "rotate(-180 10 8)",
1867 width: "1",
1868 x: "10",
1869 y: "8",
1870 }
1871rect {
1872 fill: "currentColor",
1873 height: "1",
1874 rx: ".5",
1875 transform: "rotate(-180 10 14)",
1876 width: "1",
1877 x: "10",
1878 y: "14",
1879 }
1880rect {
1881 fill: "currentColor",
1882 height: "1",
1883 rx: ".5",
1884 transform: "rotate(-180 12 8)",
1885 width: "1",
1886 x: "12",
1887 y: "8",
1888 }
1889rect {
1890 fill: "currentColor",
1891 height: "1",
1892 rx: ".5",
1893 transform: "rotate(-180 12 14)",
1894 width: "1",
1895 x: "12",
1896 y: "14",
1897 }
1898rect {
1899 fill: "currentColor",
1900 height: "1",
1901 rx: ".5",
1902 transform: "rotate(-180 6 8)",
1903 width: "1",
1904 x: "6",
1905 y: "8",
1906 }
1907rect {
1908 fill: "currentColor",
1909 height: "1",
1910 rx: ".5",
1911 transform: "rotate(-180 6 14)",
1912 width: "1",
1913 x: "6",
1914 y: "14",
1915 }
1916rect {
1917 fill: "currentColor",
1918 height: "1",
1919 rx: ".5",
1920 transform: "rotate(-180 4 8)",
1921 width: "1",
1922 x: "4",
1923 y: "8",
1924 }
1925rect {
1926 fill: "currentColor",
1927 height: "1",
1928 rx: ".5",
1929 transform: "rotate(-180 4 14)",
1930 width: "1",
1931 x: "4",
1932 y: "14",
1933 }
1934rect {
1935 fill: "currentColor",
1936 height: "1",
1937 rx: ".5",
1938 transform: "rotate(-180 8 6)",
1939 width: "1",
1940 x: "8",
1941 y: "6",
1942 }
1943rect {
1944 fill: "currentColor",
1945 height: "1",
1946 rx: ".5",
1947 transform: "rotate(-180 2 6)",
1948 width: "1",
1949 x: "2",
1950 y: "6",
1951 }
1952rect {
1953 fill: "currentColor",
1954 height: "1",
1955 rx: ".5",
1956 transform: "rotate(-180 8 4)",
1957 width: "1",
1958 x: "8",
1959 y: "4",
1960 }
1961rect {
1962 fill: "currentColor",
1963 height: "1",
1964 rx: ".5",
1965 transform: "rotate(-180 2 4)",
1966 width: "1",
1967 x: "2",
1968 y: "4",
1969 }
1970rect {
1971 fill: "currentColor",
1972 height: "1",
1973 rx: ".5",
1974 transform: "rotate(-180 14 10)",
1975 width: "1",
1976 x: "14",
1977 y: "10",
1978 }
1979rect {
1980 fill: "currentColor",
1981 height: "1",
1982 rx: ".5",
1983 transform: "rotate(-180 14 12)",
1984 width: "1",
1985 x: "14",
1986 y: "12",
1987 }
1988rect {
1989 fill: "currentColor",
1990 height: "1",
1991 rx: ".5",
1992 transform: "rotate(-180 14 8)",
1993 width: "1",
1994 x: "14",
1995 y: "8",
1996 }
1997rect {
1998 fill: "currentColor",
1999 height: "1",
2000 rx: ".5",
2001 transform: "rotate(-180 14 14)",
2002 width: "1",
2003 x: "14",
2004 y: "14",
2005 }
2006rect {
2007 fill: "currentColor",
2008 height: "1",
2009 rx: ".5",
2010 transform: "rotate(-180 14 6)",
2011 width: "1",
2012 x: "14",
2013 y: "6",
2014 }
2015rect {
2016 fill: "currentColor",
2017 height: "1",
2018 rx: ".5",
2019 transform: "rotate(-180 14 4)",
2020 width: "1",
2021 x: "14",
2022 y: "4",
2023 })
2024 }
2025
2026 const WIDTH: Option<&'static str> = Some("15");
2027 const HEIGHT: Option<&'static str> = Some("15");
2028 const FILL: Option<&'static str> = Some("none");
2029 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2030
2031}
2032
2033#[derive(Default, Copy, Clone, PartialEq, Eq)]
2034pub struct BorderWidth;
2035
2036impl IconShape for BorderWidth {
2037 fn child_elements(&self) -> Element {
2038 rsx!(path {
2039 d: "M14 12.75H1V10.25H14V12.75ZM14 8H1V6H14V8ZM14 4H1V3H14V4Z",
2040 fill: "currentColor",
2041 })
2042 }
2043
2044 const WIDTH: Option<&'static str> = Some("15");
2045 const HEIGHT: Option<&'static str> = Some("15");
2046 const FILL: Option<&'static str> = Some("none");
2047 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2048
2049}
2050
2051#[derive(Default, Copy, Clone, PartialEq, Eq)]
2052pub struct BoxModel;
2053
2054impl IconShape for BoxModel {
2055 fn child_elements(&self) -> Element {
2056 rsx!(path {
2057 d: "M13 1C13.5523 1 14 1.44772 14 2V13C14 13.5523 13.5523 14 13 14H2C1.44772 14 1 13.5523 1 13V2C1 1.44772 1.44772 1 2 1H13ZM2 13H13V2H2V13ZM10.6006 4.00977C10.8285 4.0563 11 4.25829 11 4.5V10.5C11 10.7761 10.7761 11 10.5 11H4.5C4.22386 11 4.00001 10.7761 4 10.5V4.5L4.00977 4.39941C4.05629 4.17145 4.25829 4 4.5 4H10.5L10.6006 4.00977ZM5 10H10V5H5V10Z",
2058 fill: "currentColor",
2059 })
2060 }
2061
2062 const WIDTH: Option<&'static str> = Some("15");
2063 const HEIGHT: Option<&'static str> = Some("15");
2064 const FILL: Option<&'static str> = Some("none");
2065 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2066
2067}
2068
2069#[derive(Default, Copy, Clone, PartialEq, Eq)]
2070pub struct Button;
2071
2072impl IconShape for Button {
2073 fn child_elements(&self) -> Element {
2074 rsx!(path {
2075 d: "M13.2041 4.01074C14.2128 4.113 15 4.96435 15 6V9L14.9893 9.2041C14.8938 10.1457 14.1457 10.8938 13.2041 10.9893L13 11H2L1.7959 10.9893C0.854346 10.8938 0.1062 10.1457 0.0107422 9.2041L0 9V6C0 4.96435 0.787223 4.113 1.7959 4.01074L2 4H13L13.2041 4.01074ZM2 5C1.48232 5 1.05621 5.39333 1.00488 5.89746L1 6V9C1 9.55228 1.44772 10 2 10H13C13.5523 10 14 9.55228 14 9V6C14 5.48232 13.6067 5.05621 13.1025 5.00488L13 5H2ZM4.5 6.75C4.91421 6.75 5.25 7.08579 5.25 7.5C5.25 7.91421 4.91421 8.25 4.5 8.25C4.08579 8.25 3.75 7.91421 3.75 7.5C3.75 7.08579 4.08579 6.75 4.5 6.75ZM7.5 6.75C7.91421 6.75 8.25 7.08579 8.25 7.5C8.25 7.91421 7.91421 8.25 7.5 8.25C7.08579 8.25 6.75 7.91421 6.75 7.5C6.75 7.08579 7.08579 6.75 7.5 6.75ZM10.5 6.75C10.9142 6.75 11.25 7.08579 11.25 7.5C11.25 7.91421 10.9142 8.25 10.5 8.25C10.0858 8.25 9.75 7.91421 9.75 7.5C9.75 7.08579 10.0858 6.75 10.5 6.75Z",
2076 fill: "currentColor",
2077 })
2078 }
2079
2080 const WIDTH: Option<&'static str> = Some("15");
2081 const HEIGHT: Option<&'static str> = Some("15");
2082 const FILL: Option<&'static str> = Some("none");
2083 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2084
2085}
2086
2087#[derive(Default, Copy, Clone, PartialEq, Eq)]
2088pub struct Calendar;
2089
2090impl IconShape for Calendar {
2091 fn child_elements(&self) -> Element {
2092 rsx!(path {
2093 d: "M10.5 1C10.7761 1 11 1.22386 11 1.5V2H12.5C13.3284 2 14 2.67157 14 3.5V12.5C14 13.3284 13.3284 14 12.5 14H2.5C1.67157 14 1 13.3284 1 12.5V3.5C1 2.67157 1.67157 2 2.5 2H4V1.5C4 1.22386 4.22386 1 4.5 1C4.77614 1 5 1.22386 5 1.5V2H10V1.5C10 1.22386 10.2239 1 10.5 1ZM2 12.5L2.00977 12.6006C2.04966 12.7961 2.20392 12.9503 2.39941 12.9902L2.5 13H12.5L12.6006 12.9902C12.7961 12.9503 12.9503 12.7961 12.9902 12.6006L13 12.5V6H2V12.5ZM3.5 11C3.77614 11 4 11.2239 4 11.5C4 11.7761 3.77614 12 3.5 12C3.22386 12 3 11.7761 3 11.5C3 11.2239 3.22386 11 3.5 11ZM5.5 11C5.77614 11 6 11.2239 6 11.5C6 11.7761 5.77614 12 5.5 12C5.22386 12 5 11.7761 5 11.5C5 11.2239 5.22386 11 5.5 11ZM7.5 11C7.77614 11 8 11.2239 8 11.5C8 11.7761 7.77614 12 7.5 12C7.22386 12 7 11.7761 7 11.5C7 11.2239 7.22386 11 7.5 11ZM9.5 11C9.77614 11 10 11.2239 10 11.5C10 11.7761 9.77614 12 9.5 12C9.22386 12 9 11.7761 9 11.5C9 11.2239 9.22386 11 9.5 11ZM3.5 9C3.77614 9 4 9.22386 4 9.5C4 9.77614 3.77614 10 3.5 10C3.22386 10 3 9.77614 3 9.5C3 9.22386 3.22386 9 3.5 9ZM5.5 9C5.77614 9 6 9.22386 6 9.5C6 9.77614 5.77614 10 5.5 10C5.22386 10 5 9.77614 5 9.5C5 9.22386 5.22386 9 5.5 9ZM7.5 9C7.77614 9 8 9.22386 8 9.5C8 9.77614 7.77614 10 7.5 10C7.22386 10 7 9.77614 7 9.5C7 9.22386 7.22386 9 7.5 9ZM9.5 9C9.77614 9 10 9.22386 10 9.5C10 9.77614 9.77614 10 9.5 10C9.22386 10 9 9.77614 9 9.5C9 9.22386 9.22386 9 9.5 9ZM11.5 9C11.7761 9 12 9.22386 12 9.5C12 9.77614 11.7761 10 11.5 10C11.2239 10 11 9.77614 11 9.5C11 9.22386 11.2239 9 11.5 9ZM7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5C7 7.22386 7.22386 7 7.5 7ZM9.5 7C9.77614 7 10 7.22386 10 7.5C10 7.77614 9.77614 8 9.5 8C9.22386 8 9 7.77614 9 7.5C9 7.22386 9.22386 7 9.5 7ZM11.5 7C11.7761 7 12 7.22386 12 7.5C12 7.77614 11.7761 8 11.5 8C11.2239 8 11 7.77614 11 7.5C11 7.22386 11.2239 7 11.5 7ZM2.39941 3.00977C2.17145 3.05629 2 3.25829 2 3.5V5H13V3.5C13 3.25829 12.8286 3.05629 12.6006 3.00977L12.5 3H11V3.5C11 3.77614 10.7761 4 10.5 4C10.2239 4 10 3.77614 10 3.5V3H5V3.5C5 3.77614 4.77614 4 4.5 4C4.22386 4 4 3.77614 4 3.5V3H2.5L2.39941 3.00977Z",
2094 fill: "currentColor",
2095 })
2096 }
2097
2098 const WIDTH: Option<&'static str> = Some("15");
2099 const HEIGHT: Option<&'static str> = Some("15");
2100 const FILL: Option<&'static str> = Some("none");
2101 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2102
2103}
2104
2105#[derive(Default, Copy, Clone, PartialEq, Eq)]
2106pub struct Camera;
2107
2108impl IconShape for Camera {
2109 fn child_elements(&self) -> Element {
2110 rsx!(path {
2111 d: "M13 2C14.1046 2 15 2.89543 15 4V11C15 12.1046 14.1046 13 13 13H2C0.964349 13 0.113005 12.2128 0.0107422 11.2041L0 11V4C0 2.89543 0.895431 2 2 2H13ZM2 3C1.44772 3 1 3.44772 1 4V11L1.00488 11.1025C1.05621 11.6067 1.48232 12 2 12H13C13.5523 12 14 11.5523 14 11V4C14 3.44772 13.5523 3 13 3H2ZM9.68555 3.98828C11.588 4.08486 13.1013 5.65763 13.1016 7.58398L13.0967 7.76953C13.0002 9.67206 11.4264 11.1853 9.5 11.1855L9.31543 11.1807C7.47401 11.0875 5.99766 9.61091 5.9043 7.76953L5.89941 7.58398C5.89967 5.59555 7.51156 3.98365 9.5 3.9834L9.68555 3.98828ZM9.5 4.9834C8.06385 4.98365 6.89967 6.14783 6.89941 7.58398C6.89955 9.02024 8.06377 10.1853 9.5 10.1855C10.9362 10.1853 12.1014 9.02023 12.1016 7.58398C12.1013 6.14784 10.9361 4.98366 9.5 4.9834ZM4.75 4C4.88807 4 5 4.11193 5 4.25V5.75488C4.99982 5.8928 4.88796 6.00488 4.75 6.00488H2.25C2.11204 6.00488 2.00018 5.8928 2 5.75488V4.25C2 4.11193 2.11193 4 2.25 4H4.75Z",
2112 fill: "currentColor",
2113 })
2114 }
2115
2116 const WIDTH: Option<&'static str> = Some("15");
2117 const HEIGHT: Option<&'static str> = Some("15");
2118 const FILL: Option<&'static str> = Some("none");
2119 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2120
2121}
2122
2123#[derive(Default, Copy, Clone, PartialEq, Eq)]
2124pub struct CardStack;
2125
2126impl IconShape for CardStack {
2127 fn child_elements(&self) -> Element {
2128 rsx!(path {
2129 d: "M12.5 2C13.3284 2 14 2.67157 14 3.5V9.5C14 10.1528 13.5822 10.706 13 10.9121V11.5C13 12.3284 12.3284 13 11.5 13H3.5C2.67157 13 2 12.3284 2 11.5V10.9121C1.41782 10.706 1 10.1528 1 9.5V3.5C1 2.67157 1.67157 2 2.5 2H12.5ZM3 11V11.5C3 11.7761 3.22386 12 3.5 12H11.5C11.7761 12 12 11.7761 12 11.5V11H3ZM2.5 3C2.22386 3 2 3.22386 2 3.5V9.5C2 9.77614 2.22386 10 2.5 10H12.5C12.7761 10 13 9.77614 13 9.5V3.5C13 3.22386 12.7761 3 12.5 3H2.5Z",
2130 fill: "currentColor",
2131 })
2132 }
2133
2134 const WIDTH: Option<&'static str> = Some("15");
2135 const HEIGHT: Option<&'static str> = Some("15");
2136 const FILL: Option<&'static str> = Some("none");
2137 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2138
2139}
2140
2141#[derive(Default, Copy, Clone, PartialEq, Eq)]
2142pub struct CardStackMinus;
2143
2144impl IconShape for CardStackMinus {
2145 fn child_elements(&self) -> Element {
2146 rsx!(path {
2147 d: "M12.5 2C13.3284 2 14 2.67157 14 3.5V9.5C14 10.1528 13.5822 10.706 13 10.9121V11.5C13 12.3284 12.3284 13 11.5 13H3.5C2.67157 13 2 12.3284 2 11.5V10.9121C1.41782 10.706 1 10.1528 1 9.5V3.5C1 2.67157 1.67157 2 2.5 2H12.5ZM3 11.5C3 11.7761 3.22386 12 3.5 12H11.5C11.7761 12 12 11.7761 12 11.5V11H3V11.5ZM2.5 3C2.22386 3 2 3.22386 2 3.5V9.5C2 9.77614 2.22386 10 2.5 10H12.5C12.7761 10 13 9.77614 13 9.5V3.5C13 3.22386 12.7761 3 12.5 3H2.5ZM9.5 6C9.77614 6 10 6.22386 10 6.5C10 6.77614 9.77614 7 9.5 7H5.5C5.22386 7 5 6.77614 5 6.5C5 6.22386 5.22386 6 5.5 6H9.5Z",
2148 fill: "currentColor",
2149 })
2150 }
2151
2152 const WIDTH: Option<&'static str> = Some("15");
2153 const HEIGHT: Option<&'static str> = Some("15");
2154 const FILL: Option<&'static str> = Some("none");
2155 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2156
2157}
2158
2159#[derive(Default, Copy, Clone, PartialEq, Eq)]
2160pub struct CardStackPlus;
2161
2162impl IconShape for CardStackPlus {
2163 fn child_elements(&self) -> Element {
2164 rsx!(path {
2165 d: "M12.5 2C13.3284 2 14 2.67157 14 3.5V9.5C14 10.1528 13.5822 10.706 13 10.9121V11.5C13 12.3284 12.3284 13 11.5 13H3.5C2.67157 13 2 12.3284 2 11.5V10.9121C1.41782 10.706 1 10.1528 1 9.5V3.5C1 2.67157 1.67157 2 2.5 2H12.5ZM3 11.5C3 11.7761 3.22386 12 3.5 12H11.5C11.7761 12 12 11.7761 12 11.5V11H3V11.5ZM2.5 3C2.22386 3 2 3.22386 2 3.5V9.5C2 9.77614 2.22386 10 2.5 10H12.5C12.7761 10 13 9.77614 13 9.5V3.5C13 3.22386 12.7761 3 12.5 3H2.5ZM7.5 4C7.77614 4 8 4.22386 8 4.5V6H9.5C9.77614 6 10 6.22386 10 6.5C10 6.77614 9.77614 7 9.5 7H8V8.5C8 8.77614 7.77614 9 7.5 9C7.22386 9 7 8.77614 7 8.5V7H5.5C5.22386 7 5 6.77614 5 6.5C5 6.22386 5.22386 6 5.5 6H7V4.5C7 4.22386 7.22386 4 7.5 4Z",
2166 fill: "currentColor",
2167 })
2168 }
2169
2170 const WIDTH: Option<&'static str> = Some("15");
2171 const HEIGHT: Option<&'static str> = Some("15");
2172 const FILL: Option<&'static str> = Some("none");
2173 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2174
2175}
2176
2177#[derive(Default, Copy, Clone, PartialEq, Eq)]
2178pub struct CaretDown;
2179
2180impl IconShape for CaretDown {
2181 fn child_elements(&self) -> Element {
2182 rsx!(path {
2183 d: "M7.50022 9.95001C7.6195 9.94996 7.73423 9.90252 7.81858 9.81818L10.8186 6.81818C10.9941 6.64242 10.9942 6.35713 10.8186 6.18146C10.6429 6.00579 10.3576 6.00592 10.1819 6.18146L7.50022 8.8631L4.81858 6.18146L4.74827 6.12384C4.57365 6.00838 4.33571 6.02779 4.18186 6.18146C4.02803 6.33529 4.00876 6.57318 4.12424 6.74786L4.18186 6.81818L7.18186 9.81818C7.26625 9.90257 7.38087 9.95001 7.50022 9.95001Z",
2184 fill: "currentColor",
2185 })
2186 }
2187
2188 const WIDTH: Option<&'static str> = Some("15");
2189 const HEIGHT: Option<&'static str> = Some("15");
2190 const FILL: Option<&'static str> = Some("none");
2191 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2192
2193}
2194
2195#[derive(Default, Copy, Clone, PartialEq, Eq)]
2196pub struct CaretLeft;
2197
2198impl IconShape for CaretLeft {
2199 fn child_elements(&self) -> Element {
2200 rsx!(path {
2201 d: "M5.04988 7.50012C5.04994 7.6194 5.09737 7.73413 5.18172 7.81848L8.18172 10.8185L8.25203 10.8761C8.4267 10.9914 8.66466 10.9723 8.81844 10.8185C8.97222 10.6647 8.99141 10.4267 8.87606 10.2521L8.81844 10.1818L6.1368 7.50012L8.81844 4.81848C8.99411 4.64281 8.99398 4.35751 8.81844 4.18176C8.6427 4.00602 8.35746 4.00602 8.18172 4.18176L5.18172 7.18176C5.09733 7.26615 5.04988 7.38077 5.04988 7.50012Z",
2202 fill: "currentColor",
2203 })
2204 }
2205
2206 const WIDTH: Option<&'static str> = Some("15");
2207 const HEIGHT: Option<&'static str> = Some("15");
2208 const FILL: Option<&'static str> = Some("none");
2209 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2210
2211}
2212
2213#[derive(Default, Copy, Clone, PartialEq, Eq)]
2214pub struct CaretRight;
2215
2216impl IconShape for CaretRight {
2217 fn child_elements(&self) -> Element {
2218 rsx!(path {
2219 d: "M9.95012 7.50023C9.95007 7.61951 9.90263 7.73425 9.81828 7.81859L6.81828 10.8186C6.64253 10.9941 6.35724 10.9943 6.18156 10.8186C6.00589 10.6429 6.00602 10.3576 6.18156 10.1819L8.8632 7.50023L6.18156 4.81859L6.12395 4.74828C6.00848 4.57366 6.0279 4.33572 6.18156 4.18188C6.33539 4.02805 6.57328 4.00878 6.74797 4.12426L6.81828 4.18188L9.81828 7.18188C9.90267 7.26627 9.95012 7.38089 9.95012 7.50023Z",
2220 fill: "currentColor",
2221 })
2222 }
2223
2224 const WIDTH: Option<&'static str> = Some("15");
2225 const HEIGHT: Option<&'static str> = Some("15");
2226 const FILL: Option<&'static str> = Some("none");
2227 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2228
2229}
2230
2231#[derive(Default, Copy, Clone, PartialEq, Eq)]
2232pub struct CaretSort;
2233
2234impl IconShape for CaretSort {
2235 fn child_elements(&self) -> Element {
2236 rsx!(path {
2237 d: "M4.93186 8.93182C5.10759 8.75609 5.39284 8.75609 5.56858 8.93182L7.50022 10.8635L9.43186 8.93182L9.50217 8.87421C9.67686 8.75873 9.91475 8.77799 10.0686 8.93182C10.2222 9.08567 10.2417 9.32361 10.1262 9.49823L10.0686 9.56854L7.81858 11.8185L7.74826 11.8762C7.57364 11.9916 7.33571 11.9722 7.18186 11.8185L4.93186 9.56854C4.75612 9.39281 4.75612 9.10756 4.93186 8.93182ZM7.50022 3.04999C7.61949 3.05004 7.73423 3.09748 7.81858 3.18182L10.0686 5.43182C10.2441 5.60758 10.2442 5.89287 10.0686 6.06854C9.8929 6.24421 9.60761 6.24408 9.43186 6.06854L7.50022 4.1369L5.56858 6.06854L5.49826 6.12616C5.32364 6.24162 5.08571 6.22221 4.93186 6.06854C4.77803 5.91471 4.75876 5.67682 4.87424 5.50214L4.93186 5.43182L7.18186 3.18182C7.26625 3.09743 7.38087 3.04999 7.50022 3.04999Z",
2238 fill: "currentColor",
2239 })
2240 }
2241
2242 const WIDTH: Option<&'static str> = Some("15");
2243 const HEIGHT: Option<&'static str> = Some("15");
2244 const FILL: Option<&'static str> = Some("none");
2245 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2246
2247}
2248
2249#[derive(Default, Copy, Clone, PartialEq, Eq)]
2250pub struct CaretUp;
2251
2252impl IconShape for CaretUp {
2253 fn child_elements(&self) -> Element {
2254 rsx!(path {
2255 d: "M7.50022 5.04999C7.6195 5.05004 7.73423 5.09748 7.81858 5.18182L10.8186 8.18182C10.9941 8.35758 10.9942 8.64287 10.8186 8.81854C10.6429 8.99421 10.3576 8.99408 10.1819 8.81854L7.50022 6.1369L4.81858 8.81854L4.74827 8.87616C4.57365 8.99162 4.33571 8.97221 4.18186 8.81854C4.02803 8.66471 4.00876 8.42682 4.12424 8.25214L4.18186 8.18182L7.18186 5.18182C7.26625 5.09743 7.38087 5.04999 7.50022 5.04999Z",
2256 fill: "currentColor",
2257 })
2258 }
2259
2260 const WIDTH: Option<&'static str> = Some("15");
2261 const HEIGHT: Option<&'static str> = Some("15");
2262 const FILL: Option<&'static str> = Some("none");
2263 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2264
2265}
2266
2267#[derive(Default, Copy, Clone, PartialEq, Eq)]
2268pub struct ChatBubble;
2269
2270impl IconShape for ChatBubble {
2271 fn child_elements(&self) -> Element {
2272 rsx!(path {
2273 d: "M12.7559 2.0127C14.0164 2.14082 15 3.20566 15 4.5V9.5C15 10.7943 14.0164 11.8592 12.7559 11.9873L12.5 12H11V14.5C11 14.7022 10.8782 14.8845 10.6914 14.9619C10.5046 15.0393 10.2895 14.9965 10.1465 14.8535L7.29297 12H2.5C1.11929 12 0 10.8807 0 9.5V4.5C1.54621e-05 3.11931 1.11929 2 2.5 2H12.5L12.7559 2.0127ZM2.5 3C1.67159 3 1.00001 3.67158 1 4.5V9.5C1 10.3284 1.67157 11 2.5 11H7.5L7.59766 11.0098C7.69389 11.0289 7.78311 11.0761 7.85352 11.1465L10 13.293V11.5C10 11.2239 10.2239 11 10.5 11H12.5L12.6533 10.9922C13.4097 10.9154 14 10.2767 14 9.5V4.5L13.9922 4.34668C13.9205 3.64069 13.3593 3.07949 12.6533 3.00781L12.5 3H2.5Z",
2274 fill: "currentColor",
2275 })
2276 }
2277
2278 const WIDTH: Option<&'static str> = Some("15");
2279 const HEIGHT: Option<&'static str> = Some("15");
2280 const FILL: Option<&'static str> = Some("none");
2281 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2282
2283}
2284
2285#[derive(Default, Copy, Clone, PartialEq, Eq)]
2286pub struct Check;
2287
2288impl IconShape for Check {
2289 fn child_elements(&self) -> Element {
2290 rsx!(path {
2291 d: "M10.6015 3.90815C10.7903 3.61941 11.1779 3.53792 11.4667 3.72651C11.7555 3.91533 11.837 4.30288 11.6484 4.59175L7.39837 11.0917C7.29822 11.2449 7.13558 11.3469 6.95404 11.3701C6.77251 11.3932 6.58945 11.3359 6.45404 11.2128L3.70404 8.71284L3.62005 8.61811C3.44857 8.38342 3.4589 8.05252 3.66205 7.82905C3.86511 7.60576 4.19344 7.56371 4.4433 7.71186L4.54584 7.78706L6.75287 9.79292L10.6015 3.90815Z",
2292 fill: "currentColor",
2293 })
2294 }
2295
2296 const WIDTH: Option<&'static str> = Some("15");
2297 const HEIGHT: Option<&'static str> = Some("15");
2298 const FILL: Option<&'static str> = Some("none");
2299 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2300
2301}
2302
2303#[derive(Default, Copy, Clone, PartialEq, Eq)]
2304pub struct CheckCircled;
2305
2306impl IconShape for CheckCircled {
2307 fn child_elements(&self) -> Element {
2308 rsx!(path {
2309 d: "M7.49915 0.877045C11.1566 0.877045 14.1218 3.84178 14.1222 7.49911C14.1222 11.1568 11.1568 14.1222 7.49915 14.1222C3.84181 14.1218 0.877075 11.1565 0.877075 7.49911C0.877486 3.84203 3.84206 0.877456 7.49915 0.877045ZM7.49915 1.82626C4.36673 1.82667 1.8267 4.3667 1.82629 7.49911C1.82629 10.6319 4.36648 13.1716 7.49915 13.172C10.6321 13.172 13.172 10.6321 13.172 7.49911C13.1716 4.36645 10.6319 1.82626 7.49915 1.82626ZM9.34094 4.96201C9.49988 4.73626 9.81241 4.68202 10.0382 4.84091C10.2639 4.99988 10.3182 5.31242 10.1593 5.53818L6.99231 10.0382C6.90692 10.1594 6.7719 10.236 6.62415 10.2481C6.47636 10.2602 6.33063 10.2064 6.22668 10.1007L4.64368 8.4874L5.00012 8.13779L5.35657 7.7872L6.51965 8.97079L9.34094 4.96201ZM4.64954 7.78036C4.84653 7.58696 5.16309 7.5903 5.35657 7.7872L4.64368 8.4874C4.45023 8.29035 4.4525 7.97382 4.64954 7.78036Z",
2310 fill: "currentColor",
2311 })
2312 }
2313
2314 const WIDTH: Option<&'static str> = Some("15");
2315 const HEIGHT: Option<&'static str> = Some("15");
2316 const FILL: Option<&'static str> = Some("none");
2317 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2318
2319}
2320
2321#[derive(Default, Copy, Clone, PartialEq, Eq)]
2322pub struct Checkbox;
2323
2324impl IconShape for Checkbox {
2325 fn child_elements(&self) -> Element {
2326 rsx!(path {
2327 d: "M12.1025 2.00488C12.6067 2.05621 13 2.48232 13 3V12L12.9951 12.1025C12.9472 12.573 12.573 12.9472 12.1025 12.9951L12 13H3L2.89746 12.9951C2.42703 12.9472 2.05278 12.573 2.00488 12.1025L2 12V3C2 2.48232 2.39333 2.05621 2.89746 2.00488L3 2H12L12.1025 2.00488ZM3 12H12V3H3V12ZM9.52539 4.94531C9.6817 4.71784 9.99311 4.66021 10.2207 4.81641C10.448 4.97276 10.5058 5.28418 10.3496 5.51172L7.09082 10.2607C7.00213 10.3898 6.8576 10.4704 6.70117 10.4775C6.54468 10.4847 6.39306 10.4174 6.29297 10.2969L4.42773 8.04785L4.37109 7.96387C4.2615 7.75883 4.30741 7.49807 4.49316 7.34375C4.67904 7.18956 4.94366 7.19251 5.125 7.33789L5.19727 7.40918L6.63965 9.14746L9.52539 4.94531Z",
2328 fill: "currentColor",
2329 })
2330 }
2331
2332 const WIDTH: Option<&'static str> = Some("15");
2333 const HEIGHT: Option<&'static str> = Some("15");
2334 const FILL: Option<&'static str> = Some("none");
2335 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2336
2337}
2338
2339#[derive(Default, Copy, Clone, PartialEq, Eq)]
2340pub struct ChevronDown;
2341
2342impl IconShape for ChevronDown {
2343 fn child_elements(&self) -> Element {
2344 rsx!(path {
2345 d: "M11.1581 6.13499C11.3595 5.94644 11.6763 5.95708 11.8651 6.15843C12.0536 6.3599 12.043 6.67669 11.8416 6.86546L7.84165 10.6155C7.64941 10.7954 7.35029 10.7954 7.15805 10.6155L3.15805 6.86546L3.09165 6.78831C2.95746 6.59859 2.96967 6.33468 3.13461 6.15843C3.29985 5.98217 3.56347 5.95169 3.76157 6.07347L3.84165 6.13499L7.49985 9.5637L11.1581 6.13499Z",
2346 fill: "currentColor",
2347 })
2348 }
2349
2350 const WIDTH: Option<&'static str> = Some("15");
2351 const HEIGHT: Option<&'static str> = Some("15");
2352 const FILL: Option<&'static str> = Some("none");
2353 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2354
2355}
2356
2357#[derive(Default, Copy, Clone, PartialEq, Eq)]
2358pub struct ChevronLeft;
2359
2360impl IconShape for ChevronLeft {
2361 fn child_elements(&self) -> Element {
2362 rsx!(path {
2363 d: "M8.21192 3.09155C8.40164 2.95736 8.66555 2.96958 8.8418 3.13452C9.01806 3.29976 9.04853 3.56338 8.92676 3.76148L8.86524 3.84155L5.43555 7.49976L8.86524 11.158L8.92676 11.238C9.04853 11.4361 9.01806 11.6998 8.8418 11.865C8.66555 12.0299 8.40164 12.0422 8.21192 11.908L8.13477 11.8416L4.38477 7.84155C4.20487 7.64932 4.20487 7.35019 4.38477 7.15796L8.13477 3.15796L8.21192 3.09155Z",
2364 fill: "currentColor",
2365 })
2366 }
2367
2368 const WIDTH: Option<&'static str> = Some("15");
2369 const HEIGHT: Option<&'static str> = Some("15");
2370 const FILL: Option<&'static str> = Some("none");
2371 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2372
2373}
2374
2375#[derive(Default, Copy, Clone, PartialEq, Eq)]
2376pub struct ChevronRight;
2377
2378impl IconShape for ChevronRight {
2379 fn child_elements(&self) -> Element {
2380 rsx!(path {
2381 d: "M6.15879 11.8651C6.36026 12.0536 6.67706 12.043 6.86582 11.8416L10.6158 7.84162C10.7957 7.64939 10.7957 7.35026 10.6158 7.15803L6.86582 3.15803L6.78868 3.09162C6.59895 2.95743 6.33504 2.96965 6.15879 3.13459C5.98254 3.29983 5.95206 3.56345 6.07383 3.76155L6.13535 3.84162L9.56407 7.49983L6.13535 11.158C5.94681 11.3595 5.95745 11.6763 6.15879 11.8651Z",
2382 fill: "currentColor",
2383 })
2384 }
2385
2386 const WIDTH: Option<&'static str> = Some("15");
2387 const HEIGHT: Option<&'static str> = Some("15");
2388 const FILL: Option<&'static str> = Some("none");
2389 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2390
2391}
2392
2393#[derive(Default, Copy, Clone, PartialEq, Eq)]
2394pub struct ChevronUp;
2395
2396impl IconShape for ChevronUp {
2397 fn child_elements(&self) -> Element {
2398 rsx!(path {
2399 d: "M11.1581 8.86501C11.3595 9.05356 11.6763 9.04292 11.8651 8.84157C12.0536 8.6401 12.043 8.32331 11.8416 8.13454L7.84165 4.38454C7.64941 4.20464 7.35029 4.20464 7.15805 4.38454L3.15805 8.13454L3.09165 8.21169C2.95746 8.40141 2.96967 8.66532 3.13461 8.84157C3.29985 9.01783 3.56347 9.04831 3.76157 8.92653L3.84165 8.86501L7.49985 5.4363L11.1581 8.86501Z",
2400 fill: "currentColor",
2401 })
2402 }
2403
2404 const WIDTH: Option<&'static str> = Some("15");
2405 const HEIGHT: Option<&'static str> = Some("15");
2406 const FILL: Option<&'static str> = Some("none");
2407 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2408
2409}
2410
2411#[derive(Default, Copy, Clone, PartialEq, Eq)]
2412pub struct Circle;
2413
2414impl IconShape for Circle {
2415 fn child_elements(&self) -> Element {
2416 rsx!(path {
2417 d: "M7.49915 0.877075C11.1566 0.877075 14.1218 3.84181 14.1222 7.49915C14.1222 11.1568 11.1568 14.1222 7.49915 14.1222C3.84181 14.1218 0.877075 11.1566 0.877075 7.49915C0.877487 3.84206 3.84206 0.877487 7.49915 0.877075ZM7.49915 1.82629C4.36674 1.82671 1.82671 4.36674 1.82629 7.49915C1.82629 10.6319 4.36648 13.1716 7.49915 13.172C10.6321 13.172 13.172 10.6321 13.172 7.49915C13.1716 4.36648 10.6319 1.82629 7.49915 1.82629Z",
2418 fill: "currentColor",
2419 })
2420 }
2421
2422 const WIDTH: Option<&'static str> = Some("15");
2423 const HEIGHT: Option<&'static str> = Some("15");
2424 const FILL: Option<&'static str> = Some("none");
2425 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2426
2427}
2428
2429#[derive(Default, Copy, Clone, PartialEq, Eq)]
2430pub struct CircleBackslash;
2431
2432impl IconShape for CircleBackslash {
2433 fn child_elements(&self) -> Element {
2434 rsx!(path {
2435 d: "M7.49915 0.877075C11.1566 0.877075 14.1218 3.84181 14.1222 7.49915C14.1222 11.1568 11.1568 14.1222 7.49915 14.1222C3.84181 14.1218 0.877075 11.1566 0.877075 7.49915C0.877487 3.84206 3.84206 0.877487 7.49915 0.877075ZM3.15051 3.85754C2.32445 4.84289 1.82648 6.11293 1.82629 7.49915C1.82629 10.6319 4.36648 13.1716 7.49915 13.172C8.88559 13.172 10.1553 12.6739 11.1407 11.8478L3.15051 3.85754ZM7.49915 1.82629C6.11293 1.82648 4.84289 2.32445 3.85754 3.15051L11.8478 11.1407C12.6739 10.1553 13.172 8.88559 13.172 7.49915C13.1716 4.36648 10.6319 1.82629 7.49915 1.82629Z",
2436 fill: "currentColor",
2437 })
2438 }
2439
2440 const WIDTH: Option<&'static str> = Some("15");
2441 const HEIGHT: Option<&'static str> = Some("15");
2442 const FILL: Option<&'static str> = Some("none");
2443 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2444
2445}
2446
2447#[derive(Default, Copy, Clone, PartialEq, Eq)]
2448pub struct Clipboard;
2449
2450impl IconShape for Clipboard {
2451 fn child_elements(&self) -> Element {
2452 rsx!(path {
2453 d: "M10.25 0C10.6642 0 11 0.335786 11 0.75V1H11.5C12.3284 1 13 1.67157 13 2.5V12.5C13 13.3284 12.3284 14 11.5 14H3.5C2.67157 14 2 13.3284 2 12.5V2.5C2 1.67157 2.67157 1 3.5 1H4V0.75C4 0.335786 4.33579 9.39539e-09 4.75 0H10.25ZM3.5 2C3.22386 2 3 2.22386 3 2.5V12.5C3 12.7761 3.22386 13 3.5 13H11.5C11.7761 13 12 12.7761 12 12.5V2.5C12 2.22386 11.7761 2 11.5 2H11V2.25C11 2.66421 10.6642 3 10.25 3H4.75C4.33579 3 4 2.66421 4 2.25V2H3.5ZM5 2H10V1H5V2Z",
2454 fill: "currentColor",
2455 })
2456 }
2457
2458 const WIDTH: Option<&'static str> = Some("15");
2459 const HEIGHT: Option<&'static str> = Some("15");
2460 const FILL: Option<&'static str> = Some("none");
2461 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2462
2463}
2464
2465#[derive(Default, Copy, Clone, PartialEq, Eq)]
2466pub struct ClipboardCopy;
2467
2468impl IconShape for ClipboardCopy {
2469 fn child_elements(&self) -> Element {
2470 rsx!(path {
2471 d: "M8.5 14C8.77614 14 9 14.2239 9 14.5C9 14.7761 8.77614 15 8.5 15C8.22386 15 8 14.7761 8 14.5C8 14.2239 8.22386 14 8.5 14ZM10.5 14C10.7761 14 11 14.2239 11 14.5C11 14.7761 10.7761 15 10.5 15C10.2239 15 10 14.7761 10 14.5C10 14.2239 10.2239 14 10.5 14ZM12.5 14C12.7761 14 13 14.2239 13 14.5C13 14.7761 12.7761 15 12.5 15C12.2239 15 12 14.7761 12 14.5C12 14.2239 12.2239 14 12.5 14ZM14.5 14C14.7761 14 15 14.2239 15 14.5C15 14.7761 14.7761 15 14.5 15C14.2239 15 14 14.7761 14 14.5C14 14.2239 14.2239 14 14.5 14ZM10.25 0C10.6642 0 11 0.335786 11 0.75V1H11.5C12.3284 1 13 1.67157 13 2.5V7H12V2.5C12 2.22386 11.7761 2 11.5 2H11V2.25C11 2.66421 10.6642 3 10.25 3H4.75C4.33579 3 4 2.66421 4 2.25V2H3.5C3.22386 2 3 2.22386 3 2.5V12.5C3 12.7761 3.22386 13 3.5 13H7V14H3.5C2.67157 14 2 13.3284 2 12.5V2.5C2 1.67157 2.67157 1 3.5 1H4V0.75C4 0.335786 4.33579 9.39539e-09 4.75 0H10.25ZM8.5 12C8.77614 12 9 12.2239 9 12.5C9 12.7761 8.77614 13 8.5 13C8.22386 13 8 12.7761 8 12.5C8 12.2239 8.22386 12 8.5 12ZM14.5 12C14.7761 12 15 12.2239 15 12.5C15 12.7761 14.7761 13 14.5 13C14.2239 13 14 12.7761 14 12.5C14 12.2239 14.2239 12 14.5 12ZM8.5 10C8.77614 10 9 10.2239 9 10.5C9 10.7761 8.77614 11 8.5 11C8.22386 11 8 10.7761 8 10.5C8 10.2239 8.22386 10 8.5 10ZM14.5 10C14.7761 10 15 10.2239 15 10.5C15 10.7761 14.7761 11 14.5 11C14.2239 11 14 10.7761 14 10.5C14 10.2239 14.2239 10 14.5 10ZM8.5 8C8.77614 8 9 8.22386 9 8.5C9 8.77614 8.77614 9 8.5 9C8.22386 9 8 8.77614 8 8.5C8 8.22386 8.22386 8 8.5 8ZM10.5 8C10.7761 8 11 8.22386 11 8.5C11 8.77614 10.7761 9 10.5 9C10.2239 9 10 8.77614 10 8.5C10 8.22386 10.2239 8 10.5 8ZM12.5 8C12.7761 8 13 8.22386 13 8.5C13 8.77614 12.7761 9 12.5 9C12.2239 9 12 8.77614 12 8.5C12 8.22386 12.2239 8 12.5 8ZM14.5 8C14.7761 8 15 8.22386 15 8.5C15 8.77614 14.7761 9 14.5 9C14.2239 9 14 8.77614 14 8.5C14 8.22386 14.2239 8 14.5 8ZM5 2H10V1H5V2Z",
2472 fill: "currentColor",
2473 })
2474 }
2475
2476 const WIDTH: Option<&'static str> = Some("15");
2477 const HEIGHT: Option<&'static str> = Some("15");
2478 const FILL: Option<&'static str> = Some("none");
2479 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2480
2481}
2482
2483#[derive(Default, Copy, Clone, PartialEq, Eq)]
2484pub struct Clock;
2485
2486impl IconShape for Clock {
2487 fn child_elements(&self) -> Element {
2488 rsx!(path {
2489 d: "M7.49933 0.877014C11.1567 0.877014 14.122 3.84175 14.1224 7.49908C14.1224 11.1567 11.157 14.1221 7.49933 14.1221C3.84199 14.1217 0.877258 11.1565 0.877258 7.49908C0.877669 3.842 3.84225 0.877426 7.49933 0.877014ZM7.49933 1.82623C4.36692 1.82664 1.82689 4.36667 1.82648 7.49908C1.82648 10.6318 4.36667 13.1715 7.49933 13.1719C10.6323 13.1719 13.1722 10.6321 13.1722 7.49908C13.1718 4.36642 10.6321 1.82623 7.49933 1.82623ZM7.50031 4.00006C7.77631 4.00023 8.00031 4.22402 8.00031 4.50006V7.29303L9.85382 9.14655L9.91827 9.22467C10.0463 9.41868 10.0245 9.68276 9.85382 9.85358C9.68303 10.0244 9.41897 10.046 9.22491 9.91803L9.14679 9.85358L7.14679 7.85358C7.05303 7.75982 7.00032 7.63265 7.00031 7.50006V4.50006C7.00031 4.22392 7.22416 4.00006 7.50031 4.00006Z",
2490 fill: "currentColor",
2491 })
2492 }
2493
2494 const WIDTH: Option<&'static str> = Some("15");
2495 const HEIGHT: Option<&'static str> = Some("15");
2496 const FILL: Option<&'static str> = Some("none");
2497 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2498
2499}
2500
2501#[derive(Default, Copy, Clone, PartialEq, Eq)]
2502pub struct Code;
2503
2504impl IconShape for Code {
2505 fn child_elements(&self) -> Element {
2506 rsx!(path {
2507 d: "M9.03606 2.31408C9.13865 2.05778 9.42913 1.93325 9.68548 2.03576C9.94183 2.1383 10.0663 2.42881 9.9638 2.68517L5.9638 12.6852C5.86124 12.9416 5.57077 13.066 5.31438 12.9635C5.05802 12.8609 4.93351 12.5705 5.03606 12.3141L9.03606 2.31408ZM11.1464 5.14611C11.3173 4.97532 11.5813 4.95355 11.7753 5.08166L11.8534 5.14611L13.8534 7.14611L13.9179 7.22423C14.046 7.41829 14.0242 7.68227 13.8534 7.85314L11.8534 9.85314C11.6582 10.0484 11.3417 10.0484 11.1464 9.85314C10.9512 9.65787 10.9512 9.34135 11.1464 9.14611L12.7929 7.49962L11.1464 5.85314L11.082 5.77501C10.9539 5.58094 10.9756 5.31695 11.1464 5.14611ZM3.14641 5.14611C3.34166 4.95094 3.6582 4.95094 3.85344 5.14611C4.04868 5.34135 4.04864 5.65787 3.85344 5.85314L2.20696 7.49962L3.85344 9.14611L3.9179 9.22423C4.04605 9.41829 4.02425 9.68227 3.85344 9.85314C3.68258 10.024 3.41862 10.0458 3.22454 9.91759L3.14641 9.85314L1.14641 7.85314C0.951218 7.65787 0.951173 7.34135 1.14641 7.14611L3.14641 5.14611Z",
2508 fill: "currentColor",
2509 })
2510 }
2511
2512 const WIDTH: Option<&'static str> = Some("15");
2513 const HEIGHT: Option<&'static str> = Some("15");
2514 const FILL: Option<&'static str> = Some("none");
2515 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2516
2517}
2518
2519#[derive(Default, Copy, Clone, PartialEq, Eq)]
2520pub struct CodesandboxLogo;
2521
2522impl IconShape for CodesandboxLogo {
2523 fn child_elements(&self) -> Element {
2524 rsx!(path {
2525 clip_rule: "evenodd",
2526 d: "M7.71144 0.796908C7.57742 0.734364 7.42258 0.734364 7.28856 0.796908L1.28856 3.59691C1.11252 3.67906 1 3.85574 1 4.05V10.95C1 11.1443 1.11252 11.3209 1.28856 11.4031L7.28856 14.2031C7.42258 14.2656 7.57742 14.2656 7.71144 14.2031L13.7114 11.4031C13.8875 11.3209 14 11.1443 14 10.95V4.05C14 3.85574 13.8875 3.67906 13.7114 3.59691L7.71144 0.796908ZM7.5 3.15674L5.9804 2.51091L7.5 1.80176L9.0196 2.51091L7.5 3.15674ZM7.69557 4.16019L10.2382 3.07958L12.2719 4.02866L7.5 6.05672L2.72809 4.02866L4.76182 3.07958L7.30443 4.16019C7.4294 4.2133 7.5706 4.2133 7.69557 4.16019ZM8 6.93078L13 4.80578V7.92967L11.0821 8.8119C10.7273 8.9751 10.5 9.32988 10.5 9.72039V11.7982L8 12.9649V6.93078ZM11.5 11.3316L13 10.6316V9.03039L11.5 9.72039V11.3316ZM7 6.93078V12.9649L4.50232 11.7993V9.72036C4.50232 9.32985 4.275 8.97507 3.92022 8.81187L2 7.92857V4.80578L7 6.93078ZM2 10.6316L3.50232 11.3327L3.50232 9.72036L2 9.0293V10.6316Z",
2527 fill: "currentColor",
2528 fill_rule: "evenodd",
2529 })
2530 }
2531
2532 const WIDTH: Option<&'static str> = Some("15");
2533 const HEIGHT: Option<&'static str> = Some("15");
2534 const FILL: Option<&'static str> = Some("none");
2535 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2536
2537}
2538
2539#[derive(Default, Copy, Clone, PartialEq, Eq)]
2540pub struct ColorWheel;
2541
2542impl IconShape for ColorWheel {
2543 fn child_elements(&self) -> Element {
2544 rsx!(path {
2545 d: "M7.49915 0.877045C11.1566 0.877045 14.1218 3.84178 14.1222 7.49911C14.1222 11.1568 11.1568 14.1222 7.49915 14.1222C3.84181 14.1218 0.877075 11.1565 0.877075 7.49911C0.877487 3.84203 3.84206 0.877456 7.49915 0.877045ZM3.78235 11.7823C4.68397 12.5655 5.83417 13.0681 7.09973 13.1563V8.46591L3.78235 11.7823ZM7.90051 13.1563C9.16548 13.068 10.3147 12.5651 11.2159 11.7823L7.90051 8.46689V13.1563ZM1.84192 7.90048C1.93027 9.16525 2.43333 10.3147 3.21594 11.2159L6.53333 7.90048H1.84192ZM11.7823 11.2159C12.5651 10.3146 13.068 9.16545 13.1564 7.90048H8.46692L11.7823 11.2159ZM8.46692 7.0997H13.1564C13.0681 5.83414 12.5655 4.68394 11.7823 3.78232L8.46692 7.0997ZM3.21594 3.78232C2.43289 4.68388 1.93013 5.83433 1.84192 7.0997H6.53333L3.21594 3.78232ZM7.09973 1.84189C5.83414 1.93012 4.68398 2.4336 3.78235 3.21689L7.09973 6.53329V1.84189ZM7.90051 6.53329L11.2159 3.21689C10.3147 2.43404 9.16551 1.93026 7.90051 1.84189V6.53329Z",
2546 fill: "currentColor",
2547 })
2548 }
2549
2550 const WIDTH: Option<&'static str> = Some("15");
2551 const HEIGHT: Option<&'static str> = Some("15");
2552 const FILL: Option<&'static str> = Some("none");
2553 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2554
2555}
2556
2557#[derive(Default, Copy, Clone, PartialEq, Eq)]
2558pub struct ColumnSpacing;
2559
2560impl IconShape for ColumnSpacing {
2561 fn child_elements(&self) -> Element {
2562 rsx!(path {
2563 d: "M7.50009 1C7.77623 1 8.00009 1.22386 8.00009 1.5V13.5C8.00009 13.7761 7.77623 14 7.50009 14C7.22395 14 7.00009 13.7761 7.00009 13.5V1.5C7.00009 1.22386 7.22395 1 7.50009 1ZM11.6817 5.18164C11.8356 5.0278 12.0734 5.00851 12.2481 5.12402L12.3184 5.18164L14.3184 7.18164L14.3761 7.25195C14.4914 7.42662 14.4722 7.66458 14.3184 7.81836L12.3184 9.81836C12.1428 9.99403 11.8575 9.9939 11.6817 9.81836C11.506 9.64262 11.506 9.35738 11.6817 9.18164L12.9132 7.9502H9.50009C9.25174 7.95006 9.05 7.74836 9.04989 7.5C9.04989 7.25155 9.25167 7.04994 9.50009 7.0498H12.9132L11.6817 5.81836L11.6241 5.74805C11.5086 5.57335 11.5279 5.33548 11.6817 5.18164ZM2.75204 5.12402C2.92673 5.00854 3.16462 5.02781 3.31845 5.18164C3.47211 5.33549 3.49153 5.57343 3.37606 5.74805L3.31845 5.81836L2.087 7.0498H5.50009L5.59091 7.05957C5.79587 7.10161 5.95028 7.28261 5.95028 7.5C5.95019 7.71733 5.79584 7.89843 5.59091 7.94043L5.50009 7.9502H2.087L3.31845 9.18164L3.37606 9.25195C3.49141 9.42662 3.47222 9.66458 3.31845 9.81836C3.16467 9.97214 2.92671 9.99132 2.75204 9.87598L2.68173 9.81836L0.681729 7.81836C0.505993 7.64262 0.505993 7.35738 0.681729 7.18164L2.68173 5.18164L2.75204 5.12402Z",
2564 fill: "currentColor",
2565 })
2566 }
2567
2568 const WIDTH: Option<&'static str> = Some("15");
2569 const HEIGHT: Option<&'static str> = Some("15");
2570 const FILL: Option<&'static str> = Some("none");
2571 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2572
2573}
2574
2575#[derive(Default, Copy, Clone, PartialEq, Eq)]
2576pub struct Columns;
2577
2578impl IconShape for Columns {
2579 fn child_elements(&self) -> Element {
2580 rsx!(path {
2581 d: "M2.15079 14H0.850006V1H2.15079V14ZM6.15079 14H4.85001V1H6.15079V14ZM10.1508 14H8.85001V1H10.1508V14ZM14.1508 14H12.85V1H14.1508V14Z",
2582 fill: "currentColor",
2583 })
2584 }
2585
2586 const WIDTH: Option<&'static str> = Some("15");
2587 const HEIGHT: Option<&'static str> = Some("15");
2588 const FILL: Option<&'static str> = Some("none");
2589 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2590
2591}
2592
2593#[derive(Default, Copy, Clone, PartialEq, Eq)]
2594pub struct Commit;
2595
2596impl IconShape for Commit {
2597 fn child_elements(&self) -> Element {
2598 rsx!(path {
2599 d: "M7.67578 4.10498C9.30413 4.18798 10.63 5.41636 10.8633 7.00049H14.5L14.6006 7.01025C14.8285 7.05682 15 7.25881 15 7.50049C14.9998 7.74199 14.8284 7.94423 14.6006 7.99072L14.5 8.00049H10.8633C10.6212 9.64069 9.20738 10.8997 7.5 10.8999L7.3252 10.895C5.69695 10.8124 4.37142 9.58428 4.1377 8.00049H0.5C0.22402 8.00049 0.000263701 7.77641 0 7.50049C0 7.22435 0.223858 7.00049 0.5 7.00049H4.1377C4.3793 5.3598 5.79223 4.10028 7.5 4.1001L7.67578 4.10498ZM7.5 5.05029C6.14732 5.0505 5.05099 6.14683 5.05078 7.49951C5.05078 8.85237 6.14719 9.9495 7.5 9.94971C8.85276 9.94944 9.9502 8.85233 9.9502 7.49951C9.94999 6.14687 8.85263 5.05056 7.5 5.05029Z",
2600 fill: "currentColor",
2601 })
2602 }
2603
2604 const WIDTH: Option<&'static str> = Some("15");
2605 const HEIGHT: Option<&'static str> = Some("15");
2606 const FILL: Option<&'static str> = Some("none");
2607 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2608
2609}
2610
2611#[derive(Default, Copy, Clone, PartialEq, Eq)]
2612pub struct Component1;
2613
2614impl IconShape for Component1 {
2615 fn child_elements(&self) -> Element {
2616 rsx!(path {
2617 d: "M7.22404 8.60706C7.41808 8.4788 7.68202 8.50072 7.85294 8.67152L10.3285 11.1461C10.5236 11.3413 10.5234 11.6579 10.3285 11.8532L7.85294 14.3287C7.65768 14.5236 7.34106 14.5238 7.14591 14.3287L4.6713 11.8532L4.60685 11.775C4.47882 11.581 4.50049 11.3169 4.6713 11.1461L7.14591 8.67152L7.22404 8.60706ZM5.73185 11.4996L7.49943 13.2672L9.267 11.4996L7.49943 9.73206L5.73185 11.4996ZM3.22404 4.60706C3.41805 4.47887 3.68204 4.50081 3.85294 4.67152L6.32853 7.14613C6.52363 7.34125 6.52335 7.65787 6.32853 7.85316L3.85294 10.3287C3.65766 10.5237 3.34108 10.5239 3.14591 10.3287L0.671301 7.85316L0.606848 7.77601C0.47855 7.58191 0.500384 7.31704 0.671301 7.14613L3.14591 4.67152L3.22404 4.60706ZM11.224 4.60706C11.4181 4.4788 11.682 4.50072 11.8529 4.67152L14.3285 7.14613C14.5236 7.34128 14.5234 7.6579 14.3285 7.85316L11.8529 10.3287C11.6577 10.5236 11.3411 10.5238 11.1459 10.3287L8.6713 7.85316L8.60685 7.77503C8.47882 7.58097 8.50049 7.31693 8.6713 7.14613L11.1459 4.67152L11.224 4.60706ZM1.73185 7.49964L3.49943 9.2682L5.267 7.49964L3.49943 5.73206L1.73185 7.49964ZM9.73185 7.49964L11.4994 9.26722L13.267 7.49964L11.4994 5.73206L9.73185 7.49964ZM7.22404 0.607063C7.41808 0.478798 7.68202 0.50072 7.85294 0.671516L10.3285 3.14613C10.5236 3.34128 10.5234 3.6579 10.3285 3.85316L7.85294 6.32874C7.65768 6.52362 7.34106 6.52379 7.14591 6.32874L4.6713 3.85316L4.60685 3.77503C4.47882 3.58097 4.50049 3.31693 4.6713 3.14613L7.14591 0.671516L7.22404 0.607063ZM5.73185 3.49964L7.49943 5.26722L9.267 3.49964L7.49943 1.73206L5.73185 3.49964Z",
2618 fill: "currentColor",
2619 })
2620 }
2621
2622 const WIDTH: Option<&'static str> = Some("15");
2623 const HEIGHT: Option<&'static str> = Some("15");
2624 const FILL: Option<&'static str> = Some("none");
2625 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2626
2627}
2628
2629#[derive(Default, Copy, Clone, PartialEq, Eq)]
2630pub struct Component2;
2631
2632impl IconShape for Component2 {
2633 fn child_elements(&self) -> Element {
2634 rsx!(path {
2635 d: "M11.6641 1.00293C11.8347 1.00564 11.9883 1.01122 12.126 1.02246C12.407 1.04543 12.6656 1.09414 12.9082 1.21777L13.0459 1.29492C13.3592 1.48707 13.6145 1.76256 13.7822 2.0918C13.9059 2.33444 13.9546 2.59301 13.9775 2.87402C14 3.14924 14 3.4886 14 3.90039V11.0996C14 11.5114 14 11.8508 13.9775 12.126C13.9603 12.3367 13.9284 12.5345 13.8613 12.7227L13.7822 12.9082C13.6145 13.2374 13.3592 13.5129 13.0459 13.7051L12.9082 13.7822C12.6656 13.9059 12.407 13.9546 12.126 13.9775C11.8508 14 11.5114 14 11.0996 14H3.90039C3.4886 14 3.14924 14 2.87402 13.9775C2.59301 13.9546 2.33444 13.9059 2.0918 13.7822C1.76256 13.6145 1.48707 13.3592 1.29492 13.0459L1.21777 12.9082C1.09414 12.6656 1.04543 12.407 1.02246 12.126C1.01122 11.9883 1.00564 11.8347 1.00293 11.6641L1 11.0996V3.90039C1 3.4886 0.999975 3.14924 1.02246 2.87402C1.04543 2.59301 1.09414 2.33444 1.21777 2.0918C1.40951 1.71554 1.71554 1.40951 2.0918 1.21777C2.33444 1.09414 2.59301 1.04543 2.87402 1.02246C3.14924 0.999975 3.4886 1 3.90039 1H11.0996L11.6641 1.00293ZM2 8V11.0996L2.00293 11.6484C2.00533 11.8029 2.00936 11.9324 2.01855 12.0449C2.03647 12.2639 2.06956 12.376 2.10938 12.4541L2.19141 12.5879C2.28366 12.7148 2.40484 12.8187 2.5459 12.8906C2.62405 12.9304 2.73615 12.9635 2.95508 12.9814C3.18012 12.9998 3.4721 13 3.90039 13H7V8H2ZM8 8V13H11.0996C11.5279 13 11.8199 12.9998 12.0449 12.9814C12.2639 12.9635 12.376 12.9304 12.4541 12.8906L12.5879 12.8086C12.7148 12.7163 12.8187 12.5952 12.8906 12.4541L12.9189 12.3877C12.9457 12.313 12.968 12.2091 12.9814 12.0449C12.9998 11.8199 13 11.5279 13 11.0996V8H8ZM3.90039 2C3.4721 2 3.18012 2.00017 2.95508 2.01855C2.73615 2.03647 2.62405 2.06956 2.5459 2.10938C2.35793 2.20521 2.20521 2.35793 2.10938 2.5459C2.06956 2.62405 2.03647 2.73615 2.01855 2.95508C2.00017 3.18012 2 3.4721 2 3.90039V7H7V2H3.90039ZM8 7H13V3.90039C13 3.4721 12.9998 3.18012 12.9814 2.95508C12.9635 2.73615 12.9304 2.62405 12.8906 2.5459C12.8187 2.40484 12.7148 2.28366 12.5879 2.19141L12.4541 2.10938C12.376 2.06956 12.2639 2.03647 12.0449 2.01855C11.9324 2.00936 11.8029 2.00533 11.6484 2.00293L11.0996 2H8V7Z",
2636 fill: "currentColor",
2637 })
2638 }
2639
2640 const WIDTH: Option<&'static str> = Some("15");
2641 const HEIGHT: Option<&'static str> = Some("15");
2642 const FILL: Option<&'static str> = Some("none");
2643 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2644
2645}
2646
2647#[derive(Default, Copy, Clone, PartialEq, Eq)]
2648pub struct ComponentBoolean;
2649
2650impl IconShape for ComponentBoolean {
2651 fn child_elements(&self) -> Element {
2652 rsx!(path {
2653 d: "M7.22415 1.42515C7.41824 1.29685 7.68311 1.31868 7.85403 1.4896L13.5103 7.14683L13.5747 7.22397C13.703 7.41807 13.6812 7.68294 13.5103 7.85386L7.85403 13.5101C7.65879 13.7053 7.34227 13.7053 7.147 13.5101L1.48977 7.85386C1.29457 7.65865 1.29469 7.3421 1.48977 7.14683L7.147 1.4896L7.22415 1.42515ZM2.55032 7.50034L7.50051 12.4496V2.55015L2.55032 7.50034Z",
2654 fill: "currentColor",
2655 })
2656 }
2657
2658 const WIDTH: Option<&'static str> = Some("15");
2659 const HEIGHT: Option<&'static str> = Some("15");
2660 const FILL: Option<&'static str> = Some("none");
2661 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2662
2663}
2664
2665#[derive(Default, Copy, Clone, PartialEq, Eq)]
2666pub struct ComponentInstance;
2667
2668impl IconShape for ComponentInstance {
2669 fn child_elements(&self) -> Element {
2670 rsx!(path {
2671 d: "M7.22405 1.42516C7.41815 1.29686 7.68302 1.3187 7.85393 1.48961L13.5102 7.14684L13.5746 7.22399C13.7029 7.41809 13.6811 7.68295 13.5102 7.85387L7.85393 13.5101C7.6587 13.7054 7.34217 13.7053 7.1469 13.5101L1.48968 7.85387C1.29448 7.65867 1.2946 7.34212 1.48968 7.14684L7.1469 1.48961L7.22405 1.42516ZM2.55022 7.50036L7.50042 12.4496L12.4496 7.50036L7.50042 2.55016L2.55022 7.50036Z",
2672 fill: "currentColor",
2673 })
2674 }
2675
2676 const WIDTH: Option<&'static str> = Some("15");
2677 const HEIGHT: Option<&'static str> = Some("15");
2678 const FILL: Option<&'static str> = Some("none");
2679 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2680
2681}
2682
2683#[derive(Default, Copy, Clone, PartialEq, Eq)]
2684pub struct ComponentNone;
2685
2686impl IconShape for ComponentNone {
2687 fn child_elements(&self) -> Element {
2688 rsx!(path {
2689 d: "M7.22405 1.42518C7.41815 1.29688 7.68302 1.31871 7.85393 1.48963L10.3285 3.96424L12.6469 1.64686C12.8422 1.45162 13.1587 1.4516 13.3539 1.64686C13.5488 1.84214 13.549 2.15875 13.3539 2.35389L11.0356 4.67127L13.5102 7.14686L13.5746 7.224C13.7029 7.4181 13.6811 7.68297 13.5102 7.85389L7.85393 13.5101C7.65869 13.7054 7.34217 13.7053 7.1469 13.5101L4.67132 11.0355L2.35393 13.3539C2.1588 13.549 1.84219 13.5488 1.6469 13.3539C1.45164 13.1586 1.45164 12.8421 1.6469 12.6469L3.96428 10.3285L1.48967 7.85389C1.29448 7.65869 1.2946 7.34213 1.48967 7.14686L7.1469 1.48963L7.22405 1.42518ZM5.37835 10.3285L7.50042 12.4496L12.4496 7.50037L10.3285 5.3783L5.37835 10.3285ZM2.55022 7.50037L4.67132 9.62147L9.62151 4.67127L7.50042 2.55018L2.55022 7.50037Z",
2690 fill: "currentColor",
2691 })
2692 }
2693
2694 const WIDTH: Option<&'static str> = Some("15");
2695 const HEIGHT: Option<&'static str> = Some("15");
2696 const FILL: Option<&'static str> = Some("none");
2697 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2698
2699}
2700
2701#[derive(Default, Copy, Clone, PartialEq, Eq)]
2702pub struct ComponentPlaceholder;
2703
2704impl IconShape for ComponentPlaceholder {
2705 fn child_elements(&self) -> Element {
2706 rsx!(path {
2707 d: "M7.2249 12.7395C7.41898 12.6113 7.68295 12.6321 7.85381 12.803C8.0489 12.9981 8.04875 13.3147 7.85381 13.51C7.65857 13.7052 7.34204 13.7052 7.14677 13.51C6.95151 13.3147 6.95151 12.9982 7.14677 12.803C7.17106 12.7787 7.19733 12.7577 7.2249 12.7395ZM5.73174 11.3889C5.92692 11.1937 6.24348 11.1939 6.43877 11.3889C6.63403 11.5842 6.63403 11.9007 6.43877 12.0959C6.24349 12.291 5.92694 12.2911 5.73174 12.0959C5.53678 11.9007 5.53674 11.5841 5.73174 11.3889ZM8.56084 11.3889C8.75611 11.1938 9.07266 11.1937 9.26787 11.3889C9.46299 11.5841 9.46295 11.9007 9.26787 12.0959C9.07264 12.2912 8.75611 12.2911 8.56084 12.0959C8.36557 11.9007 8.36557 11.5842 8.56084 11.3889ZM4.31767 9.97483C4.5129 9.7796 4.82943 9.77968 5.0247 9.97483C5.21997 10.1701 5.21997 10.4866 5.0247 10.6819C4.82943 10.8769 4.51287 10.8771 4.31767 10.6819C4.12258 10.4867 4.12264 10.1701 4.31767 9.97483ZM9.9749 9.97483C10.1702 9.77957 10.4867 9.77957 10.6819 9.97483C10.8771 10.1701 10.8772 10.4866 10.6819 10.6819C10.4867 10.8771 10.1702 10.877 9.9749 10.6819C9.77964 10.4866 9.77965 10.1701 9.9749 9.97483ZM2.90361 8.56077C3.09887 8.36551 3.41538 8.36551 3.61064 8.56077C3.80584 8.75604 3.80588 9.07256 3.61064 9.2678C3.41539 9.46286 3.09882 9.46294 2.90361 9.2678C2.70841 9.0726 2.70853 8.75605 2.90361 8.56077ZM11.389 8.56077C11.5842 8.36551 11.9007 8.36551 12.096 8.56077C12.2912 8.75604 12.2912 9.07257 12.096 9.2678C11.9007 9.46288 11.5842 9.46292 11.389 9.2678C11.1938 9.07259 11.1939 8.75604 11.389 8.56077ZM1.48955 7.14671C1.71053 6.92572 2.09066 6.9668 2.26103 7.22483C2.38899 7.41888 2.36736 7.68295 2.19658 7.85374C2.00137 8.04874 1.68476 8.04874 1.48955 7.85374C1.29435 7.65854 1.29448 7.34198 1.48955 7.14671ZM12.803 7.14671C12.9983 6.95144 13.3148 6.95144 13.5101 7.14671C13.7052 7.34197 13.7053 7.6585 13.5101 7.85374C13.3148 8.04865 12.9982 8.04882 12.803 7.85374C12.6079 7.65858 12.6081 7.34199 12.803 7.14671ZM2.90361 5.73167C3.09879 5.53665 3.41541 5.53673 3.61064 5.73167C3.80585 5.92688 3.80575 6.24342 3.61064 6.4387C3.41538 6.63396 3.09887 6.63396 2.90361 6.4387C2.70862 6.24341 2.70844 5.92684 2.90361 5.73167ZM11.389 5.73167C11.5842 5.53667 11.9008 5.53671 12.096 5.73167C12.2912 5.92687 12.2911 6.24342 12.096 6.4387C11.9007 6.63396 11.5842 6.63396 11.389 6.4387C11.1939 6.24342 11.1938 5.92685 11.389 5.73167ZM4.31767 4.3176C4.51284 4.12244 4.82942 4.12263 5.0247 4.3176C5.21997 4.51287 5.21997 4.82937 5.0247 5.02464C4.82944 5.21988 4.51293 5.21989 4.31767 5.02464C4.12271 4.82936 4.12252 4.51277 4.31767 4.3176ZM9.9749 4.3176C10.1701 4.12255 10.4867 4.1225 10.6819 4.3176C10.8771 4.51281 10.877 4.82936 10.6819 5.02464C10.4867 5.2199 10.1702 5.2199 9.9749 5.02464C9.77974 4.82936 9.77967 4.51283 9.9749 4.3176ZM5.73174 2.90354C5.92691 2.70837 6.24348 2.70855 6.43877 2.90354C6.63403 3.0988 6.63403 3.41531 6.43877 3.61057C6.24349 3.80568 5.92695 3.80578 5.73174 3.61057C5.5368 3.41534 5.53672 3.09872 5.73174 2.90354ZM8.56084 2.90354C8.75611 2.70846 9.07267 2.70834 9.26787 2.90354C9.46301 3.09875 9.46293 3.41532 9.26787 3.61057C9.07263 3.80581 8.7561 3.80578 8.56084 3.61057C8.36557 3.41531 8.36557 3.0988 8.56084 2.90354ZM7.14677 1.48948C7.34205 1.2944 7.65861 1.29428 7.85381 1.48948C8.04882 1.6847 8.04882 2.00129 7.85381 2.19651C7.6586 2.39171 7.34205 2.39159 7.14677 2.19651C6.95151 2.00125 6.95151 1.68474 7.14677 1.48948Z",
2708 fill: "currentColor",
2709 })
2710 }
2711
2712 const WIDTH: Option<&'static str> = Some("15");
2713 const HEIGHT: Option<&'static str> = Some("15");
2714 const FILL: Option<&'static str> = Some("none");
2715 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2716
2717}
2718
2719#[derive(Default, Copy, Clone, PartialEq, Eq)]
2720pub struct Container;
2721
2722impl IconShape for Container {
2723 fn child_elements(&self) -> Element {
2724 rsx!(path {
2725 d: "M1.5 13C1.77614 13 2 13.2239 2 13.5C2 13.7761 1.77614 14 1.5 14C1.22386 14 1 13.7761 1 13.5C1 13.2239 1.22386 13 1.5 13ZM10.1025 1.00488C10.573 1.05278 10.9472 1.42703 10.9951 1.89746L11 2V13L10.9951 13.1025C10.9472 13.573 10.573 13.9472 10.1025 13.9951L10 14H5C4.48232 14 4.05621 13.6067 4.00488 13.1025L4 13V2L4.00488 1.89746C4.05621 1.39333 4.48232 1 5 1H10L10.1025 1.00488ZM13.5 13C13.7761 13 14 13.2239 14 13.5C14 13.7761 13.7761 14 13.5 14C13.2239 14 13 13.7761 13 13.5C13 13.2239 13.2239 13 13.5 13ZM5 13H10V2H5V13ZM1.5 11C1.77614 11 2 11.2239 2 11.5C2 11.7761 1.77614 12 1.5 12C1.22386 12 1 11.7761 1 11.5C1 11.2239 1.22386 11 1.5 11ZM13.5 11C13.7761 11 14 11.2239 14 11.5C14 11.7761 13.7761 12 13.5 12C13.2239 12 13 11.7761 13 11.5C13 11.2239 13.2239 11 13.5 11ZM1.5 9C1.77614 9 2 9.22386 2 9.5C2 9.77614 1.77614 10 1.5 10C1.22386 10 1 9.77614 1 9.5C1 9.22386 1.22386 9 1.5 9ZM13.5 9C13.7761 9 14 9.22386 14 9.5C14 9.77614 13.7761 10 13.5 10C13.2239 10 13 9.77614 13 9.5C13 9.22386 13.2239 9 13.5 9ZM1.5 7C1.77614 7 2 7.22386 2 7.5C2 7.77614 1.77614 8 1.5 8C1.22386 8 1 7.77614 1 7.5C1 7.22386 1.22386 7 1.5 7ZM13.5 7C13.7761 7 14 7.22386 14 7.5C14 7.77614 13.7761 8 13.5 8C13.2239 8 13 7.77614 13 7.5C13 7.22386 13.2239 7 13.5 7ZM1.5 5C1.77614 5 2 5.22386 2 5.5C2 5.77614 1.77614 6 1.5 6C1.22386 6 1 5.77614 1 5.5C1 5.22386 1.22386 5 1.5 5ZM13.5 5C13.7761 5 14 5.22386 14 5.5C14 5.77614 13.7761 6 13.5 6C13.2239 6 13 5.77614 13 5.5C13 5.22386 13.2239 5 13.5 5ZM1.5 3C1.77614 3 2 3.22386 2 3.5C2 3.77614 1.77614 4 1.5 4C1.22386 4 1 3.77614 1 3.5C1 3.22386 1.22386 3 1.5 3ZM13.5 3C13.7761 3 14 3.22386 14 3.5C14 3.77614 13.7761 4 13.5 4C13.2239 4 13 3.77614 13 3.5C13 3.22386 13.2239 3 13.5 3ZM1.5 1C1.77614 1 2 1.22386 2 1.5C2 1.77614 1.77614 2 1.5 2C1.22386 2 1 1.77614 1 1.5C1 1.22386 1.22386 1 1.5 1ZM13.5 1C13.7761 1 14 1.22386 14 1.5C14 1.77614 13.7761 2 13.5 2C13.2239 2 13 1.77614 13 1.5C13 1.22386 13.2239 1 13.5 1Z",
2726 fill: "currentColor",
2727 })
2728 }
2729
2730 const WIDTH: Option<&'static str> = Some("15");
2731 const HEIGHT: Option<&'static str> = Some("15");
2732 const FILL: Option<&'static str> = Some("none");
2733 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2734
2735}
2736
2737#[derive(Default, Copy, Clone, PartialEq, Eq)]
2738pub struct Cookie;
2739
2740impl IconShape for Cookie {
2741 fn child_elements(&self) -> Element {
2742 rsx!(path {
2743 d: "M4.58432 1.70899C5.78226 1.16314 7.15617 0.950632 8.39291 1.07813C9.20751 1.16222 9.62604 1.72334 9.91147 2.16114C10.1296 2.49583 10.3321 2.9301 10.6996 3.12794C11.0812 3.33351 11.084 3.73732 11.0628 3.90919C11.0133 4.31014 10.84 4.56625 10.9134 5.02833C10.9645 5.3492 11.6212 5.90258 12.721 6.37989C13.1169 6.55163 13.5032 6.54047 13.722 6.95313C14.3259 8.09183 14.1038 9.27188 13.4994 10.3389C12.901 11.395 11.898 12.4039 10.7992 13.2969C10.1452 13.8283 9.36515 13.9782 8.6644 14.0742C7.80857 14.1915 6.4084 14.1116 5.13901 13.8076C4.03969 13.5443 2.61184 13.0647 2.13217 11.9277C1.30568 9.96876 0.985151 8.59825 1.00131 7.44337C1.01761 6.28104 1.37574 5.38685 1.78842 4.41797C2.32736 3.15289 3.3856 2.25522 4.58432 1.70899ZM8.29037 2.07325C7.2293 1.96386 6.03427 2.14765 4.99936 2.61915C3.9652 3.09039 3.12542 3.83134 2.70834 4.81055C2.29804 5.77387 2.01361 6.50933 2.00034 7.45801C1.98705 8.41422 2.25061 9.63702 3.05307 11.5391C3.3917 12.3417 4.62119 12.6553 5.37143 12.835C6.54887 13.117 7.82197 13.1798 8.52866 13.083C9.21268 12.9893 9.7459 12.8638 10.1683 12.5205C11.229 11.6585 12.121 10.7436 12.6292 9.84669C12.9348 9.30746 13.514 7.70332 12.6292 7.3877C10.7544 6.71932 10.2625 6.06694 9.99057 5.41309C9.80964 4.97793 9.8287 4.523 9.95737 4.07911C9.97658 4.01286 9.99555 3.94777 10.0335 3.88868C9.81874 3.73662 9.65185 3.55155 9.51498 3.3711C9.18318 2.93357 8.91081 2.13746 8.29037 2.07325ZM7.11459 10.877C7.14415 10.86 7.33484 10.7502 7.56674 10.8428C8.06515 11.0421 8.20741 12.0551 7.5267 12.0986C7.1321 12.1238 6.59069 12.0035 6.67514 11.4844C6.71426 11.2441 6.90774 10.995 7.11264 10.8779L7.11459 10.877ZM3.96518 10.1299C4.32418 9.71268 4.93087 9.79696 5.08334 10.3154C5.15688 10.5363 5.06707 10.7727 4.88022 10.8936C4.63594 11.1856 4.22065 11.0938 3.99838 10.8174L3.99545 10.8135L3.99252 10.8106C3.80797 10.6275 3.79321 10.3301 3.96518 10.1299ZM10.389 8.84083C10.758 8.65697 11.4608 8.82777 11.4613 9.31153C11.4613 9.71225 10.959 10.2159 10.5638 10.2822C10.1817 10.3461 9.70561 9.97579 9.76694 9.57715C9.81495 9.2654 10.1222 8.97402 10.389 8.84083ZM7.33725 7.79395C7.63934 7.67771 8.02377 7.7751 8.17221 8.07422C8.33221 8.39684 8.27428 9.02768 7.91928 9.16309C7.51134 9.3185 7.14032 9.1188 6.98764 8.72462C6.98685 8.72259 6.98569 8.71876 6.98569 8.71876C6.85677 8.387 6.98506 7.92958 7.33725 7.79395ZM3.04721 6.87305C4.13814 6.24332 4.60817 7.90852 3.98471 8.0586C3.60117 8.15065 3.33163 8.09777 3.04721 7.81348C2.86742 7.63369 2.70961 7.06797 3.04721 6.87305ZM7.62143 5.94239C7.68654 5.94972 7.86554 5.97952 7.99448 6.14747C8.48839 6.79118 7.31155 7.38903 6.9769 6.71973C6.76348 6.29247 7.21222 5.89635 7.62143 5.94239ZM4.11459 5.05176C4.59599 4.57047 5.40885 5.41755 4.94467 5.88184C4.74944 6.07708 4.43291 6.07702 4.23764 5.88184C4.00956 5.65376 3.83372 5.33264 4.11459 5.05176ZM14.4828 4.2793C15.0458 4.38253 14.8642 5.09988 14.2855 5.09083C13.5375 5.07894 13.7455 4.14445 14.4828 4.2793ZM5.97983 3.73633C5.86859 3.09735 6.33736 2.56817 6.94858 2.91114C7.43372 3.18344 7.26683 3.97512 6.90756 4.28712C6.46911 4.66765 6.05219 4.15163 5.97983 3.73633ZM12.0824 3.10157C12.4548 2.63625 13.4407 3.22655 13.2083 3.77442C12.9032 4.49252 11.5818 3.72726 12.0824 3.10157ZM14.3675 2.26075C13.5922 2.24184 13.8076 0.731242 14.5716 0.949225C15.1548 1.11586 14.9669 2.27496 14.3675 2.26075ZM11.0492 1.00196C11.4602 0.454029 12.4807 1.21961 12.0697 1.76758C11.6586 2.31533 10.6382 1.5499 11.0492 1.00196Z",
2744 fill: "currentColor",
2745 })
2746 }
2747
2748 const WIDTH: Option<&'static str> = Some("15");
2749 const HEIGHT: Option<&'static str> = Some("15");
2750 const FILL: Option<&'static str> = Some("none");
2751 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2752
2753}
2754
2755#[derive(Default, Copy, Clone, PartialEq, Eq)]
2756pub struct Copy;
2757
2758impl IconShape for Copy {
2759 fn child_elements(&self) -> Element {
2760 rsx!(path {
2761 d: "M10 4.00003V2.50003C10 2.22389 9.77614 2.00003 9.5 2.00003H2.5C2.22386 2.00003 2 2.22389 2 2.50003V9.50003C2 9.77617 2.22386 10 2.5 10H4V5.50003C4 4.6716 4.67157 4.00003 5.5 4.00003H10ZM5.5 5.00003C5.22386 5.00003 5 5.22389 5 5.50003V12.5C5.00002 12.7762 5.22387 13 5.5 13H12.5C12.7761 13 13 12.7762 13 12.5V5.50003C13 5.22389 12.7761 5.00003 12.5 5.00003H5.5ZM12.5 4.00003C13.3284 4.00003 14 4.6716 14 5.50003V12.5C14 13.3284 13.3284 14 12.5 14H5.5C4.67159 14 4.00002 13.3284 4 12.5V11H2.5C1.67157 11 1 10.3285 1 9.50003V2.50003C1 1.6716 1.67157 1.00003 2.5 1.00003H9.5C10.3284 1.00003 11 1.6716 11 2.50003V4.00003H12.5Z",
2762 fill: "currentColor",
2763 })
2764 }
2765
2766 const WIDTH: Option<&'static str> = Some("15");
2767 const HEIGHT: Option<&'static str> = Some("15");
2768 const FILL: Option<&'static str> = Some("none");
2769 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2770
2771}
2772
2773#[derive(Default, Copy, Clone, PartialEq, Eq)]
2774pub struct CornerBottomLeft;
2775
2776impl IconShape for CornerBottomLeft {
2777 fn child_elements(&self) -> Element {
2778 rsx!(path {
2779 d: "M11.5 12C11.7761 12 12 11.7761 12 11.5C12 11.2239 11.7761 11 11.5 11H9.90039C8.77204 11 7.9554 10.9997 7.31348 10.9473C6.67741 10.8953 6.25672 10.7942 5.91113 10.6182C5.25262 10.2826 4.71738 9.74738 4.38184 9.08887C4.20575 8.74328 4.10471 8.32259 4.05273 7.68652C4.00029 7.0446 4 6.22796 4 5.09961V3.5C4 3.22386 3.77614 3 3.5 3C3.22386 3 3 3.22386 3 3.5V5.09961C3 6.21131 3.00012 7.07553 3.05664 7.76758C3.11366 8.46547 3.23038 9.03293 3.49023 9.54297C3.92166 10.3897 4.6103 11.0783 5.45703 11.5098C5.96707 11.7696 6.53453 11.8863 7.23242 11.9434C7.92447 11.9999 8.78869 12 9.90039 12H11.5Z",
2780 fill: "currentColor",
2781 })
2782 }
2783
2784 const WIDTH: Option<&'static str> = Some("15");
2785 const HEIGHT: Option<&'static str> = Some("15");
2786 const FILL: Option<&'static str> = Some("none");
2787 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2788
2789}
2790
2791#[derive(Default, Copy, Clone, PartialEq, Eq)]
2792pub struct CornerBottomRight;
2793
2794impl IconShape for CornerBottomRight {
2795 fn child_elements(&self) -> Element {
2796 rsx!(path {
2797 d: "M3.5 12C3.22386 12 3 11.7761 3 11.5C3 11.2239 3.22386 11 3.5 11H5.09961C6.22796 11 7.0446 10.9997 7.68652 10.9473C8.32259 10.8953 8.74328 10.7942 9.08887 10.6182C9.74738 10.2826 10.2826 9.74738 10.6182 9.08887C10.7942 8.74328 10.8953 8.32259 10.9473 7.68652C10.9997 7.0446 11 6.22796 11 5.09961V3.5C11 3.22386 11.2239 3 11.5 3C11.7761 3 12 3.22386 12 3.5V5.09961C12 6.21131 11.9999 7.07553 11.9434 7.76758C11.8863 8.46547 11.7696 9.03293 11.5098 9.54297C11.0783 10.3897 10.3897 11.0783 9.54297 11.5098C9.03293 11.7696 8.46547 11.8863 7.76758 11.9434C7.07553 11.9999 6.21131 12 5.09961 12H3.5Z",
2798 fill: "currentColor",
2799 })
2800 }
2801
2802 const WIDTH: Option<&'static str> = Some("15");
2803 const HEIGHT: Option<&'static str> = Some("15");
2804 const FILL: Option<&'static str> = Some("none");
2805 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2806
2807}
2808
2809#[derive(Default, Copy, Clone, PartialEq, Eq)]
2810pub struct CornerTopLeft;
2811
2812impl IconShape for CornerTopLeft {
2813 fn child_elements(&self) -> Element {
2814 rsx!(path {
2815 d: "M11.5 3C11.7761 3 12 3.22386 12 3.5C12 3.77614 11.7761 4 11.5 4H9.90039C8.77204 4 7.9554 4.00029 7.31348 4.05273C6.67741 4.10471 6.25672 4.20575 5.91113 4.38184C5.25262 4.71738 4.71738 5.25262 4.38184 5.91113C4.20575 6.25672 4.10471 6.67741 4.05273 7.31348C4.00029 7.9554 4 8.77204 4 9.90039V11.5C4 11.7761 3.77614 12 3.5 12C3.22386 12 3 11.7761 3 11.5V9.90039C3 8.78869 3.00012 7.92447 3.05664 7.23242C3.11366 6.53453 3.23038 5.96707 3.49023 5.45703C3.92166 4.6103 4.6103 3.92166 5.45703 3.49023C5.96707 3.23038 6.53453 3.11366 7.23242 3.05664C7.92447 3.00012 8.78869 3 9.90039 3H11.5Z",
2816 fill: "currentColor",
2817 })
2818 }
2819
2820 const WIDTH: Option<&'static str> = Some("15");
2821 const HEIGHT: Option<&'static str> = Some("15");
2822 const FILL: Option<&'static str> = Some("none");
2823 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2824
2825}
2826
2827#[derive(Default, Copy, Clone, PartialEq, Eq)]
2828pub struct CornerTopRight;
2829
2830impl IconShape for CornerTopRight {
2831 fn child_elements(&self) -> Element {
2832 rsx!(path {
2833 d: "M3.5 3C3.22386 3 3 3.22386 3 3.5C3 3.77614 3.22386 4 3.5 4H5.09961C6.22796 4 7.0446 4.00029 7.68652 4.05273C8.32259 4.10471 8.74328 4.20575 9.08887 4.38184C9.74738 4.71738 10.2826 5.25262 10.6182 5.91113C10.7942 6.25672 10.8953 6.67741 10.9473 7.31348C10.9997 7.9554 11 8.77204 11 9.90039V11.5C11 11.7761 11.2239 12 11.5 12C11.7761 12 12 11.7761 12 11.5V9.90039C12 8.78869 11.9999 7.92447 11.9434 7.23242C11.8863 6.53453 11.7696 5.96707 11.5098 5.45703C11.0783 4.6103 10.3897 3.92166 9.54297 3.49023C9.03293 3.23038 8.46547 3.11366 7.76758 3.05664C7.07553 3.00012 6.21131 3 5.09961 3H3.5Z",
2834 fill: "currentColor",
2835 })
2836 }
2837
2838 const WIDTH: Option<&'static str> = Some("15");
2839 const HEIGHT: Option<&'static str> = Some("15");
2840 const FILL: Option<&'static str> = Some("none");
2841 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2842
2843}
2844
2845#[derive(Default, Copy, Clone, PartialEq, Eq)]
2846pub struct Corners;
2847
2848impl IconShape for Corners {
2849 fn child_elements(&self) -> Element {
2850 rsx!(path {
2851 d: "M2.5 9C2.77614 9 3 9.22386 3 9.5V10.0996C3 10.5279 3.00017 10.8199 3.01855 11.0449C3.03647 11.2639 3.06956 11.376 3.10938 11.4541C3.20521 11.6421 3.35793 11.7948 3.5459 11.8906C3.62405 11.9304 3.73615 11.9635 3.95508 11.9814C4.18012 11.9998 4.4721 12 4.90039 12H5.5C5.77614 12 6 12.2239 6 12.5C6 12.7761 5.77614 13 5.5 13H4.87891C4.47662 13 4.14452 12.9996 3.87402 12.9775C3.59301 12.9546 3.33444 12.9059 3.0918 12.7822C2.71554 12.5905 2.40951 12.2845 2.21777 11.9082C2.09414 11.6656 2.04543 11.407 2.02246 11.126C2.00036 10.8555 1.99999 10.5234 2 10.1211V9.5C2 9.22386 2.22386 9 2.5 9ZM12.5 9C12.7761 9 13 9.22386 13 9.5V10.1211C13 10.5234 12.9996 10.8555 12.9775 11.126C12.9546 11.407 12.9059 11.6656 12.7822 11.9082C12.5905 12.2845 12.2845 12.5905 11.9082 12.7822C11.6656 12.9059 11.407 12.9546 11.126 12.9775C10.8555 12.9996 10.5234 13 10.1211 13H9.5C9.22386 13 9 12.7761 9 12.5C9 12.2239 9.22386 12 9.5 12H10.0996C10.5279 12 10.8199 11.9998 11.0449 11.9814C11.2639 11.9635 11.376 11.9304 11.4541 11.8906C11.6421 11.7948 11.7948 11.6421 11.8906 11.4541C11.9304 11.376 11.9635 11.2639 11.9814 11.0449C11.9998 10.8199 12 10.5279 12 10.0996V9.5C12 9.22386 12.2239 9 12.5 9ZM5.5 2C5.77614 2 6 2.22386 6 2.5C6 2.77614 5.77614 3 5.5 3H4.90039C4.4721 3 4.18012 3.00017 3.95508 3.01855C3.73615 3.03647 3.62405 3.06956 3.5459 3.10938C3.35793 3.20522 3.20521 3.35793 3.10938 3.5459C3.06956 3.62405 3.03647 3.73615 3.01855 3.95508C3.00017 4.18012 3 4.4721 3 4.90039V5.5C3 5.77614 2.77614 6 2.5 6C2.22386 6 2 5.77614 2 5.5V4.87891C1.99999 4.47662 2.00036 4.14452 2.02246 3.87402C2.04543 3.59301 2.09414 3.33444 2.21777 3.0918C2.40951 2.71554 2.71554 2.40951 3.0918 2.21777C3.33444 2.09414 3.59301 2.04543 3.87402 2.02246C4.14452 2.00036 4.47662 1.99999 4.87891 2H5.5ZM10.1211 2C10.5234 1.99999 10.8555 2.00036 11.126 2.02246C11.407 2.04543 11.6656 2.09414 11.9082 2.21777C12.2845 2.40951 12.5905 2.71554 12.7822 3.0918C12.9059 3.33444 12.9546 3.59301 12.9775 3.87402C12.9996 4.14452 13 4.47662 13 4.87891V5.5C13 5.77614 12.7761 6 12.5 6C12.2239 6 12 5.77614 12 5.5V4.90039C12 4.4721 11.9998 4.18012 11.9814 3.95508C11.9635 3.73615 11.9304 3.62405 11.8906 3.5459C11.7948 3.35793 11.6421 3.20522 11.4541 3.10938C11.376 3.06956 11.2639 3.03647 11.0449 3.01855C10.8199 3.00017 10.5279 3 10.0996 3H9.5C9.22386 3 9 2.77614 9 2.5C9 2.22386 9.22386 2 9.5 2H10.1211Z",
2852 fill: "currentColor",
2853 })
2854 }
2855
2856 const WIDTH: Option<&'static str> = Some("15");
2857 const HEIGHT: Option<&'static str> = Some("15");
2858 const FILL: Option<&'static str> = Some("none");
2859 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2860
2861}
2862
2863#[derive(Default, Copy, Clone, PartialEq, Eq)]
2864pub struct CountdownTimer;
2865
2866impl IconShape for CountdownTimer {
2867 fn child_elements(&self) -> Element {
2868 rsx!(path {
2869 d: "M7.5 0.849976C11.5626 0.850176 14.1504 4.18587 14.1504 7.50037C14.1502 10.8147 11.5624 14.1496 7.5 14.1498C5.55651 14.1497 3.93833 13.3806 2.78613 12.2084L2.56055 11.9681C2.12341 11.4767 1.76418 10.9246 1.48926 10.3373L1.3584 10.0404C1.25353 9.78512 1.3756 9.49311 1.63086 9.38806C1.8541 9.29648 2.10559 9.37801 2.23535 9.57068L2.2832 9.66052C2.5289 10.2574 2.87436 10.8159 3.30762 11.3031L3.49902 11.5072C4.47075 12.4959 5.83522 13.1497 7.5 13.1498C10.9398 13.1496 13.1502 10.3355 13.1504 7.50037C13.1504 4.66507 10.94 1.85018 7.5 1.84998C4.88974 1.85016 3.52024 3.66593 2.87891 4.79236L2.76758 5.00037H4.5C4.77614 5.00037 5 5.22422 5 5.50037C4.99979 5.77633 4.77601 6.00037 4.5 6.00037H1.5C1.22399 6.00037 1.00021 5.77633 1 5.50037V2.50037C1 2.22422 1.22386 2.00037 1.5 2.00037C1.77614 2.00037 2 2.22422 2 2.50037V4.31189L2.00098 4.31091C2.70613 3.06863 4.3361 0.850158 7.5 0.849976ZM8 10.0004H7V5.00037H8V10.0004Z",
2870 fill: "currentColor",
2871 })
2872 }
2873
2874 const WIDTH: Option<&'static str> = Some("15");
2875 const HEIGHT: Option<&'static str> = Some("15");
2876 const FILL: Option<&'static str> = Some("none");
2877 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2878
2879}
2880
2881#[derive(Default, Copy, Clone, PartialEq, Eq)]
2882pub struct CounterClockwiseClock;
2883
2884impl IconShape for CounterClockwiseClock {
2885 fn child_elements(&self) -> Element {
2886 rsx!(path {
2887 d: "M7.5 0.849976C11.5626 0.850176 14.1504 4.18587 14.1504 7.50037C14.1502 10.8147 11.5624 14.1496 7.5 14.1498C5.55651 14.1497 3.93833 13.3806 2.78613 12.2084L2.56055 11.9681C2.12341 11.4767 1.76418 10.9246 1.48926 10.3373L1.3584 10.0404C1.25353 9.78512 1.3756 9.49311 1.63086 9.38806C1.8541 9.29648 2.10559 9.37801 2.23535 9.57068L2.2832 9.66052C2.5289 10.2574 2.87436 10.8159 3.30762 11.3031L3.49902 11.5072C4.47075 12.4959 5.83522 13.1497 7.5 13.1498C10.9398 13.1496 13.1502 10.3355 13.1504 7.50037C13.1504 4.66507 10.94 1.85018 7.5 1.84998C4.88974 1.85016 3.52024 3.66593 2.87891 4.79236L2.76758 5.00037H4.5C4.77614 5.00037 5 5.22422 5 5.50037C4.9998 5.77634 4.77602 6.00037 4.5 6.00037H1.5C1.22398 6.00037 1.0002 5.77634 1 5.50037V2.50037C1 2.22422 1.22386 2.00037 1.5 2.00037C1.77614 2.00037 2 2.22422 2 2.50037V4.31189L2.00098 4.31091C2.70613 3.06863 4.3361 0.850158 7.5 0.849976ZM7.5 4.00037C7.77614 4.00037 8 4.22422 8 4.50037V7.29333L9.85352 9.14685L9.91797 9.22498C10.046 9.41903 10.0243 9.68309 9.85352 9.85388C9.68269 10.0245 9.41861 10.0463 9.22461 9.91833L9.14648 9.85388L7.14648 7.85388C7.0528 7.7602 7.00009 7.63285 7 7.50037V4.50037C7 4.22422 7.22386 4.00037 7.5 4.00037Z",
2888 fill: "currentColor",
2889 })
2890 }
2891
2892 const WIDTH: Option<&'static str> = Some("15");
2893 const HEIGHT: Option<&'static str> = Some("15");
2894 const FILL: Option<&'static str> = Some("none");
2895 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2896
2897}
2898
2899#[derive(Default, Copy, Clone, PartialEq, Eq)]
2900pub struct Crop;
2901
2902impl IconShape for Crop {
2903 fn child_elements(&self) -> Element {
2904 rsx!(path {
2905 d: "M-5.0268e-07 3.5C5.61896e-06 3.22386 0.223862 3 0.499999 3L3 3L3 0.5C3 0.223858 3.22386 -1.40919e-07 3.5 -1.5299e-07C3.77614 -1.6506e-07 4 0.223858 4 0.5L4 3L11.5 3C11.7761 3 12 3.22389 12 3.5L12 11L14.5 11L14.6006 11.0098C14.8285 11.0563 15 11.2583 15 11.5C15 11.7417 14.8286 11.9437 14.6006 11.9902L14.5 12L12 12L12 14.5C12 14.7761 11.7761 15 11.5 15C11.2239 15 11 14.7761 11 14.5L11 12L3.5 12C3.22386 12 3 11.7761 3 11.5L3 4L0.5 4C0.22386 3.99999 -8.80855e-07 3.77614 -5.0268e-07 3.5ZM11 11L11 4L4 4L4 11L11 11Z",
2906 fill: "currentColor",
2907 })
2908 }
2909
2910 const WIDTH: Option<&'static str> = Some("15");
2911 const HEIGHT: Option<&'static str> = Some("15");
2912 const FILL: Option<&'static str> = Some("none");
2913 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2914
2915}
2916
2917#[derive(Default, Copy, Clone, PartialEq, Eq)]
2918pub struct Cross1;
2919
2920impl IconShape for Cross1 {
2921 fn child_elements(&self) -> Element {
2922 rsx!(path {
2923 d: "M12.2248 2.08224C12.4189 1.95407 12.6829 1.97583 12.8537 2.14669C13.0246 2.31756 13.0463 2.58152 12.9182 2.7756L12.8537 2.85372L8.20724 7.50021L12.8537 12.1467L12.9182 12.2248C13.0463 12.4189 13.0246 12.6829 12.8537 12.8537C12.6829 13.0246 12.4189 13.0463 12.2248 12.9182L12.1467 12.8537L7.50021 8.20724L2.85372 12.8537C2.65846 13.049 2.34195 13.049 2.14669 12.8537C1.95143 12.6585 1.95143 12.342 2.14669 12.1467L6.79318 7.50021L2.14669 2.85372L2.08224 2.7756C1.95407 2.58152 1.97583 2.31756 2.14669 2.14669C2.31756 1.97583 2.58152 1.95407 2.7756 2.08224L2.85372 2.14669L7.50021 6.79318L12.1467 2.14669L12.2248 2.08224Z",
2924 fill: "currentColor",
2925 })
2926 }
2927
2928 const WIDTH: Option<&'static str> = Some("15");
2929 const HEIGHT: Option<&'static str> = Some("15");
2930 const FILL: Option<&'static str> = Some("none");
2931 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2932
2933}
2934
2935#[derive(Default, Copy, Clone, PartialEq, Eq)]
2936pub struct Cross2;
2937
2938impl IconShape for Cross2 {
2939 fn child_elements(&self) -> Element {
2940 rsx!(path {
2941 d: "M10.9688 3.21871C11.1933 2.99416 11.5567 2.99416 11.7813 3.21871C12.0056 3.44328 12.0057 3.80673 11.7813 4.03121L8.31251 7.49996L11.7813 10.9687L11.8555 11.0586C12.0026 11.2817 11.9777 11.5848 11.7813 11.7812C11.5849 11.9776 11.2818 12.0026 11.0586 11.8554L10.9688 11.7812L7.50001 8.31246L4.03126 11.7812C3.80677 12.0057 3.44332 12.0056 3.21876 11.7812C2.99421 11.5567 2.99421 11.1933 3.21876 10.9687L6.68751 7.49996L3.21876 4.03121L3.14454 3.94137C2.99723 3.71819 3.0223 3.41517 3.21876 3.21871C3.41522 3.02225 3.71823 2.99719 3.94141 3.14449L4.03126 3.21871L7.50001 6.68746L10.9688 3.21871Z",
2942 fill: "currentColor",
2943 })
2944 }
2945
2946 const WIDTH: Option<&'static str> = Some("15");
2947 const HEIGHT: Option<&'static str> = Some("15");
2948 const FILL: Option<&'static str> = Some("none");
2949 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2950
2951}
2952
2953#[derive(Default, Copy, Clone, PartialEq, Eq)]
2954pub struct CrossCircled;
2955
2956impl IconShape for CrossCircled {
2957 fn child_elements(&self) -> Element {
2958 rsx!(path {
2959 d: "M7.49915 0.877045C11.1566 0.877045 14.1218 3.84178 14.1222 7.49911C14.1222 11.1568 11.1568 14.1222 7.49915 14.1222C3.84181 14.1218 0.877075 11.1565 0.877075 7.49911C0.877486 3.84203 3.84206 0.877456 7.49915 0.877045ZM7.49915 1.82626C4.36673 1.82667 1.8267 4.3667 1.82629 7.49911C1.82629 10.6319 4.36648 13.1716 7.49915 13.172C10.6321 13.172 13.172 10.6321 13.172 7.49911C13.1716 4.36645 10.6319 1.82626 7.49915 1.82626ZM9.14661 5.14658C9.34187 4.95131 9.65838 4.95131 9.85364 5.14658C10.0488 5.34185 10.0489 5.65838 9.85364 5.85361L8.20715 7.50009L9.85364 9.14658L9.91809 9.2247C10.0462 9.41877 10.0245 9.68278 9.85364 9.85361C9.68281 10.0244 9.4188 10.0461 9.22473 9.91806L9.14661 9.85361L7.50012 8.20712L5.85364 9.85361C5.65841 10.0488 5.34188 10.0488 5.14661 9.85361C4.95134 9.65835 4.95134 9.34184 5.14661 9.14658L6.79309 7.50009L5.14661 5.85361L5.08215 5.77548C4.95399 5.5814 4.97574 5.31744 5.14661 5.14658C5.31747 4.97571 5.58143 4.95396 5.77551 5.08212L5.85364 5.14658L7.50012 6.79306L9.14661 5.14658Z",
2960 fill: "currentColor",
2961 })
2962 }
2963
2964 const WIDTH: Option<&'static str> = Some("15");
2965 const HEIGHT: Option<&'static str> = Some("15");
2966 const FILL: Option<&'static str> = Some("none");
2967 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2968
2969}
2970
2971#[derive(Default, Copy, Clone, PartialEq, Eq)]
2972pub struct Crosshair1;
2973
2974impl IconShape for Crosshair1 {
2975 fn child_elements(&self) -> Element {
2976 rsx!(path {
2977 d: "M7.50208 0.877045C11.1606 0.877256 14.1269 3.84347 14.1271 7.50204C14.1269 11.1606 11.1606 14.1268 7.50208 14.127C3.8435 14.1268 0.877286 11.1606 0.877075 7.50204C0.877285 3.84347 3.8435 0.877256 7.50208 0.877045ZM8.00012 4.50009C8.00007 4.77616 7.77619 5.00004 7.50012 5.00009C7.22401 5.00009 7.00017 4.77619 7.00012 4.50009V1.8497C4.26672 2.08955 2.08958 4.26669 1.84973 7.00009H4.50012C4.77622 7.00014 5.00012 7.22398 5.00012 7.50009C5.00007 7.77616 4.77619 8.00004 4.50012 8.00009H1.84973C2.08769 10.7354 4.26533 12.9135 7.00012 13.1534V10.5001C7.00012 10.2239 7.22398 10.0001 7.50012 10.0001C7.77622 10.0001 8.00012 10.224 8.00012 10.5001V13.1534C10.7368 12.9153 12.9164 10.7368 13.1544 8.00009H10.5001C10.224 8.00009 10.0002 7.77619 10.0001 7.50009C10.0001 7.22395 10.224 7.00009 10.5001 7.00009H13.1534C12.9135 4.26527 10.7355 2.08665 8.00012 1.84872V4.50009Z",
2978 fill: "currentColor",
2979 })
2980 }
2981
2982 const WIDTH: Option<&'static str> = Some("15");
2983 const HEIGHT: Option<&'static str> = Some("15");
2984 const FILL: Option<&'static str> = Some("none");
2985 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
2986
2987}
2988
2989#[derive(Default, Copy, Clone, PartialEq, Eq)]
2990pub struct Crosshair2;
2991
2992impl IconShape for Crosshair2 {
2993 fn child_elements(&self) -> Element {
2994 rsx!(path {
2995 d: "M7.5 0C7.77614 0 8 0.223858 8 0.5V1.80762C10.6919 2.09438 12.8147 4.28034 13.0049 7H14.5C14.7761 7 15 7.22386 15 7.5C15 7.77614 14.7761 8 14.5 8H12.9873C12.7077 10.624 10.624 12.7077 8 12.9873V14.5C8 14.7761 7.77614 15 7.5 15C7.22386 15 7 14.7761 7 14.5V13.0039C4.28041 12.8137 2.09539 10.6919 1.80859 8H0.5C0.223858 8 0 7.77614 0 7.5C0 7.22386 0.223858 7 0.5 7H1.79102C1.98595 4.21179 4.21179 1.98595 7 1.79102V0.5C7 0.223858 7.22386 0 7.5 0ZM7 2.74219C4.73667 2.93307 2.93409 4.73668 2.74316 7H5.5C5.77614 7 6 7.22386 6 7.5C6 7.77614 5.77614 8 5.5 8H2.76465C3.0437 10.1665 4.8054 11.8667 7 12.0518V9.5C7 9.22386 7.22386 9 7.5 9C7.77614 9 8 9.22386 8 9.5V12.0303C10.0987 11.76 11.76 10.0987 12.0303 8H9.5C9.22386 8 9 7.77614 9 7.5C9 7.22386 9.22386 7 9.5 7H12.0518C11.8667 4.8054 10.1665 3.0437 8 2.76465V5.5C8 5.77614 7.77614 6 7.5 6C7.22386 6 7 5.77614 7 5.5V2.74219Z",
2996 fill: "currentColor",
2997 })
2998 }
2999
3000 const WIDTH: Option<&'static str> = Some("15");
3001 const HEIGHT: Option<&'static str> = Some("15");
3002 const FILL: Option<&'static str> = Some("none");
3003 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3004
3005}
3006
3007#[derive(Default, Copy, Clone, PartialEq, Eq)]
3008pub struct CrumpledPaper;
3009
3010impl IconShape for CrumpledPaper {
3011 fn child_elements(&self) -> Element {
3012 rsx!(path {
3013 d: "M4.60949 0.0634669L8.60949 1.06347L8.70129 1.09765L11.7013 2.59765C11.8536 2.67391 11.9503 2.82962 11.9503 2.99999V5.2744L13.7696 6.63964C13.9109 6.74571 13.9779 6.92517 13.9396 7.09765L12.9396 11.5976L12.923 11.6543C12.8764 11.782 12.7736 11.883 12.6427 11.9267L9.6427 12.9267C9.63669 12.9288 9.63023 12.9309 9.62414 12.9326L6.12414 13.9326C5.93622 13.9863 5.73474 13.9124 5.62609 13.75L4.20129 11.6123L1.32727 10.415L1.255 10.3769C1.0965 10.274 1.01637 10.0796 1.06359 9.89062L2.01184 6.09862L0.639766 4.26952C0.556154 4.15774 0.528995 4.01335 0.566524 3.8789C0.604322 3.7441 0.703143 3.63401 0.833125 3.58202L3.15441 2.65331L4.08215 0.332998C4.15529 0.150147 4.33695 0.0390483 4.52746 0.0507716L4.60949 0.0634669ZM6.85168 4.28124L6.80383 4.33202C6.68482 4.44095 6.514 4.47882 6.35754 4.42675L3.51477 3.47851L1.71301 4.19921L2.72473 5.5498H5.00012C5.24856 5.5499 5.45031 5.75153 5.45031 5.99999C5.45024 6.2484 5.24851 6.45008 5.00012 6.45019H2.85168L2.03137 9.73339L4.67297 10.835C4.73448 10.8606 4.78978 10.8992 4.8341 10.9482L4.87414 11L6.1925 12.9766L8.40344 12.3447L7.26184 11.6318C7.05117 11.5002 6.98679 11.2224 7.11828 11.0117C7.24995 10.801 7.52768 10.7367 7.7384 10.8682L9.25402 11.8154L10.0734 9.35741C10.0932 9.29789 10.1252 9.24336 10.1671 9.19726L10.212 9.15429L12.7755 7.01855L11.4327 6.01171L9.36145 6.83983L8.92688 8.14257L8.88977 8.22558C8.78513 8.40673 8.56375 8.49537 8.35754 8.42675C8.15135 8.35787 8.02773 8.15405 8.05285 7.94628L8.07336 7.85741L8.57336 6.35741C8.60479 6.26335 8.66575 6.18283 8.74621 6.12792L8.83313 6.08202L11.0499 5.1953V3.27733L8.62512 2.06444L6.85168 4.28124ZM10.8868 9.76366L10.212 11.7881L12.1163 11.1533L12.7745 8.19042L10.8868 9.76366ZM4.09582 2.72362L6.34484 3.47362L7.71105 1.76562L4.77258 1.03124L4.09582 2.72362Z",
3014 fill: "currentColor",
3015 })
3016 }
3017
3018 const WIDTH: Option<&'static str> = Some("15");
3019 const HEIGHT: Option<&'static str> = Some("15");
3020 const FILL: Option<&'static str> = Some("none");
3021 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3022
3023}
3024
3025#[derive(Default, Copy, Clone, PartialEq, Eq)]
3026pub struct Cube;
3027
3028impl IconShape for Cube {
3029 fn child_elements(&self) -> Element {
3030 rsx!(path {
3031 d: "M7.39258 0.761694C7.49888 0.738311 7.61147 0.749978 7.71191 0.796851L13.7119 3.59666C13.8877 3.67884 13.9999 3.85571 14 4.04978V10.9502C13.9999 11.1442 13.8877 11.3211 13.7119 11.4033L7.71191 14.2031C7.57789 14.2656 7.42211 14.2656 7.28809 14.2031L1.28809 11.4033C1.11228 11.3211 1.00008 11.1442 1 10.9502V4.04978C1.00008 3.85571 1.11228 3.67884 1.28809 3.59666L7.28809 0.796851L7.39258 0.761694ZM2 10.6308L7 12.9638V6.93064L2 4.80466V10.6308ZM8 6.93064V12.9638L13 10.6308V4.80466L8 6.93064ZM2.72754 4.0283L7.5 6.05662L12.2715 4.0283L7.5 1.80173L2.72754 4.0283Z",
3032 fill: "currentColor",
3033 })
3034 }
3035
3036 const WIDTH: Option<&'static str> = Some("15");
3037 const HEIGHT: Option<&'static str> = Some("15");
3038 const FILL: Option<&'static str> = Some("none");
3039 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3040
3041}
3042
3043#[derive(Default, Copy, Clone, PartialEq, Eq)]
3044pub struct CursorArrow;
3045
3046impl IconShape for CursorArrow {
3047 fn child_elements(&self) -> Element {
3048 rsx!(path {
3049 d: "M3.29199 0.0488633C3.46998 -0.0324273 3.67922 -0.00204229 3.82715 0.126012L12.8584 7.95023C13.013 8.08416 13.0709 8.29901 13.0039 8.49222C12.9367 8.68544 12.7581 8.81898 12.5537 8.82816L9.21875 8.97464L11.1504 13.2188C11.2648 13.4701 11.1536 13.7664 10.9023 13.8809L8.75 14.8614C8.4989 14.9756 8.2025 14.8652 8.08789 14.6143L6.15234 10.3692L3.8623 12.7852C3.72148 12.9337 3.50454 12.9821 3.31445 12.9063C3.12448 12.8304 3 12.646 3 12.4414V0.503941L3.00488 0.431676C3.02912 0.26538 3.13621 0.120068 3.29199 0.0488633ZM4 11.1875L5.93848 9.14457L5.9834 9.10257C6.09412 9.0115 6.23945 8.97131 6.38281 8.99515C6.54677 9.02255 6.6869 9.13004 6.75586 9.28129L8.79004 13.7432L10.0332 13.1778L8.00195 8.71488C7.93331 8.56388 7.94376 8.38861 8.03027 8.24711C8.11701 8.10558 8.26877 8.01628 8.43457 8.00882L11.2549 7.88382L4 1.59769V11.1875Z",
3050 fill: "currentColor",
3051 })
3052 }
3053
3054 const WIDTH: Option<&'static str> = Some("15");
3055 const HEIGHT: Option<&'static str> = Some("15");
3056 const FILL: Option<&'static str> = Some("none");
3057 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3058
3059}
3060
3061#[derive(Default, Copy, Clone, PartialEq, Eq)]
3062pub struct CursorText;
3063
3064impl IconShape for CursorText {
3065 fn child_elements(&self) -> Element {
3066 rsx!(path {
3067 d: "M10.5 1C10.7761 1 11 1.22386 11 1.5C11 1.77614 10.7761 2 10.5 2C9.5779 2 8.95996 2.23026 8.5791 2.56348C8.20699 2.88907 8 3.36626 8 4V7H9.25C9.52614 7 9.75 7.22386 9.75 7.5C9.75 7.77614 9.52614 8 9.25 8H8V11C8 11.6337 8.20699 12.1109 8.5791 12.4365C8.95996 12.7697 9.5779 13 10.5 13C10.7761 13 11 13.2239 11 13.5C11 13.7761 10.7761 14 10.5 14C9.42215 14 8.54005 13.7302 7.9209 13.1885C7.75828 13.0462 7.6184 12.8888 7.5 12.7188C7.3816 12.8888 7.24172 13.0462 7.0791 13.1885C6.45995 13.7302 5.57785 14 4.5 14C4.22386 14 4 13.7761 4 13.5C4 13.2239 4.22386 13 4.5 13C5.4221 13 6.04004 12.7697 6.4209 12.4365C6.79301 12.1109 7 11.6337 7 11V8H5.75C5.47386 8 5.25 7.77614 5.25 7.5C5.25 7.22386 5.47386 7 5.75 7H7V4C7 3.36626 6.79301 2.88907 6.4209 2.56348C6.04004 2.23026 5.4221 2 4.5 2C4.22386 2 4 1.77614 4 1.5C4 1.22386 4.22386 1 4.5 1C5.57785 1 6.45995 1.26977 7.0791 1.81152C7.24151 1.95364 7.3817 2.11048 7.5 2.28027C7.6183 2.11048 7.75849 1.95364 7.9209 1.81152C8.54005 1.26977 9.42215 1 10.5 1Z",
3068 fill: "currentColor",
3069 })
3070 }
3071
3072 const WIDTH: Option<&'static str> = Some("15");
3073 const HEIGHT: Option<&'static str> = Some("15");
3074 const FILL: Option<&'static str> = Some("none");
3075 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3076
3077}
3078
3079#[derive(Default, Copy, Clone, PartialEq, Eq)]
3080pub struct Dash;
3081
3082impl IconShape for Dash {
3083 fn child_elements(&self) -> Element {
3084 rsx!(path {
3085 d: "M9.60059 7.00977C9.82855 7.05629 10 7.25829 10 7.5C10 7.74171 9.82855 7.94371 9.60059 7.99023L9.5 8H5.5C5.22386 8 5 7.77614 5 7.5C5 7.22386 5.22386 7 5.5 7H9.5L9.60059 7.00977Z",
3086 fill: "currentColor",
3087 })
3088 }
3089
3090 const WIDTH: Option<&'static str> = Some("15");
3091 const HEIGHT: Option<&'static str> = Some("15");
3092 const FILL: Option<&'static str> = Some("none");
3093 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3094
3095}
3096
3097#[derive(Default, Copy, Clone, PartialEq, Eq)]
3098pub struct Dashboard;
3099
3100impl IconShape for Dashboard {
3101 fn child_elements(&self) -> Element {
3102 rsx!(path {
3103 d: "M5.24996 7.99996C5.47841 7.99975 5.6761 8.00007 5.85055 8.04196C6.39869 8.17373 6.8272 8.60123 6.95895 9.14938C7.00083 9.32383 7.00018 9.52151 6.99996 9.74996V12.25C7.00018 12.4784 7.00083 12.6761 6.95895 12.8505C6.82722 13.3988 6.39882 13.8272 5.85055 13.9589C5.6761 14.0008 5.47841 14.0002 5.24996 14H2.74996C2.52151 14.0002 2.32383 14.0008 2.14938 13.9589C1.60123 13.8272 1.17373 13.3987 1.04196 12.8505C1.00007 12.6761 0.999746 12.4784 0.999963 12.25V9.74996C0.999746 9.52151 1.00007 9.32383 1.04196 9.14938C1.17375 8.60136 1.60136 8.17375 2.14938 8.04196C2.32383 8.00007 2.52151 7.99975 2.74996 7.99996H5.24996ZM12.25 7.99996C12.4784 7.99975 12.6761 8.00007 12.8505 8.04196C13.3987 8.17373 13.8272 8.60123 13.9589 9.14938C14.0008 9.32383 14.0002 9.52151 14 9.74996V12.25C14.0002 12.4784 14.0008 12.6761 13.9589 12.8505C13.8272 13.3988 13.3988 13.8272 12.8505 13.9589C12.6761 14.0008 12.4784 14.0002 12.25 14H9.74996C9.52151 14.0002 9.32383 14.0008 9.14938 13.9589C8.60123 13.8272 8.17373 13.3987 8.04196 12.8505C8.00007 12.6761 7.99975 12.4784 7.99996 12.25V9.74996C7.99975 9.52151 8.00007 9.32383 8.04196 9.14938C8.17375 8.60136 8.60136 8.17375 9.14938 8.04196C9.32383 8.00007 9.52151 7.99975 9.74996 7.99996H12.25ZM2.79977 8.99996C2.49333 8.99997 2.42679 9.00339 2.38375 9.01364C2.20093 9.05753 2.05753 9.20093 2.01364 9.38375C2.00339 9.42679 1.99997 9.49333 1.99996 9.79977V12.2002C1.99996 12.5078 2.0033 12.5741 2.01364 12.6172C2.05762 12.7998 2.20104 12.9424 2.38375 12.9863C2.42679 12.9965 2.49326 13 2.79977 13H5.20016C5.50783 13 5.57412 12.9966 5.61715 12.9863C5.79968 12.9423 5.94233 12.7997 5.98629 12.6172C5.99662 12.5741 5.99996 12.5078 5.99996 12.2002V9.79977C5.99996 9.49326 5.99654 9.42679 5.98629 9.38375C5.94243 9.20104 5.79982 9.05762 5.61715 9.01364C5.57412 9.0033 5.50783 8.99996 5.20016 8.99996H2.79977ZM9.79977 8.99996C9.49333 8.99997 9.42679 9.00339 9.38375 9.01364C9.20093 9.05753 9.05753 9.20093 9.01364 9.38375C9.00339 9.42679 8.99997 9.49333 8.99996 9.79977V12.2002C8.99996 12.5078 9.0033 12.5741 9.01364 12.6172C9.05762 12.7998 9.20104 12.9424 9.38375 12.9863C9.42679 12.9965 9.49326 13 9.79977 13H12.2002C12.5078 13 12.5741 12.9966 12.6172 12.9863C12.7997 12.9423 12.9423 12.7997 12.9863 12.6172C12.9966 12.5741 13 12.5078 13 12.2002V9.79977C13 9.49326 12.9965 9.42679 12.9863 9.38375C12.9424 9.20104 12.7998 9.05762 12.6172 9.01364C12.5741 9.0033 12.5078 8.99996 12.2002 8.99996H9.79977ZM5.24996 0.999963C5.47841 0.999746 5.6761 1.00007 5.85055 1.04196C6.39869 1.17373 6.8272 1.60123 6.95895 2.14938C7.00083 2.32383 7.00018 2.52151 6.99996 2.74996V5.24996C7.00018 5.47841 7.00083 5.6761 6.95895 5.85055C6.82722 6.39882 6.39882 6.82722 5.85055 6.95895C5.6761 7.00083 5.47841 7.00018 5.24996 6.99996H2.74996C2.52151 7.00018 2.32383 7.00083 2.14938 6.95895C1.60123 6.8272 1.17373 6.39869 1.04196 5.85055C1.00007 5.6761 0.999746 5.47841 0.999963 5.24996V2.74996C0.999746 2.52151 1.00007 2.32383 1.04196 2.14938C1.17375 1.60136 1.60136 1.17375 2.14938 1.04196C2.32383 1.00007 2.52151 0.999746 2.74996 0.999963H5.24996ZM12.25 0.999963C12.4784 0.999746 12.6761 1.00007 12.8505 1.04196C13.3987 1.17373 13.8272 1.60123 13.9589 2.14938C14.0008 2.32383 14.0002 2.52151 14 2.74996V5.24996C14.0002 5.47841 14.0008 5.6761 13.9589 5.85055C13.8272 6.39882 13.3988 6.82722 12.8505 6.95895C12.6761 7.00083 12.4784 7.00018 12.25 6.99996H9.74996C9.52151 7.00018 9.32383 7.00083 9.14938 6.95895C8.60123 6.8272 8.17373 6.39869 8.04196 5.85055C8.00007 5.6761 7.99975 5.47841 7.99996 5.24996V2.74996C7.99975 2.52151 8.00007 2.32383 8.04196 2.14938C8.17375 1.60136 8.60136 1.17375 9.14938 1.04196C9.32383 1.00007 9.52151 0.999746 9.74996 0.999963H12.25ZM2.79977 1.99996C2.49333 1.99997 2.42679 2.00339 2.38375 2.01364C2.20093 2.05753 2.05753 2.20093 2.01364 2.38375C2.00339 2.42679 1.99997 2.49333 1.99996 2.79977V5.20016C1.99996 5.50783 2.0033 5.57412 2.01364 5.61715C2.05762 5.79982 2.20104 5.94243 2.38375 5.98629C2.42679 5.99654 2.49326 5.99996 2.79977 5.99996H5.20016C5.50783 5.99996 5.57412 5.99662 5.61715 5.98629C5.79968 5.94233 5.94233 5.79968 5.98629 5.61715C5.99662 5.57412 5.99996 5.50783 5.99996 5.20016V2.79977C5.99996 2.49326 5.99654 2.42679 5.98629 2.38375C5.94243 2.20104 5.79982 2.05762 5.61715 2.01364C5.57412 2.0033 5.50783 1.99996 5.20016 1.99996H2.79977ZM9.79977 1.99996C9.49333 1.99997 9.42679 2.00339 9.38375 2.01364C9.20093 2.05753 9.05753 2.20093 9.01364 2.38375C9.00339 2.42679 8.99997 2.49333 8.99996 2.79977V5.20016C8.99996 5.50783 9.0033 5.57412 9.01364 5.61715C9.05762 5.79982 9.20104 5.94243 9.38375 5.98629C9.42679 5.99654 9.49326 5.99996 9.79977 5.99996H12.2002C12.5078 5.99996 12.5741 5.99662 12.6172 5.98629C12.7997 5.94233 12.9423 5.79968 12.9863 5.61715C12.9966 5.57412 13 5.50783 13 5.20016V2.79977C13 2.49326 12.9965 2.42679 12.9863 2.38375C12.9424 2.20104 12.7998 2.05762 12.6172 2.01364C12.5741 2.0033 12.5078 1.99996 12.2002 1.99996H9.79977Z",
3104 fill: "currentColor",
3105 })
3106 }
3107
3108 const WIDTH: Option<&'static str> = Some("15");
3109 const HEIGHT: Option<&'static str> = Some("15");
3110 const FILL: Option<&'static str> = Some("none");
3111 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3112
3113}
3114
3115#[derive(Default, Copy, Clone, PartialEq, Eq)]
3116pub struct Database;
3117
3118impl IconShape for Database {
3119 fn child_elements(&self) -> Element {
3120 rsx!(path {
3121 d: "M7.50098 1C8.92616 1.00005 10.2341 1.17101 11.2002 1.45801C11.6803 1.60065 12.1023 1.77911 12.4141 1.99805C12.7132 2.20815 13.0037 2.52435 13.0039 2.95312C13.0039 2.96153 13.0012 2.9702 13.001 2.97852C13.0013 2.98567 13.0039 2.99276 13.0039 3V11.7324L12.9932 11.8867C12.9443 12.2389 12.7317 12.5363 12.4629 12.7695C12.1543 13.0371 11.7281 13.2615 11.2246 13.4424C10.2154 13.8049 8.87594 13.9999 7.50098 14C6.12589 14 4.78574 13.8049 3.77637 13.4424C3.27287 13.2615 2.84664 13.0371 2.53809 12.7695C2.26925 12.5364 2.05767 12.2389 2.00879 11.8867L1.99805 11.7324V3C1.99805 2.99244 1.99963 2.98501 2 2.97754C1.9998 2.96955 1.99805 2.9612 1.99805 2.95312C1.99821 2.52441 2.28785 2.20815 2.58691 1.99805C2.8986 1.77923 3.32086 1.60059 3.80078 1.45801C4.76702 1.17103 6.07571 1 7.50098 1ZM12.0967 8.30078C11.8458 8.45474 11.5519 8.59139 11.2246 8.70898C10.2154 9.07155 8.87595 9.26752 7.50098 9.26758C6.12587 9.26758 4.78574 9.07155 3.77637 8.70898C3.4492 8.59142 3.15514 8.45468 2.9043 8.30078V11.7324L2.91309 11.7891C2.93137 11.8568 2.98615 11.9568 3.13281 12.084C3.32691 12.2523 3.64001 12.4297 4.08301 12.5889C4.96749 12.9066 6.19793 13.0928 7.50098 13.0928C8.8039 13.0927 10.0336 12.9066 10.918 12.5889C11.361 12.4297 11.6741 12.2523 11.8682 12.084C12.0147 11.9568 12.0696 11.8567 12.0879 11.7891L12.0967 11.7324V8.30078ZM12.0967 4.0957C11.837 4.23069 11.5333 4.34927 11.2002 4.44824C10.2341 4.73524 8.92616 4.9062 7.50098 4.90625C6.07561 4.90625 4.76704 4.73526 3.80078 4.44824C3.46798 4.34937 3.16389 4.23153 2.9043 4.09668V7L2.91211 7.05664C2.93053 7.12435 2.98611 7.22433 3.13281 7.35156C3.32687 7.51979 3.64019 7.69634 4.08301 7.85547C4.96749 8.17317 6.19791 8.36035 7.50098 8.36035C8.80391 8.36029 10.0336 8.17316 10.918 7.85547C11.3608 7.69634 11.6741 7.5198 11.8682 7.35156C12.0146 7.22449 12.0696 7.12433 12.0879 7.05664L12.0967 7V4.0957ZM7.50098 1.90625C6.13806 1.90625 4.92078 2.07141 4.05957 2.32715C3.62628 2.45586 3.30767 2.60037 3.1084 2.74023C3.01018 2.80923 2.9547 2.86778 2.92676 2.9082C2.91402 2.92674 2.90851 2.93984 2.90625 2.94629C2.90534 2.94896 2.90456 2.95121 2.9043 2.95215V2.9541C2.90442 2.95483 2.90522 2.95695 2.90625 2.95996C2.90842 2.96626 2.9138 2.97916 2.92676 2.99805C2.95461 3.03848 3.00987 3.09681 3.1084 3.16602C3.30765 3.30595 3.62603 3.45031 4.05957 3.5791C4.92079 3.83487 6.13796 4 7.50098 4C8.86397 3.99995 10.0813 3.83491 10.9424 3.5791C11.3755 3.45037 11.6934 3.30586 11.8926 3.16602C11.9909 3.09689 12.0464 3.03844 12.0742 2.99805C12.087 2.97932 12.0926 2.96626 12.0947 2.95996C12.0957 2.95708 12.0966 2.95482 12.0967 2.9541V2.95215C12.0964 2.95124 12.0957 2.94908 12.0947 2.94629C12.0925 2.93987 12.0871 2.92691 12.0742 2.9082C12.0463 2.86776 11.9911 2.8094 11.8926 2.74023C11.6934 2.60036 11.3756 2.45589 10.9424 2.32715C10.0813 2.07134 8.86397 1.9063 7.50098 1.90625Z",
3122 fill: "currentColor",
3123 })
3124 }
3125
3126 const WIDTH: Option<&'static str> = Some("15");
3127 const HEIGHT: Option<&'static str> = Some("15");
3128 const FILL: Option<&'static str> = Some("none");
3129 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3130
3131}
3132
3133#[derive(Default, Copy, Clone, PartialEq, Eq)]
3134pub struct Desktop;
3135
3136impl IconShape for Desktop {
3137 fn child_elements(&self) -> Element {
3138 rsx!(path {
3139 d: "M13.8779 2.00684C14.5082 2.07092 15 2.60285 15 3.25V10.75C15 11.4404 14.4404 12 13.75 12H9.92676L10.1699 13.2988L10.1797 13.4238C10.1678 13.7104 9.93104 13.95 9.62988 13.9502H5.37012C5.02598 13.95 4.76674 13.6371 4.83008 13.2988L5.07324 12H1.25C0.559644 12 2.14752e-08 11.4404 0 10.75V3.25C1.34221e-09 2.55964 0.559644 2 1.25 2H13.75L13.8779 2.00684ZM5.98926 12L5.79297 13.0498H9.20703L9.01074 12H5.98926ZM1.25 3C1.11193 3 1 3.11193 1 3.25V10.75C1 10.8881 1.11193 11 1.25 11H13.75C13.8881 11 14 10.8881 14 10.75V3.25C14 3.12931 13.9145 3.02833 13.8008 3.00488L13.75 3H1.25Z",
3140 fill: "currentColor",
3141 })
3142 }
3143
3144 const WIDTH: Option<&'static str> = Some("15");
3145 const HEIGHT: Option<&'static str> = Some("15");
3146 const FILL: Option<&'static str> = Some("none");
3147 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3148
3149}
3150
3151#[derive(Default, Copy, Clone, PartialEq, Eq)]
3152pub struct Dimensions;
3153
3154impl IconShape for Dimensions {
3155 fn child_elements(&self) -> Element {
3156 rsx!(path {
3157 d: "M13.3027 4.00411C13.4028 3.87542 13.5971 3.87542 13.6972 4.00411L14.9365 5.59688C15.0638 5.76108 14.9461 6.0002 14.7382 6.0002H14V12.0002H14.7382C14.9462 12.0002 15.0639 12.2393 14.9365 12.4035L13.6972 13.9963C13.5971 14.125 13.4028 14.125 13.3027 13.9963L12.0634 12.4035C11.936 12.2394 12.053 12.0005 12.2607 12.0002H13V6.0002H12.2607C12.053 5.99995 11.9361 5.761 12.0634 5.59688L13.3027 4.00411ZM9.65328 4.00801C10.4096 4.08486 11 4.72357 11 5.5002V12.5002L10.9921 12.6535C10.9204 13.3594 10.3592 13.9207 9.65328 13.9924L9.49996 14.0002H2.49996L2.34664 13.9924C1.64068 13.9207 1.07949 13.3595 1.00777 12.6535L0.999957 12.5002V5.5002C0.999957 4.72354 1.59023 4.08481 2.34664 4.00801L2.49996 4.0002H9.49996L9.65328 4.00801ZM2.49996 5.0002C2.22381 5.0002 1.99996 5.22406 1.99996 5.5002V12.5002C2 12.7763 2.22384 13.0002 2.49996 13.0002H9.49996C9.77603 13.0001 9.99992 12.7763 9.99996 12.5002V5.5002C9.99996 5.22409 9.77605 5.00026 9.49996 5.0002H2.49996ZM8.99996 0.261919C8.99996 0.0540039 9.23907 -0.0636846 9.40328 0.0636771L10.9961 1.30293C11.1247 1.40302 11.1247 1.59738 10.9961 1.69747L9.40328 2.93672C9.23916 3.06411 9.00022 2.94719 8.99996 2.73946V2.0002H2.99996V2.73946C2.99967 2.94716 2.76075 3.06408 2.59664 2.93672L1.00386 1.69747C0.875177 1.59738 0.875177 1.40302 1.00386 1.30293L2.59664 0.0636771C2.76072 -0.0636022 2.9996 0.0533126 2.99996 0.260943V1.0002H8.99996V0.261919Z",
3158 fill: "currentColor",
3159 })
3160 }
3161
3162 const WIDTH: Option<&'static str> = Some("15");
3163 const HEIGHT: Option<&'static str> = Some("15");
3164 const FILL: Option<&'static str> = Some("none");
3165 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3166
3167}
3168
3169#[derive(Default, Copy, Clone, PartialEq, Eq)]
3170pub struct Disc;
3171
3172impl IconShape for Disc {
3173 fn child_elements(&self) -> Element {
3174 rsx!(path {
3175 d: "M7.49915 0.877045C11.1566 0.877045 14.1218 3.84178 14.1222 7.49911C14.1222 11.1568 11.1568 14.1222 7.49915 14.1222C3.84181 14.1218 0.877075 11.1565 0.877075 7.49911C0.877486 3.84203 3.84206 0.877456 7.49915 0.877045ZM7.49915 1.82626C4.36673 1.82667 1.8267 4.3667 1.82629 7.49911C1.82629 10.6319 4.36648 13.1716 7.49915 13.172C10.6321 13.172 13.172 10.6321 13.172 7.49911C13.1716 4.36645 10.6319 1.82626 7.49915 1.82626ZM7.68665 5.68759C8.60556 5.78095 9.32321 6.55659 9.32336 7.50009L9.3136 7.68661C9.22016 8.60551 8.44365 9.32327 7.50012 9.32333L7.3136 9.31357C6.45615 9.22626 5.77484 8.54409 5.68762 7.68661L5.67786 7.50009C5.67802 6.49376 6.49379 5.67799 7.50012 5.67783L7.68665 5.68759ZM7.50012 6.62802C7.01846 6.62819 6.62822 7.01843 6.62805 7.50009C6.62825 7.98173 7.01848 8.37297 7.50012 8.37314C7.98185 8.37307 8.37297 7.98179 8.37317 7.50009C8.373 7.01837 7.98187 6.62809 7.50012 6.62802Z",
3176 fill: "currentColor",
3177 })
3178 }
3179
3180 const WIDTH: Option<&'static str> = Some("15");
3181 const HEIGHT: Option<&'static str> = Some("15");
3182 const FILL: Option<&'static str> = Some("none");
3183 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3184
3185}
3186
3187#[derive(Default, Copy, Clone, PartialEq, Eq)]
3188pub struct DiscordLogo;
3189
3190impl IconShape for DiscordLogo {
3191 fn child_elements(&self) -> Element {
3192 rsx!(path {
3193 d: "M10.0496 1.82295C10.7856 1.90319 11.8574 2.26115 12.6199 2.62373L12.9266 2.77901C12.9514 2.79253 12.9749 2.80828 12.9969 2.82588L13.0584 2.88448C13.372 3.24313 13.6573 3.82909 13.8807 4.38252C14.0527 4.80885 14.2024 5.25279 14.3123 5.63057L14.408 5.98409C14.7166 7.21788 14.904 8.66891 14.9627 10.0876L14.9793 10.6931C14.9805 10.7732 14.9618 10.8526 14.9246 10.9235C14.6234 11.4959 13.9767 12.0276 13.3289 12.4157C12.6739 12.8081 11.91 13.1188 11.2938 13.1784C11.1444 13.1927 10.9961 13.1363 10.8943 13.0261C10.74 12.8588 10.4782 12.468 10.2801 12.1647C10.19 12.027 10.1058 11.8951 10.0389 11.7897C9.37742 11.91 8.54811 11.9802 7.49981 11.9802C6.45005 11.9802 5.61963 11.9104 4.95782 11.7897C4.89097 11.895 4.80752 12.0271 4.71758 12.1647C4.51945 12.468 4.25767 12.8588 4.10332 13.0261C4.00161 13.1363 3.85321 13.1927 3.70391 13.1784C3.08767 13.1188 2.3237 12.808 1.66875 12.4157C1.02103 12.0277 0.374262 11.4959 0.0730493 10.9235C0.0358138 10.8526 0.0171992 10.7732 0.0183618 10.6931L0.0349634 10.0876C0.093615 8.6689 0.281084 7.21789 0.589651 5.98409L0.685354 5.63057C0.795251 5.25277 0.944942 4.80887 1.11699 4.38252C1.34039 3.82904 1.6256 3.24312 1.93926 2.88448L2.00078 2.82588C2.02278 2.8083 2.04627 2.79252 2.0711 2.77901L2.37774 2.62373C3.1403 2.26118 4.21209 1.90319 4.94805 1.82295L5.01153 1.821C5.03258 1.8215 5.05416 1.82261 5.075 1.82588C5.28102 1.85839 5.45876 1.9653 5.58965 2.06416C5.72776 2.16858 5.85682 2.29746 5.96758 2.42744C6.12821 2.61605 6.28274 2.84583 6.38262 3.06319C6.72535 3.03567 7.09725 3.01924 7.49981 3.01924C7.90117 3.01924 8.27218 3.03582 8.61407 3.06319C8.71396 2.84571 8.86935 2.61616 9.03008 2.42744C9.14087 2.29742 9.26985 2.1686 9.40801 2.06416C9.53894 1.96527 9.71655 1.85835 9.92266 1.82588C9.94357 1.8226 9.96502 1.82149 9.98614 1.821L10.0496 1.82295ZM9.98614 2.82979C9.91816 2.88122 9.8394 2.95699 9.76055 3.04951C9.71885 3.09848 9.68037 3.14739 9.64629 3.19502C9.95188 3.25099 10.2245 3.31714 10.4656 3.39131C11.0638 3.57535 11.5167 3.81895 11.782 4.09248L11.8836 4.21162L11.9344 4.29463C12.0299 4.49642 11.9733 4.74426 11.7879 4.8835C11.6023 5.02273 11.3485 5.00737 11.1814 4.85909L11.116 4.7878L11.032 4.70674C10.906 4.60538 10.6455 4.4505 10.1834 4.3083C9.5889 4.12545 8.71304 3.98018 7.49981 3.98018C6.28651 3.98019 5.4107 4.12542 4.81621 4.3083C4.20029 4.49783 3.94256 4.70931 3.8836 4.7878C3.72451 4.99974 3.42375 5.04252 3.21172 4.8835C2.99998 4.72437 2.95706 4.42357 3.11602 4.21162C3.35729 3.89014 3.85048 3.60163 4.53399 3.39131C4.77453 3.31731 5.04664 3.2519 5.35137 3.196C5.31718 3.14817 5.279 3.0987 5.23711 3.04951C5.15831 2.95705 5.07947 2.88121 5.01153 2.82979C4.98801 2.81202 4.96732 2.80113 4.95293 2.79268C4.28496 2.8887 3.25957 3.24454 2.60918 3.58174C2.42222 3.82444 2.2081 4.24518 2.00762 4.7419C1.84752 5.13863 1.70878 5.55164 1.60821 5.89717L1.52031 6.21651C1.19852 7.50323 1.01384 9.06717 0.981252 10.573C1.1891 10.8908 1.61848 11.2669 2.16192 11.5925C2.64542 11.8821 3.15024 12.0901 3.54668 12.1794C3.64861 12.0372 3.78107 11.8426 3.91387 11.6394C3.93652 11.6047 3.95753 11.5694 3.9793 11.5358C3.19523 11.2572 2.77363 10.8748 2.50078 10.4655L2.9002 10.1999L3.29961 9.9333C3.56096 10.3253 4.24367 11.0192 7.49981 11.0192C10.7561 11.0192 11.4396 10.3254 11.701 9.9333C11.8481 9.71328 12.1457 9.65379 12.366 9.80049C12.5863 9.94736 12.6462 10.245 12.4998 10.4655C12.2266 10.8754 11.8036 11.2581 11.0174 11.5368C11.0391 11.5703 11.0612 11.6048 11.0838 11.6394C11.2166 11.8426 11.3491 12.0372 11.451 12.1794C11.8475 12.0901 12.3522 11.8821 12.8357 11.5925C13.3792 11.2669 13.8086 10.8908 14.0164 10.573C13.9838 9.06719 13.7991 7.50322 13.4773 6.21651L13.3895 5.89717C13.2889 5.55166 13.1501 5.13861 12.99 4.7419C12.7896 4.24524 12.5754 3.82445 12.3885 3.58174C11.7381 3.24452 10.7128 2.8887 10.0447 2.79268C10.0303 2.80114 10.0097 2.81196 9.98614 2.82979ZM2.6336 9.80049C2.85404 9.6538 3.15258 9.71307 3.29961 9.9333L2.50078 10.4655C2.35423 10.2451 2.41345 9.9475 2.6336 9.80049ZM4.99981 6.6003C5.34512 6.60194 5.6761 6.75003 5.91973 7.01241C6.16321 7.2747 6.29955 7.62965 6.29961 7.99971C6.29961 8.36994 6.16336 8.72562 5.91973 8.98799C5.6761 9.25032 5.34509 9.39846 4.99981 9.4001C4.65473 9.3984 4.32441 9.25009 4.08086 8.98799C3.83723 8.72562 3.7 8.36994 3.7 7.99971C3.70007 7.62958 3.83729 7.27471 4.08086 7.01241C4.32443 6.75016 4.65462 6.602 4.99981 6.6003ZM9.99883 6.6003C10.3441 6.60195 10.6751 6.75004 10.9188 7.01241C11.1622 7.27469 11.2986 7.62971 11.2986 7.99971C11.2986 8.36992 11.1624 8.72562 10.9188 8.98799C10.6751 9.25036 10.3441 9.39845 9.99883 9.4001C9.65352 9.39846 9.32254 9.25036 9.07891 8.98799C8.83529 8.72562 8.69903 8.36993 8.69903 7.99971C8.69909 7.6297 8.83548 7.27469 9.07891 7.01241C9.32254 6.75003 9.65352 6.60194 9.99883 6.6003Z",
3194 fill: "currentColor",
3195 })
3196 }
3197
3198 const WIDTH: Option<&'static str> = Some("15");
3199 const HEIGHT: Option<&'static str> = Some("15");
3200 const FILL: Option<&'static str> = Some("none");
3201 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3202
3203}
3204
3205#[derive(Default, Copy, Clone, PartialEq, Eq)]
3206pub struct DividerHorizontal;
3207
3208impl IconShape for DividerHorizontal {
3209 fn child_elements(&self) -> Element {
3210 rsx!(path {
3211 d: "M12.5 7C12.7761 7 13 7.22386 13 7.5C13 7.77614 12.7761 8 12.5 8H2.5C2.22386 8 2 7.77614 2 7.5C2 7.22386 2.22386 7 2.5 7H12.5Z",
3212 fill: "currentColor",
3213 })
3214 }
3215
3216 const WIDTH: Option<&'static str> = Some("15");
3217 const HEIGHT: Option<&'static str> = Some("15");
3218 const FILL: Option<&'static str> = Some("none");
3219 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3220
3221}
3222
3223#[derive(Default, Copy, Clone, PartialEq, Eq)]
3224pub struct DividerVertical;
3225
3226impl IconShape for DividerVertical {
3227 fn child_elements(&self) -> Element {
3228 rsx!(path {
3229 d: "M7.5 2C7.77614 2 8 2.22386 8 2.5V12.5C8 12.7761 7.77614 13 7.5 13C7.22386 13 7 12.7761 7 12.5V2.5C7 2.22386 7.22386 2 7.5 2Z",
3230 fill: "currentColor",
3231 })
3232 }
3233
3234 const WIDTH: Option<&'static str> = Some("15");
3235 const HEIGHT: Option<&'static str> = Some("15");
3236 const FILL: Option<&'static str> = Some("none");
3237 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3238
3239}
3240
3241#[derive(Default, Copy, Clone, PartialEq, Eq)]
3242pub struct Dot;
3243
3244impl IconShape for Dot {
3245 fn child_elements(&self) -> Element {
3246 rsx!(path {
3247 d: "M7.5 4.875C8.94975 4.875 10.125 6.05025 10.125 7.5C10.125 8.94975 8.94975 10.125 7.5 10.125C6.05025 10.125 4.875 8.94975 4.875 7.5C4.875 6.05025 6.05025 4.875 7.5 4.875ZM7.5 5.875C6.60254 5.875 5.875 6.60254 5.875 7.5C5.875 8.39746 6.60254 9.125 7.5 9.125C8.39746 9.125 9.125 8.39746 9.125 7.5C9.125 6.60254 8.39746 5.875 7.5 5.875Z",
3248 fill: "currentColor",
3249 })
3250 }
3251
3252 const WIDTH: Option<&'static str> = Some("15");
3253 const HEIGHT: Option<&'static str> = Some("15");
3254 const FILL: Option<&'static str> = Some("none");
3255 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3256
3257}
3258
3259#[derive(Default, Copy, Clone, PartialEq, Eq)]
3260pub struct DotFilled;
3261
3262impl IconShape for DotFilled {
3263 fn child_elements(&self) -> Element {
3264 rsx!(path {
3265 d: "M7.5 5.125C8.81168 5.125 9.875 6.18832 9.875 7.5C9.875 8.81168 8.81168 9.875 7.5 9.875C6.18832 9.875 5.125 8.81168 5.125 7.5C5.125 6.18832 6.18832 5.125 7.5 5.125Z",
3266 fill: "currentColor",
3267 })
3268 }
3269
3270 const WIDTH: Option<&'static str> = Some("15");
3271 const HEIGHT: Option<&'static str> = Some("15");
3272 const FILL: Option<&'static str> = Some("none");
3273 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3274
3275}
3276
3277#[derive(Default, Copy, Clone, PartialEq, Eq)]
3278pub struct DotsHorizontal;
3279
3280impl IconShape for DotsHorizontal {
3281 fn child_elements(&self) -> Element {
3282 rsx!(path {
3283 d: "M2.5 6.375C3.12132 6.375 3.625 6.87868 3.625 7.5C3.625 8.12132 3.12132 8.625 2.5 8.625C1.87868 8.625 1.375 8.12132 1.375 7.5C1.375 6.87868 1.87868 6.375 2.5 6.375ZM7.5 6.375C8.12132 6.375 8.625 6.87868 8.625 7.5C8.625 8.12132 8.12132 8.625 7.5 8.625C6.87868 8.625 6.375 8.12132 6.375 7.5C6.375 6.87868 6.87868 6.375 7.5 6.375ZM12.5 6.375C13.1213 6.375 13.625 6.87868 13.625 7.5C13.625 8.12132 13.1213 8.625 12.5 8.625C11.8787 8.625 11.375 8.12132 11.375 7.5C11.375 6.87868 11.8787 6.375 12.5 6.375Z",
3284 fill: "currentColor",
3285 })
3286 }
3287
3288 const WIDTH: Option<&'static str> = Some("15");
3289 const HEIGHT: Option<&'static str> = Some("15");
3290 const FILL: Option<&'static str> = Some("none");
3291 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3292
3293}
3294
3295#[derive(Default, Copy, Clone, PartialEq, Eq)]
3296pub struct DotsVertical;
3297
3298impl IconShape for DotsVertical {
3299 fn child_elements(&self) -> Element {
3300 rsx!(path {
3301 d: "M7.5 11.375C8.12132 11.375 8.625 11.8787 8.625 12.5C8.625 13.1213 8.12132 13.625 7.5 13.625C6.87868 13.625 6.375 13.1213 6.375 12.5C6.375 11.8787 6.87868 11.375 7.5 11.375ZM7.5 6.375C8.12132 6.375 8.625 6.87868 8.625 7.5C8.625 8.12132 8.12132 8.625 7.5 8.625C6.87868 8.625 6.375 8.12132 6.375 7.5C6.375 6.87868 6.87868 6.375 7.5 6.375ZM7.5 1.375C8.12132 1.375 8.625 1.87868 8.625 2.5C8.625 3.12132 8.12132 3.625 7.5 3.625C6.87868 3.625 6.375 3.12132 6.375 2.5C6.375 1.87868 6.87868 1.375 7.5 1.375Z",
3302 fill: "currentColor",
3303 })
3304 }
3305
3306 const WIDTH: Option<&'static str> = Some("15");
3307 const HEIGHT: Option<&'static str> = Some("15");
3308 const FILL: Option<&'static str> = Some("none");
3309 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3310
3311}
3312
3313#[derive(Default, Copy, Clone, PartialEq, Eq)]
3314pub struct DoubleArrowDown;
3315
3316impl IconShape for DoubleArrowDown {
3317 fn child_elements(&self) -> Element {
3318 rsx!(path {
3319 d: "M11.2248 8.08224C11.4189 7.95407 11.6829 7.97583 11.8537 8.14669C12.0246 8.31756 12.0463 8.58152 11.9182 8.7756L11.8537 8.85372L7.85372 12.8537C7.65846 13.049 7.34195 13.049 7.14669 12.8537L3.14669 8.85372L3.08224 8.7756C2.95407 8.58152 2.97583 8.31756 3.14669 8.14669C3.31756 7.97583 3.58152 7.95407 3.7756 8.08224L3.85372 8.14669L7.50021 11.7932L11.1467 8.14669L11.2248 8.08224ZM11.2248 2.08224C11.4189 1.95407 11.6829 1.97583 11.8537 2.14669C12.0246 2.31756 12.0463 2.58152 11.9182 2.7756L11.8537 2.85372L7.85372 6.85372C7.65846 7.04899 7.34195 7.04899 7.14669 6.85372L3.14669 2.85372L3.08224 2.7756C2.95407 2.58152 2.97583 2.31756 3.14669 2.14669C3.31756 1.97583 3.58152 1.95407 3.7756 2.08224L3.85372 2.14669L7.50021 5.79318L11.1467 2.14669L11.2248 2.08224Z",
3320 fill: "currentColor",
3321 })
3322 }
3323
3324 const WIDTH: Option<&'static str> = Some("15");
3325 const HEIGHT: Option<&'static str> = Some("15");
3326 const FILL: Option<&'static str> = Some("none");
3327 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3328
3329}
3330
3331#[derive(Default, Copy, Clone, PartialEq, Eq)]
3332pub struct DoubleArrowLeft;
3333
3334impl IconShape for DoubleArrowLeft {
3335 fn child_elements(&self) -> Element {
3336 rsx!(path {
3337 d: "M6.22457 3.08224C6.41865 2.95407 6.68261 2.97583 6.85348 3.14669C7.02434 3.31756 7.04609 3.58152 6.91793 3.7756L6.85348 3.85372L3.20699 7.50021L6.85348 11.1467L6.91793 11.2248C7.04609 11.4189 7.02434 11.6829 6.85348 11.8537C6.68261 12.0246 6.41865 12.0463 6.22457 11.9182L6.14645 11.8537L2.14645 7.85372C1.95118 7.65846 1.95118 7.34195 2.14645 7.14669L6.14645 3.14669L6.22457 3.08224ZM12.2246 3.08224C12.4187 2.95407 12.6826 2.97583 12.8535 3.14669C13.0243 3.31756 13.0461 3.58152 12.9179 3.7756L12.8535 3.85372L9.20699 7.50021L12.8535 11.1467L12.9179 11.2248C13.0461 11.4189 13.0243 11.6829 12.8535 11.8537C12.6826 12.0246 12.4187 12.0463 12.2246 11.9182L12.1464 11.8537L8.14645 7.85372C7.95118 7.65846 7.95118 7.34195 8.14645 7.14669L12.1464 3.14669L12.2246 3.08224Z",
3338 fill: "currentColor",
3339 })
3340 }
3341
3342 const WIDTH: Option<&'static str> = Some("15");
3343 const HEIGHT: Option<&'static str> = Some("15");
3344 const FILL: Option<&'static str> = Some("none");
3345 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3346
3347}
3348
3349#[derive(Default, Copy, Clone, PartialEq, Eq)]
3350pub struct DoubleArrowRight;
3351
3352impl IconShape for DoubleArrowRight {
3353 fn child_elements(&self) -> Element {
3354 rsx!(path {
3355 d: "M2.14669 3.14669C2.31756 2.97583 2.58152 2.95407 2.7756 3.08224L2.85372 3.14669L6.85372 7.14669C7.04899 7.34195 7.04899 7.65846 6.85372 7.85372L2.85372 11.8537L2.7756 11.9182C2.58152 12.0463 2.31756 12.0246 2.14669 11.8537C1.97583 11.6829 1.95407 11.4189 2.08224 11.2248L2.14669 11.1467L5.79318 7.50021L2.14669 3.85372L2.08224 3.7756C1.95407 3.58152 1.97583 3.31756 2.14669 3.14669ZM8.14669 3.14669C8.31756 2.97583 8.58152 2.95407 8.7756 3.08224L8.85372 3.14669L12.8537 7.14669C13.049 7.34195 13.049 7.65846 12.8537 7.85372L8.85372 11.8537L8.7756 11.9182C8.58152 12.0463 8.31756 12.0246 8.14669 11.8537C7.97583 11.6829 7.95407 11.4189 8.08224 11.2248L8.14669 11.1467L11.7932 7.50021L8.14669 3.85372L8.08224 3.7756C7.95407 3.58152 7.97583 3.31756 8.14669 3.14669Z",
3356 fill: "currentColor",
3357 })
3358 }
3359
3360 const WIDTH: Option<&'static str> = Some("15");
3361 const HEIGHT: Option<&'static str> = Some("15");
3362 const FILL: Option<&'static str> = Some("none");
3363 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3364
3365}
3366
3367#[derive(Default, Copy, Clone, PartialEq, Eq)]
3368pub struct DoubleArrowUp;
3369
3370impl IconShape for DoubleArrowUp {
3371 fn child_elements(&self) -> Element {
3372 rsx!(path {
3373 d: "M7.14669 8.14645C7.34195 7.95118 7.65846 7.95118 7.85372 8.14645L11.8537 12.1464L11.9182 12.2246C12.0463 12.4186 12.0246 12.6826 11.8537 12.8535C11.6829 13.0243 11.4189 13.0461 11.2248 12.9179L11.1467 12.8535L7.50021 9.20699L3.85372 12.8535L3.7756 12.9179C3.58152 13.0461 3.31756 13.0243 3.14669 12.8535C2.97583 12.6826 2.95407 12.4187 3.08224 12.2246L3.14669 12.1464L7.14669 8.14645ZM7.14669 2.14645C7.34195 1.95118 7.65846 1.95118 7.85372 2.14645L11.8537 6.14645L11.9182 6.22457C12.0463 6.41865 12.0246 6.68261 11.8537 6.85348C11.6829 7.02434 11.4189 7.04609 11.2248 6.91793L11.1467 6.85348L7.50021 3.20699L3.85372 6.85348L3.7756 6.91793C3.58152 7.04609 3.31756 7.02434 3.14669 6.85348C2.97583 6.68261 2.95407 6.41865 3.08224 6.22457L3.14669 6.14645L7.14669 2.14645Z",
3374 fill: "currentColor",
3375 })
3376 }
3377
3378 const WIDTH: Option<&'static str> = Some("15");
3379 const HEIGHT: Option<&'static str> = Some("15");
3380 const FILL: Option<&'static str> = Some("none");
3381 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3382
3383}
3384
3385#[derive(Default, Copy, Clone, PartialEq, Eq)]
3386pub struct Download;
3387
3388impl IconShape for Download {
3389 fn child_elements(&self) -> Element {
3390 rsx!(path {
3391 d: "M12.5 10.0002C12.7761 10.0002 13 10.224 13 10.5002V12.0002C12.9999 13.1042 12.106 14.0002 11.001 14.0002H3.99609C2.89012 14 2.0001 13.103 2 12.0002V10.5002C2 10.224 2.22386 10.0002 2.5 10.0002C2.77614 10.0002 3 10.224 3 10.5002V12.0002C3.0001 12.5539 3.44557 13 3.99609 13.0002H11.001C11.5527 13.0002 11.9999 12.5529 12 12.0002V10.5002C12 10.224 12.2239 10.0002 12.5 10.0002ZM7.5 1.04999C7.74853 1.04999 7.9502 1.25165 7.9502 1.50018V8.41327L10.1816 6.18182C10.3574 6.00609 10.6426 6.00609 10.8184 6.18182C10.994 6.35757 10.9941 6.64283 10.8184 6.81854L7.81836 9.81854C7.64264 9.99413 7.35734 9.99416 7.18164 9.81854L4.18164 6.81854C4.00595 6.64285 4.00603 6.35757 4.18164 6.18182C4.35738 6.00609 4.64262 6.00609 4.81836 6.18182L7.0498 8.41327V1.50018C7.0498 1.25167 7.25149 1.05001 7.5 1.04999Z",
3392 fill: "currentColor",
3393 })
3394 }
3395
3396 const WIDTH: Option<&'static str> = Some("15");
3397 const HEIGHT: Option<&'static str> = Some("15");
3398 const FILL: Option<&'static str> = Some("none");
3399 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3400
3401}
3402
3403#[derive(Default, Copy, Clone, PartialEq, Eq)]
3404pub struct DragHandleDots1;
3405
3406impl IconShape for DragHandleDots1 {
3407 fn child_elements(&self) -> Element {
3408 rsx!(circle {
3409 cx: "4.5",
3410 cy: "2.5",
3411 fill: "currentColor",
3412 r: ".6",
3413 }
3414circle {
3415 cx: "4.5",
3416 cy: "4.5",
3417 fill: "currentColor",
3418 r: ".6",
3419 }
3420circle {
3421 cx: "4.5",
3422 cy: "6.499",
3423 fill: "currentColor",
3424 r: ".6",
3425 }
3426circle {
3427 cx: "4.5",
3428 cy: "8.499",
3429 fill: "currentColor",
3430 r: ".6",
3431 }
3432circle {
3433 cx: "4.5",
3434 cy: "10.498",
3435 fill: "currentColor",
3436 r: ".6",
3437 }
3438circle {
3439 cx: "4.5",
3440 cy: "12.498",
3441 fill: "currentColor",
3442 r: ".6",
3443 }
3444circle {
3445 cx: "6.5",
3446 cy: "2.5",
3447 fill: "currentColor",
3448 r: ".6",
3449 }
3450circle {
3451 cx: "6.5",
3452 cy: "4.5",
3453 fill: "currentColor",
3454 r: ".6",
3455 }
3456circle {
3457 cx: "6.5",
3458 cy: "6.499",
3459 fill: "currentColor",
3460 r: ".6",
3461 }
3462circle {
3463 cx: "6.5",
3464 cy: "8.499",
3465 fill: "currentColor",
3466 r: ".6",
3467 }
3468circle {
3469 cx: "6.5",
3470 cy: "10.498",
3471 fill: "currentColor",
3472 r: ".6",
3473 }
3474circle {
3475 cx: "6.5",
3476 cy: "12.498",
3477 fill: "currentColor",
3478 r: ".6",
3479 }
3480circle {
3481 cx: "8.499",
3482 cy: "2.5",
3483 fill: "currentColor",
3484 r: ".6",
3485 }
3486circle {
3487 cx: "8.499",
3488 cy: "4.5",
3489 fill: "currentColor",
3490 r: ".6",
3491 }
3492circle {
3493 cx: "8.499",
3494 cy: "6.499",
3495 fill: "currentColor",
3496 r: ".6",
3497 }
3498circle {
3499 cx: "8.499",
3500 cy: "8.499",
3501 fill: "currentColor",
3502 r: ".6",
3503 }
3504circle {
3505 cx: "8.499",
3506 cy: "10.498",
3507 fill: "currentColor",
3508 r: ".6",
3509 }
3510circle {
3511 cx: "8.499",
3512 cy: "12.498",
3513 fill: "currentColor",
3514 r: ".6",
3515 }
3516circle {
3517 cx: "10.499",
3518 cy: "2.5",
3519 fill: "currentColor",
3520 r: ".6",
3521 }
3522circle {
3523 cx: "10.499",
3524 cy: "4.5",
3525 fill: "currentColor",
3526 r: ".6",
3527 }
3528circle {
3529 cx: "10.499",
3530 cy: "6.499",
3531 fill: "currentColor",
3532 r: ".6",
3533 }
3534circle {
3535 cx: "10.499",
3536 cy: "8.499",
3537 fill: "currentColor",
3538 r: ".6",
3539 }
3540circle {
3541 cx: "10.499",
3542 cy: "10.498",
3543 fill: "currentColor",
3544 r: ".6",
3545 }
3546circle {
3547 cx: "10.499",
3548 cy: "12.498",
3549 fill: "currentColor",
3550 r: ".6",
3551 })
3552 }
3553
3554 const WIDTH: Option<&'static str> = Some("15");
3555 const HEIGHT: Option<&'static str> = Some("15");
3556 const FILL: Option<&'static str> = Some("none");
3557 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3558
3559}
3560
3561#[derive(Default, Copy, Clone, PartialEq, Eq)]
3562pub struct DragHandleDots2;
3563
3564impl IconShape for DragHandleDots2 {
3565 fn child_elements(&self) -> Element {
3566 rsx!(path {
3567 d: "M5.5 10.375C6.12132 10.375 6.625 10.8787 6.625 11.5C6.625 12.1213 6.12132 12.625 5.5 12.625C4.87868 12.625 4.375 12.1213 4.375 11.5C4.375 10.8787 4.87868 10.375 5.5 10.375ZM9.5 10.375C10.1213 10.375 10.625 10.8787 10.625 11.5C10.625 12.1213 10.1213 12.625 9.5 12.625C8.87868 12.625 8.375 12.1213 8.375 11.5C8.375 10.8787 8.87868 10.375 9.5 10.375ZM5.5 6.375C6.12132 6.375 6.625 6.87868 6.625 7.5C6.625 8.12132 6.12132 8.625 5.5 8.625C4.87868 8.625 4.375 8.12132 4.375 7.5C4.375 6.87868 4.87868 6.375 5.5 6.375ZM9.5 6.375C10.1213 6.375 10.625 6.87868 10.625 7.5C10.625 8.12132 10.1213 8.625 9.5 8.625C8.87868 8.625 8.375 8.12132 8.375 7.5C8.375 6.87868 8.87868 6.375 9.5 6.375ZM5.5 2.375C6.12132 2.375 6.625 2.87868 6.625 3.5C6.625 4.12132 6.12132 4.625 5.5 4.625C4.87868 4.625 4.375 4.12132 4.375 3.5C4.375 2.87868 4.87868 2.375 5.5 2.375ZM9.5 2.375C10.1213 2.375 10.625 2.87868 10.625 3.5C10.625 4.12132 10.1213 4.625 9.5 4.625C8.87868 4.625 8.375 4.12132 8.375 3.5C8.375 2.87868 8.87868 2.375 9.5 2.375Z",
3568 fill: "currentColor",
3569 })
3570 }
3571
3572 const WIDTH: Option<&'static str> = Some("15");
3573 const HEIGHT: Option<&'static str> = Some("15");
3574 const FILL: Option<&'static str> = Some("none");
3575 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3576
3577}
3578
3579#[derive(Default, Copy, Clone, PartialEq, Eq)]
3580pub struct DragHandleHorizontal;
3581
3582impl IconShape for DragHandleHorizontal {
3583 fn child_elements(&self) -> Element {
3584 rsx!(path {
3585 d: "M12.5814 10.1088C12.7632 10.1465 12.9008 10.3074 12.9008 10.5004C12.9006 10.6932 12.7632 10.8544 12.5814 10.892L12.5004 10.9008H2.50037C2.27958 10.9008 2.10019 10.7211 2.09998 10.5004C2.09998 10.2795 2.27945 10.1 2.50037 10.1H12.5004L12.5814 10.1088ZM12.5814 8.1088C12.7632 8.14645 12.9008 8.30743 12.9008 8.5004C12.9006 8.69325 12.7632 8.85443 12.5814 8.892L12.5004 8.90079H2.50037C2.27958 8.90079 2.10019 8.72113 2.09998 8.5004C2.09998 8.27948 2.27945 8.10001 2.50037 8.10001H12.5004L12.5814 8.1088ZM12.5814 6.1088C12.7632 6.14645 12.9008 6.30743 12.9008 6.5004C12.9006 6.69325 12.7632 6.85443 12.5814 6.892L12.5004 6.90079H2.50037C2.27958 6.90079 2.10019 6.72113 2.09998 6.5004C2.09998 6.27948 2.27945 6.10001 2.50037 6.10001H12.5004L12.5814 6.1088ZM12.5814 4.1088C12.7632 4.14645 12.9008 4.30743 12.9008 4.5004C12.9006 4.69325 12.7632 4.85443 12.5814 4.892L12.5004 4.90079H2.50037C2.27958 4.90079 2.10019 4.72113 2.09998 4.5004C2.09998 4.27948 2.27945 4.10001 2.50037 4.10001H12.5004L12.5814 4.1088Z",
3586 fill: "currentColor",
3587 })
3588 }
3589
3590 const WIDTH: Option<&'static str> = Some("15");
3591 const HEIGHT: Option<&'static str> = Some("15");
3592 const FILL: Option<&'static str> = Some("none");
3593 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3594
3595}
3596
3597#[derive(Default, Copy, Clone, PartialEq, Eq)]
3598pub struct DragHandleVertical;
3599
3600impl IconShape for DragHandleVertical {
3601 fn child_elements(&self) -> Element {
3602 rsx!(path {
3603 d: "M10.1088 2.41855C10.1464 2.23674 10.3074 2.09921 10.5004 2.09921C10.6932 2.0994 10.8544 2.23678 10.892 2.41855L10.9008 2.4996L10.9008 12.4996C10.9008 12.7204 10.7211 12.8998 10.5004 12.9C10.2795 12.9 10.1 12.7205 10.1 12.4996L10.1 2.4996L10.1088 2.41855ZM8.10876 2.41855C8.14642 2.23674 8.30739 2.09921 8.50037 2.09921C8.69322 2.0994 8.8544 2.23678 8.89197 2.41855L8.90076 2.4996L8.90076 12.4996C8.90076 12.7204 8.7211 12.8998 8.50037 12.9C8.27945 12.9 8.09998 12.7205 8.09998 12.4996L8.09998 2.4996L8.10876 2.41855ZM6.10876 2.41855C6.14642 2.23674 6.30739 2.09921 6.50037 2.09921C6.69322 2.0994 6.8544 2.23678 6.89197 2.41855L6.90076 2.4996L6.90076 12.4996C6.90076 12.7204 6.7211 12.8998 6.50037 12.9C6.27945 12.9 6.09998 12.7205 6.09998 12.4996L6.09998 2.4996L6.10876 2.41855ZM4.10876 2.41855C4.14642 2.23674 4.30739 2.09921 4.50037 2.09921C4.69322 2.0994 4.8544 2.23678 4.89197 2.41855L4.90076 2.4996L4.90076 12.4996C4.90076 12.7204 4.7211 12.8998 4.50037 12.9C4.27945 12.9 4.09998 12.7205 4.09998 12.4996L4.09998 2.4996L4.10876 2.41855Z",
3604 fill: "currentColor",
3605 })
3606 }
3607
3608 const WIDTH: Option<&'static str> = Some("15");
3609 const HEIGHT: Option<&'static str> = Some("15");
3610 const FILL: Option<&'static str> = Some("none");
3611 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3612
3613}
3614
3615#[derive(Default, Copy, Clone, PartialEq, Eq)]
3616pub struct DrawingPin;
3617
3618impl IconShape for DrawingPin {
3619 fn child_elements(&self) -> Element {
3620 rsx!(path {
3621 d: "M9.62103 1.13601C9.81625 0.940789 10.1328 0.940868 10.3281 1.13601L13.8642 4.67117C14.0593 4.86631 14.0591 5.18291 13.8642 5.3782C13.6689 5.57346 13.3524 5.57346 13.1572 5.3782L12.5038 4.72586L8.86712 9.57449L9.97454 10.6819C10.1698 10.8772 10.1698 11.1937 9.97454 11.3889C9.77928 11.5841 9.46275 11.5842 9.26751 11.3889L6.7929 8.91336V8.91433L3.5224 12.1848C3.32718 12.3799 3.01058 12.3799 2.81536 12.1848C2.62016 11.9896 2.62028 11.6731 2.81536 11.4778L6.08587 8.2073V8.20632L3.61126 5.73171C3.41601 5.53645 3.416 5.21994 3.61126 5.02468C3.80656 4.82984 4.12317 4.82956 4.31829 5.02468L5.42572 6.13308L10.2743 2.49636L9.62103 1.84304C9.42592 1.64781 9.42592 1.33124 9.62103 1.13601ZM6.13958 6.84695L8.15326 8.86062L11.79 4.01101L10.9882 3.21023L6.13958 6.84695Z",
3622 fill: "currentColor",
3623 })
3624 }
3625
3626 const WIDTH: Option<&'static str> = Some("15");
3627 const HEIGHT: Option<&'static str> = Some("15");
3628 const FILL: Option<&'static str> = Some("none");
3629 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3630
3631}
3632
3633#[derive(Default, Copy, Clone, PartialEq, Eq)]
3634pub struct DrawingPinFilled;
3635
3636impl IconShape for DrawingPinFilled {
3637 fn child_elements(&self) -> Element {
3638 rsx!(path {
3639 d: "M9.62097 1.13601C9.81619 0.940789 10.1327 0.940868 10.328 1.13601L13.8641 4.67117C14.0593 4.86631 14.059 5.18291 13.8641 5.3782C13.6689 5.57346 13.3524 5.57346 13.1571 5.3782L12.5038 4.72586L8.86706 9.57449L9.97448 10.6819C10.1697 10.8772 10.1697 11.1937 9.97448 11.3889C9.77921 11.5841 9.46269 11.5842 9.26745 11.3889L6.79284 8.91336V8.91433L3.52233 12.1848C3.32712 12.3799 3.01052 12.3799 2.8153 12.1848C2.6201 11.9896 2.62022 11.6731 2.8153 11.4778L6.08581 8.2073V8.20632L3.6112 5.73171C3.41594 5.53645 3.41594 5.21994 3.6112 5.02468C3.8065 4.82984 4.12311 4.82956 4.31823 5.02468L5.42566 6.13308L10.2743 2.49636L9.62097 1.84304C9.42586 1.64781 9.42586 1.33124 9.62097 1.13601Z",
3640 fill: "currentColor",
3641 }
3642path {
3643 d: "M9.62097 1.13601C9.81619 0.940789 10.1327 0.940868 10.328 1.13601L13.8641 4.67117C14.0593 4.86631 14.059 5.18291 13.8641 5.3782C13.6689 5.57346 13.3524 5.57346 13.1571 5.3782L12.5038 4.72586L8.86706 9.57449L9.97448 10.6819C10.1697 10.8772 10.1697 11.1937 9.97448 11.3889C9.77921 11.5841 9.46269 11.5842 9.26745 11.3889L6.79284 8.91336V8.91433L3.52233 12.1848C3.32712 12.3799 3.01052 12.3799 2.8153 12.1848C2.6201 11.9896 2.62022 11.6731 2.8153 11.4778L6.08581 8.2073V8.20632L3.6112 5.73171C3.41594 5.53645 3.41594 5.21994 3.6112 5.02468C3.8065 4.82984 4.12311 4.82956 4.31823 5.02468L5.42566 6.13308L10.2743 2.49636L9.62097 1.84304C9.42586 1.64781 9.42586 1.33124 9.62097 1.13601Z",
3644 fill: "currentColor",
3645 })
3646 }
3647
3648 const WIDTH: Option<&'static str> = Some("15");
3649 const HEIGHT: Option<&'static str> = Some("15");
3650 const FILL: Option<&'static str> = Some("none");
3651 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3652
3653}
3654
3655#[derive(Default, Copy, Clone, PartialEq, Eq)]
3656pub struct DropdownMenu;
3657
3658impl IconShape for DropdownMenu {
3659 fn child_elements(&self) -> Element {
3660 rsx!(path {
3661 d: "M14.5811 11.1087C14.763 11.1463 14.9004 11.3073 14.9004 11.5004C14.9002 11.6933 14.763 11.8545 14.5811 11.892L14.5 11.9007H7.5C7.27921 11.9007 7.09981 11.7211 7.09961 11.5004C7.09961 11.2794 7.27909 11.1 7.5 11.1H14.5L14.5811 11.1087ZM14.5811 9.10875C14.763 9.14627 14.9004 9.30725 14.9004 9.50035C14.9002 9.69332 14.763 9.85449 14.5811 9.89195L14.5 9.90074H7.5C7.27921 9.90074 7.09981 9.72109 7.09961 9.50035C7.09961 9.27944 7.27909 9.09996 7.5 9.09996H14.5L14.5811 9.10875ZM2.5 9.25035L0 6.00035H5L2.5 9.25035ZM14.5811 7.10875C14.7631 7.14626 14.9004 7.30725 14.9004 7.50035C14.9002 7.69332 14.763 7.85449 14.5811 7.89195L14.5 7.90074H7.5C7.27921 7.90074 7.09981 7.72109 7.09961 7.50035C7.09961 7.27944 7.27909 7.09996 7.5 7.09996H14.5L14.5811 7.10875ZM14.5811 5.10875C14.763 5.14627 14.9004 5.30725 14.9004 5.50035C14.9002 5.69332 14.763 5.85449 14.5811 5.89195L14.5 5.90074H7.5C7.27921 5.90074 7.09981 5.72109 7.09961 5.50035C7.09961 5.27944 7.27909 5.09996 7.5 5.09996H14.5L14.5811 5.10875ZM14.5811 3.10875C14.763 3.14627 14.9004 3.30725 14.9004 3.50035C14.9002 3.69331 14.763 3.8545 14.5811 3.89195L14.5 3.90074H7.5C7.27922 3.90074 7.09982 3.72109 7.09961 3.50035C7.09961 3.27944 7.27909 3.09996 7.5 3.09996H14.5L14.5811 3.10875Z",
3662 fill: "currentColor",
3663 })
3664 }
3665
3666 const WIDTH: Option<&'static str> = Some("15");
3667 const HEIGHT: Option<&'static str> = Some("15");
3668 const FILL: Option<&'static str> = Some("none");
3669 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3670
3671}
3672
3673#[derive(Default, Copy, Clone, PartialEq, Eq)]
3674pub struct Enter;
3675
3676impl IconShape for Enter {
3677 fn child_elements(&self) -> Element {
3678 rsx!(path {
3679 d: "M12 1C12.5523 1 13 1.44772 13 2V13C13 13.5523 12.5523 14 12 14H4.5C4.22386 14 4 13.7761 4 13.5C4 13.2239 4.22386 13 4.5 13H12V2H4.5C4.22386 2 4 1.77614 4 1.5C4 1.22386 4.22386 1 4.5 1H12ZM5.89648 4.89648C6.06735 4.72562 6.33131 4.70387 6.52539 4.83203L6.60352 4.89648L8.85352 7.14648L8.91797 7.22461C9.04613 7.41869 9.02438 7.68265 8.85352 7.85352L6.60352 10.1035C6.40825 10.2988 6.09175 10.2988 5.89648 10.1035C5.70122 9.90825 5.70122 9.59175 5.89648 9.39648L7.29297 8H0.5C0.223858 8 0 7.77614 0 7.5C0 7.22386 0.223858 7 0.5 7H7.29297L5.89648 5.60352L5.83203 5.52539C5.70387 5.33131 5.72562 5.06735 5.89648 4.89648Z",
3680 fill: "currentColor",
3681 })
3682 }
3683
3684 const WIDTH: Option<&'static str> = Some("15");
3685 const HEIGHT: Option<&'static str> = Some("15");
3686 const FILL: Option<&'static str> = Some("none");
3687 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3688
3689}
3690
3691#[derive(Default, Copy, Clone, PartialEq, Eq)]
3692pub struct EnterFullScreen;
3693
3694impl IconShape for EnterFullScreen {
3695 fn child_elements(&self) -> Element {
3696 rsx!(path {
3697 d: "M2.5 9C2.77614 9 3 9.22386 3 9.5V12H5.5C5.77614 12 6 12.2239 6 12.5C6 12.7761 5.77614 13 5.5 13H2.5C2.22386 13 2 12.7761 2 12.5V9.5C2 9.22386 2.22386 9 2.5 9ZM12.5 9C12.7761 9 13 9.22386 13 9.5V12.5C13 12.7761 12.7761 13 12.5 13H9.5C9.22386 13 9 12.7761 9 12.5C9 12.2239 9.22386 12 9.5 12H12V9.5C12 9.22386 12.2239 9 12.5 9ZM5.5 2C5.77614 2 6 2.22386 6 2.5C6 2.77614 5.77614 3 5.5 3H3V5.5C3 5.77614 2.77614 6 2.5 6C2.22386 6 2 5.77614 2 5.5V2.5L2.00977 2.39941C2.05629 2.17145 2.25829 2 2.5 2H5.5ZM12.6006 2.00977C12.8286 2.05629 13 2.25829 13 2.5V5.5C13 5.77614 12.7761 6 12.5 6C12.2239 6 12 5.77614 12 5.5V3H9.5C9.22386 3 9 2.77614 9 2.5C9 2.22386 9.22386 2 9.5 2H12.5L12.6006 2.00977Z",
3698 fill: "currentColor",
3699 })
3700 }
3701
3702 const WIDTH: Option<&'static str> = Some("15");
3703 const HEIGHT: Option<&'static str> = Some("15");
3704 const FILL: Option<&'static str> = Some("none");
3705 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3706
3707}
3708
3709#[derive(Default, Copy, Clone, PartialEq, Eq)]
3710pub struct EnvelopeClosed;
3711
3712impl IconShape for EnvelopeClosed {
3713 fn child_elements(&self) -> Element {
3714 rsx!(path {
3715 d: "M14 2C14.5523 2 15 2.44772 15 3V12C15 12.5523 14.5523 13 14 13H1C0.447715 13 4.02659e-09 12.5523 0 12V3C6.4426e-08 2.44772 0.447715 2 1 2H14ZM7.74121 8.87988C7.61228 8.96171 7.45211 8.9717 7.31543 8.91016L7.25879 8.87988L1 4.90723V12H14V4.90723L7.74121 8.87988ZM1 3.9248C1.05352 3.92477 1.10746 3.93448 1.15918 3.9541L1.24121 3.99512L7.5 7.9668L13.7588 3.99512C13.8337 3.94756 13.9174 3.92472 14 3.9248V3H1V3.9248Z",
3716 fill: "currentColor",
3717 })
3718 }
3719
3720 const WIDTH: Option<&'static str> = Some("15");
3721 const HEIGHT: Option<&'static str> = Some("15");
3722 const FILL: Option<&'static str> = Some("none");
3723 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3724
3725}
3726
3727#[derive(Default, Copy, Clone, PartialEq, Eq)]
3728pub struct EnvelopeOpen;
3729
3730impl IconShape for EnvelopeOpen {
3731 fn child_elements(&self) -> Element {
3732 rsx!(path {
3733 d: "M7.16016 0.118583C7.41609 0.026115 7.70086 0.0422529 7.94727 0.165458L14.4473 3.41546L14.5684 3.48675C14.8359 3.67163 14.9999 3.97791 15 4.30901V12.0004C14.9998 12.5525 14.5521 13.0004 14 13.0004H1C0.447856 13.0004 0.00022869 12.5525 0 12.0004V4.30901C0.00015935 3.93055 0.214303 3.58486 0.552734 3.41546L7.05273 0.165458L7.16016 0.118583ZM7.70996 8.19866C7.57876 8.26772 7.42124 8.26772 7.29004 8.19866L1 4.88421V12.0004H14V4.88421L7.70996 8.19866ZM1.43066 4.09319L7.5 7.29143L13.5684 4.09319L7.5 1.05901L1.43066 4.09319Z",
3734 fill: "currentColor",
3735 })
3736 }
3737
3738 const WIDTH: Option<&'static str> = Some("15");
3739 const HEIGHT: Option<&'static str> = Some("15");
3740 const FILL: Option<&'static str> = Some("none");
3741 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3742
3743}
3744
3745#[derive(Default, Copy, Clone, PartialEq, Eq)]
3746pub struct Eraser;
3747
3748impl IconShape for Eraser {
3749 fn child_elements(&self) -> Element {
3750 rsx!(path {
3751 d: "M8.36026 0.729266C8.55547 0.534048 8.87201 0.534137 9.06729 0.729266L14.2704 5.93239L14.3349 6.01052C14.4631 6.20461 14.4413 6.46852 14.2704 6.63942L7.34658 13.5633C6.76081 14.149 5.81128 14.149 5.22549 13.5633L1.43643 9.77419C0.88738 9.22493 0.853223 8.35644 1.33389 7.76735L1.43643 7.65309L8.36026 0.729266ZM2.14346 8.36013C1.94827 8.55532 1.9484 8.87188 2.14346 9.06716L5.93252 12.8562C6.12779 13.0514 6.4443 13.0515 6.63955 12.8562L7.89443 11.6013L3.39834 7.10524L2.14346 8.36013ZM4.10537 6.39821L8.60147 10.8943L13.2099 6.28591L8.71377 1.78981L4.10537 6.39821Z",
3752 fill: "currentColor",
3753 })
3754 }
3755
3756 const WIDTH: Option<&'static str> = Some("15");
3757 const HEIGHT: Option<&'static str> = Some("15");
3758 const FILL: Option<&'static str> = Some("none");
3759 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3760
3761}
3762
3763#[derive(Default, Copy, Clone, PartialEq, Eq)]
3764pub struct ExclamationCircled;
3765
3766impl IconShape for ExclamationCircled {
3767 fn child_elements(&self) -> Element {
3768 rsx!(path {
3769 d: "M7.49915 0.877045C11.1566 0.877045 14.1218 3.84178 14.1222 7.49911C14.1222 11.1568 11.1568 14.1222 7.49915 14.1222C3.84181 14.1218 0.877075 11.1565 0.877075 7.49911C0.877486 3.84203 3.84206 0.877456 7.49915 0.877045ZM7.49915 1.82626C4.36673 1.82667 1.8267 4.3667 1.82629 7.49911C1.82629 10.6319 4.36648 13.1716 7.49915 13.172C10.6321 13.172 13.172 10.6321 13.172 7.49911C13.1716 4.36645 10.6319 1.82626 7.49915 1.82626ZM7.50012 9.72568C7.91422 9.72568 8.24994 10.0616 8.25012 10.4757C8.25012 10.8899 7.91434 11.2257 7.50012 11.2257C7.08591 11.2257 6.75012 10.8899 6.75012 10.4757C6.7503 10.0616 7.08602 9.72568 7.50012 9.72568ZM7.50012 3.78622C7.88229 3.78622 8.18766 4.10453 8.17297 4.48642L8.01965 8.4874C8.00874 8.76622 7.7792 8.98642 7.50012 8.98642C7.22105 8.98641 6.9915 8.76621 6.98059 8.4874L6.82727 4.48642C6.81258 4.10454 7.11796 3.78624 7.50012 3.78622Z",
3770 fill: "currentColor",
3771 })
3772 }
3773
3774 const WIDTH: Option<&'static str> = Some("15");
3775 const HEIGHT: Option<&'static str> = Some("15");
3776 const FILL: Option<&'static str> = Some("none");
3777 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3778
3779}
3780
3781#[derive(Default, Copy, Clone, PartialEq, Eq)]
3782pub struct ExclamationMark;
3783
3784impl IconShape for ExclamationMark {
3785 fn child_elements(&self) -> Element {
3786 rsx!(path {
3787 d: "M7.49971 10.7503C7.91393 10.7503 8.24971 11.086 8.24971 11.5003C8.24955 11.9143 7.91383 12.2503 7.49971 12.2503C7.08572 12.2501 6.74987 11.9142 6.74971 11.5003C6.74971 11.0861 7.08563 10.7504 7.49971 10.7503ZM7.48311 2.25029C8.00061 2.25054 8.41411 2.68038 8.39424 3.19756L8.20577 8.80498C8.19119 9.18285 7.8808 9.48168 7.50264 9.48174C7.12444 9.48174 6.81409 9.18288 6.79952 8.80498L6.571 3.19756C6.55111 2.68023 6.9654 2.25029 7.48311 2.25029Z",
3788 fill: "currentColor",
3789 })
3790 }
3791
3792 const WIDTH: Option<&'static str> = Some("15");
3793 const HEIGHT: Option<&'static str> = Some("15");
3794 const FILL: Option<&'static str> = Some("none");
3795 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3796
3797}
3798
3799#[derive(Default, Copy, Clone, PartialEq, Eq)]
3800pub struct ExclamationTriangle;
3801
3802impl IconShape for ExclamationTriangle {
3803 fn child_elements(&self) -> Element {
3804 rsx!(path {
3805 d: "M6.64204 0.483078C7.10887 -0.10392 8.04464 -0.0624346 8.44477 0.608078L14.8393 11.3366C15.2761 12.0697 14.7473 12.9995 13.894 12.9997H1.1059C0.252569 12.9994 -0.275364 12.0697 0.161567 11.3366L6.55512 0.608078L6.64204 0.483078ZM7.45161 1.08366L7.4145 1.12077L1.01997 11.8483C0.980388 11.9148 1.02858 11.9994 1.1059 11.9997H13.894C13.9714 11.9995 14.0196 11.9149 13.9799 11.8483L7.58637 1.12077C7.55727 1.07208 7.49625 1.05933 7.45161 1.08366ZM7.49946 9.72624C7.91367 9.72624 8.24946 10.062 8.24946 10.4762C8.24933 10.8903 7.91359 11.2262 7.49946 11.2262C7.08549 11.226 6.74958 10.8902 6.74946 10.4762C6.74946 10.0622 7.08542 9.72645 7.49946 9.72624ZM7.49946 3.78679C7.88158 3.78679 8.1879 4.10418 8.17329 4.48601L8.01899 8.48698C8.00826 8.76597 7.77866 8.98698 7.49946 8.98698C7.22048 8.98673 6.99163 8.76581 6.9809 8.48698L6.82661 4.48601C6.812 4.10434 7.11756 3.78706 7.49946 3.78679Z",
3806 fill: "currentColor",
3807 })
3808 }
3809
3810 const WIDTH: Option<&'static str> = Some("15");
3811 const HEIGHT: Option<&'static str> = Some("15");
3812 const FILL: Option<&'static str> = Some("none");
3813 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3814
3815}
3816
3817#[derive(Default, Copy, Clone, PartialEq, Eq)]
3818pub struct Exit;
3819
3820impl IconShape for Exit {
3821 fn child_elements(&self) -> Element {
3822 rsx!(path {
3823 d: "M10.4998 0.999984C10.776 0.999984 10.9998 1.22384 10.9998 1.49998C10.9998 1.77611 10.776 1.99997 10.4998 1.99997H2.99995V12.9998H10.4998C10.776 12.9998 10.9998 13.2236 10.9998 13.4998C10.9998 13.7759 10.776 13.9998 10.4998 13.9998H2.99995C2.44768 13.9998 1.99997 13.5521 1.99997 12.9998V1.99997C1.99997 1.44769 2.44768 0.999984 2.99995 0.999984H10.4998ZM11.8963 4.8964C12.0672 4.72554 12.3311 4.70379 12.5252 4.83195L12.6033 4.8964L14.8533 7.14637L14.9177 7.22449C15.0459 7.41857 15.0241 7.68253 14.8533 7.85339L12.6033 10.1034C12.4081 10.2986 12.0915 10.2986 11.8963 10.1034C11.701 9.90809 11.701 9.59159 11.8963 9.39633L13.2928 7.99987H6.49989C6.22376 7.99987 5.9999 7.77602 5.9999 7.49988C5.9999 7.22374 6.22376 6.99989 6.49989 6.99989H13.2928L11.8963 5.60342L11.8318 5.5253C11.7037 5.33122 11.7254 5.06727 11.8963 4.8964Z",
3824 fill: "currentColor",
3825 })
3826 }
3827
3828 const WIDTH: Option<&'static str> = Some("15");
3829 const HEIGHT: Option<&'static str> = Some("15");
3830 const FILL: Option<&'static str> = Some("none");
3831 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3832
3833}
3834
3835#[derive(Default, Copy, Clone, PartialEq, Eq)]
3836pub struct ExitFullScreen;
3837
3838impl IconShape for ExitFullScreen {
3839 fn child_elements(&self) -> Element {
3840 rsx!(path {
3841 d: "M5.5 9C5.77614 9 6 9.22386 6 9.5V12.5C6 12.7761 5.77614 13 5.5 13C5.22386 13 5 12.7761 5 12.5V10H2.5C2.22386 10 2 9.77614 2 9.5C2 9.22386 2.22386 9 2.5 9H5.5ZM12.5 9C12.7761 9 13 9.22386 13 9.5C13 9.77614 12.7761 10 12.5 10H10V12.5C10 12.7761 9.77614 13 9.5 13C9.22386 13 9 12.7761 9 12.5V9.5C9 9.22386 9.22386 9 9.5 9H12.5ZM5.5 2C5.77614 2 6 2.22386 6 2.5V5.5C6 5.77614 5.77614 6 5.5 6H2.5C2.22386 6 2 5.77614 2 5.5C2 5.22386 2.22386 5 2.5 5H5V2.5C5 2.22386 5.22386 2 5.5 2ZM9.5 2C9.77614 2 10 2.22386 10 2.5V5H12.5C12.7761 5 13 5.22386 13 5.5C13 5.77614 12.7761 6 12.5 6H9.5C9.22386 6 9 5.77614 9 5.5V2.5C9 2.22386 9.22386 2 9.5 2Z",
3842 fill: "currentColor",
3843 })
3844 }
3845
3846 const WIDTH: Option<&'static str> = Some("15");
3847 const HEIGHT: Option<&'static str> = Some("15");
3848 const FILL: Option<&'static str> = Some("none");
3849 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3850
3851}
3852
3853#[derive(Default, Copy, Clone, PartialEq, Eq)]
3854pub struct ExternalLink;
3855
3856impl IconShape for ExternalLink {
3857 fn child_elements(&self) -> Element {
3858 rsx!(path {
3859 d: "M6.5 2C6.77614 2 7 2.22386 7 2.5C7 2.77614 6.77614 3 6.5 3H3V12H12V8.5C12 8.22386 12.2239 8 12.5 8C12.7761 8 13 8.22386 13 8.5V12C13 12.5523 12.5523 13 12 13H3C2.44772 13 2 12.5523 2 12V3C2 2.44772 2.44772 2 3 2H6.5ZM12.5 2C12.5327 2 12.5655 2.00242 12.5977 2.00879L12.6006 2.00977C12.6596 2.02181 12.7142 2.04529 12.7637 2.07617C12.7759 2.08379 12.7872 2.09279 12.7988 2.10156C12.8133 2.11247 12.8276 2.12336 12.8408 2.13574C12.8448 2.13951 12.8496 2.14255 12.8535 2.14648C12.8579 2.15091 12.861 2.15658 12.8652 2.16113C12.8782 2.17509 12.8901 2.18971 12.9014 2.20508C12.9096 2.21632 12.9176 2.22752 12.9248 2.23926C12.9352 2.25615 12.9438 2.27385 12.9521 2.29199C12.9559 2.30024 12.9605 2.30801 12.9639 2.31641C12.9719 2.33664 12.9781 2.35748 12.9834 2.37891C12.9859 2.38905 12.9893 2.39893 12.9912 2.40918C12.9966 2.43867 13 2.46896 13 2.5V5.5C13 5.77614 12.7761 6 12.5 6C12.2239 6 12 5.77614 12 5.5V3.70703L6.85352 8.85352C6.65825 9.04878 6.34175 9.04878 6.14648 8.85352C5.95122 8.65825 5.95122 8.34175 6.14648 8.14648L11.293 3H9.5C9.22386 3 9 2.77614 9 2.5C9 2.22386 9.22386 2 9.5 2H12.5Z",
3860 fill: "currentColor",
3861 })
3862 }
3863
3864 const WIDTH: Option<&'static str> = Some("15");
3865 const HEIGHT: Option<&'static str> = Some("15");
3866 const FILL: Option<&'static str> = Some("none");
3867 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3868
3869}
3870
3871#[derive(Default, Copy, Clone, PartialEq, Eq)]
3872pub struct EyeClosed;
3873
3874impl IconShape for EyeClosed {
3875 fn child_elements(&self) -> Element {
3876 rsx!(path {
3877 d: "M5.58284 12.5867C5.5113 12.8531 5.23703 13.0113 4.97054 12.9402C4.70421 12.8686 4.54496 12.5943 4.61605 12.3279L5.58284 12.5867ZM10.3826 12.3279C10.4539 12.5945 10.2956 12.8686 10.0291 12.9402C9.76261 13.0113 9.48834 12.8531 9.41681 12.5867L10.3826 12.3279ZM14.1375 6.15505C14.2977 5.98633 14.5595 5.94799 14.7644 6.07595C14.9692 6.20395 15.0496 6.45576 14.9685 6.6736L14.9236 6.76442C14.4845 7.46696 13.962 8.1052 13.3689 8.66188L14.5711 9.86402L14.6355 9.94214C14.7636 10.1362 14.7419 10.4002 14.5711 10.571C14.4003 10.7419 14.1363 10.7636 13.9422 10.6355L13.8641 10.571L12.5994 9.3064C11.8032 9.90116 10.9077 10.3602 9.93243 10.6492L10.3826 12.3279L9.89923 12.4568L9.41681 12.5867L8.95783 10.8777C8.48648 10.958 7.99975 10.9998 7.49983 10.9998C6.9991 10.9998 6.51194 10.9563 6.03987 10.8757L5.58284 12.5867L5.09945 12.4568L4.61605 12.3279L5.06527 10.6492C4.09036 10.3601 3.19423 9.90202 2.39829 9.30738L1.1356 10.571C0.940342 10.7662 0.623806 10.7662 0.428567 10.571C0.233426 10.3758 0.233415 10.0593 0.428567 9.86402L1.62973 8.66188C1.10375 8.1681 0.633248 7.61 0.227396 6.99977L0.0760295 6.76442L0.0311078 6.6736C-0.0498844 6.45577 0.0304399 6.20394 0.235208 6.07595C0.440189 5.94795 0.701937 5.98637 0.862159 6.15505L0.923682 6.23513L1.20102 6.65114C2.63903 8.68678 4.86748 9.99974 7.49983 9.99976C10.3076 9.99976 12.6564 8.50638 14.076 6.23513L14.1375 6.15505Z",
3878 fill: "currentColor",
3879 })
3880 }
3881
3882 const WIDTH: Option<&'static str> = Some("15");
3883 const HEIGHT: Option<&'static str> = Some("15");
3884 const FILL: Option<&'static str> = Some("none");
3885 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3886
3887}
3888
3889#[derive(Default, Copy, Clone, PartialEq, Eq)]
3890pub struct EyeNone;
3891
3892impl IconShape for EyeNone {
3893 fn child_elements(&self) -> Element {
3894 rsx!(path {
3895 d: "M12.6465 1.64651C12.8418 1.45125 13.1583 1.45125 13.3535 1.64651C13.5488 1.84177 13.5488 2.15828 13.3535 2.35354L11.6377 4.06838C12.9756 4.81468 14.0967 5.91192 14.9239 7.23537C15.0124 7.37719 15.0235 7.55204 14.9571 7.70217L14.9239 7.76467C13.3435 10.2933 10.6922 12 7.50002 12C6.36232 12 5.29371 11.7822 4.31741 11.3887L2.35354 13.3535C2.15828 13.5488 1.84177 13.5488 1.64651 13.3535C1.45125 13.1583 1.45125 12.8418 1.64651 12.6465L3.36135 10.9307C2.02399 10.1844 0.903113 9.08773 0.0761963 7.76467C-0.0249881 7.60262 -0.0249956 7.39742 0.0761963 7.23537L0.227563 7.00002C1.82294 4.60124 4.4078 3.00002 7.50002 3.00002C8.63727 3.00002 9.70568 3.21714 10.6817 3.61037L12.6465 1.64651ZM5.09573 10.6104C5.84657 10.8632 6.65217 11 7.50002 11C10.1963 11 12.4661 9.62071 13.8994 7.50002C13.1227 6.35087 12.0992 5.42186 10.8965 4.80959L5.09573 10.6104ZM7.50002 4.00002C4.80354 4.00002 2.53299 5.37907 1.09963 7.50002C1.87617 8.64906 2.89999 9.57724 4.10256 10.1895L9.90335 4.3887C9.15289 4.13599 8.34748 4.00002 7.50002 4.00002Z",
3896 fill: "currentColor",
3897 })
3898 }
3899
3900 const WIDTH: Option<&'static str> = Some("15");
3901 const HEIGHT: Option<&'static str> = Some("15");
3902 const FILL: Option<&'static str> = Some("none");
3903 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3904
3905}
3906
3907#[derive(Default, Copy, Clone, PartialEq, Eq)]
3908pub struct EyeOpen;
3909
3910impl IconShape for EyeOpen {
3911 fn child_elements(&self) -> Element {
3912 rsx!(path {
3913 d: "M7.50002 3C10.6922 3 13.3435 4.70671 14.9239 7.23535C15.0124 7.37717 15.0235 7.55201 14.9571 7.70215L14.9239 7.76465C13.3435 10.2933 10.6922 12 7.50002 12C4.30788 12 1.65659 10.2933 0.0761963 7.76465C-0.0249881 7.6026 -0.0249956 7.3974 0.0761963 7.23535L0.227563 7C1.82294 4.60122 4.4078 3 7.50002 3ZM7.50002 4C4.80354 4 2.53299 5.37905 1.09963 7.5C2.53299 9.62094 4.80354 11 7.50002 11C10.1963 11 12.4661 9.62068 13.8994 7.5C12.4661 5.3793 10.1963 4 7.50002 4ZM7.50002 5.5C8.60459 5.5 9.50002 6.39543 9.50002 7.5C9.50002 8.60457 8.60459 9.5 7.50002 9.5C6.39545 9.5 5.50002 8.60457 5.50002 7.5C5.50002 6.39543 6.39545 5.5 7.50002 5.5Z",
3914 fill: "currentColor",
3915 })
3916 }
3917
3918 const WIDTH: Option<&'static str> = Some("15");
3919 const HEIGHT: Option<&'static str> = Some("15");
3920 const FILL: Option<&'static str> = Some("none");
3921 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3922
3923}
3924
3925#[derive(Default, Copy, Clone, PartialEq, Eq)]
3926pub struct Face;
3927
3928impl IconShape for Face {
3929 fn child_elements(&self) -> Element {
3930 rsx!(path {
3931 d: "M7.49915 0.876892C11.1566 0.876892 14.1218 3.84163 14.1222 7.49896C14.1222 11.1566 11.1568 14.122 7.49915 14.122C3.84181 14.1216 0.877075 11.1564 0.877075 7.49896C0.877487 3.84188 3.84206 0.877303 7.49915 0.876892ZM7.49915 1.82611C4.36674 1.82652 1.82671 4.36655 1.82629 7.49896C1.82629 10.6317 4.36648 13.1714 7.49915 13.1718C10.6321 13.1718 13.172 10.632 13.172 7.49896C13.1716 4.3663 10.6319 1.82611 7.49915 1.82611ZM9.96204 9.21381C10.1199 8.98743 10.4319 8.93209 10.6583 9.08978C10.8848 9.24776 10.9403 9.55958 10.7823 9.78607C10.0604 10.8209 8.85957 11.4998 7.50012 11.4999C6.22536 11.4998 5.0893 10.9031 4.35754 9.97552L4.21692 9.78607L4.16809 9.6972C4.07619 9.48379 4.14301 9.22799 4.34094 9.08978C4.53889 8.95171 4.80221 8.97695 4.97083 9.13666L5.03723 9.21381L5.1427 9.35638C5.6927 10.0537 6.54474 10.4998 7.50012 10.4999C8.51893 10.4998 9.41912 9.99204 9.96204 9.21381ZM5.37512 5.09955C5.85818 5.0996 6.24989 5.4916 6.25012 5.97455C6.25012 6.45769 5.85833 6.8495 5.37512 6.84955C4.89188 6.84955 4.50012 6.45772 4.50012 5.97455C4.50035 5.49157 4.89202 5.09955 5.37512 5.09955ZM9.62512 5.09955C10.1082 5.0996 10.4999 5.4916 10.5001 5.97455C10.5001 6.45769 10.1083 6.8495 9.62512 6.84955C9.14188 6.84955 8.75012 6.45772 8.75012 5.97455C8.75035 5.49157 9.14202 5.09955 9.62512 5.09955Z",
3932 fill: "currentColor",
3933 })
3934 }
3935
3936 const WIDTH: Option<&'static str> = Some("15");
3937 const HEIGHT: Option<&'static str> = Some("15");
3938 const FILL: Option<&'static str> = Some("none");
3939 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3940
3941}
3942
3943#[derive(Default, Copy, Clone, PartialEq, Eq)]
3944pub struct FigmaLogo;
3945
3946impl IconShape for FigmaLogo {
3947 fn child_elements(&self) -> Element {
3948 rsx!(path {
3949 d: "M9.72778 1.0627C10.9758 1.18928 11.9502 2.24321 11.9504 3.52461L11.9377 3.77852C11.8662 4.48137 11.4989 5.09527 10.9641 5.49922C11.5625 5.95094 11.9503 6.66735 11.9504 7.47481L11.9377 7.72871C11.8107 8.9764 10.756 9.95029 9.47485 9.95039L9.22192 9.9377C8.76645 9.8914 8.34868 9.7195 8.00024 9.46016V11.425L7.98755 11.6789C7.86042 12.9265 6.80585 13.9006 5.52466 13.9006L5.27173 13.8879C4.10729 13.7695 3.18139 12.8433 3.06274 11.6789L3.05005 11.425C3.05017 10.6178 3.43642 9.90018 4.03442 9.44844C3.50058 9.04448 3.13423 8.43083 3.06274 7.72871L3.05005 7.47481C3.05017 6.66753 3.43726 5.95095 4.0354 5.49922C3.50096 5.09524 3.13423 4.48115 3.06274 3.77852L3.05005 3.52461C3.05025 2.2434 4.02394 1.18955 5.27173 1.0627L5.52466 1.05H9.47485L9.72778 1.0627ZM5.52466 9.95039C4.71035 9.9506 4.05026 10.6107 4.05005 11.425C4.05026 12.2393 4.71035 12.9004 5.52466 12.9006C6.33915 12.9006 7.00003 12.2394 7.00024 11.425V9.95039H5.52466ZM5.52466 6.0002C4.71035 6.00041 4.05026 6.6605 4.05005 7.47481C4.05015 8.28921 4.71028 8.95018 5.52466 8.95039H7.00024V6.0002H5.52466ZM9.47485 6.0002C8.66054 6.00041 8.00045 6.6605 8.00024 7.47481C8.00034 8.28921 8.66047 8.95018 9.47485 8.95039C10.2893 8.95029 10.9503 8.28928 10.9504 7.47481C10.9502 6.66043 10.2893 6.0003 9.47485 6.0002ZM8.00024 5.0002H9.47485C10.2895 5.0002 10.9504 4.33923 10.9504 3.52461C10.9502 2.71017 10.2893 2.05 9.47485 2.05H8.00024V5.0002ZM5.52466 2.05C4.71035 2.05021 4.05026 2.7103 4.05005 3.52461C4.05005 4.3391 4.71022 4.99999 5.52466 5.0002H7.00024V2.05H5.52466Z",
3950 fill: "currentColor",
3951 })
3952 }
3953
3954 const WIDTH: Option<&'static str> = Some("15");
3955 const HEIGHT: Option<&'static str> = Some("15");
3956 const FILL: Option<&'static str> = Some("none");
3957 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3958
3959}
3960
3961#[derive(Default, Copy, Clone, PartialEq, Eq)]
3962pub struct File;
3963
3964impl IconShape for File {
3965 fn child_elements(&self) -> Element {
3966 rsx!(path {
3967 d: "M8.59766 1.00977C8.69389 1.02894 8.78311 1.07608 8.85352 1.14648L12.8535 5.14648C12.9473 5.24025 13 5.36739 13 5.5V12.5C13 13.3284 12.3284 14 11.5 14H3.5C2.67157 14 2 13.3284 2 12.5V2.5C2 1.67157 2.67157 1 3.5 1H8.5L8.59766 1.00977ZM3.5 2C3.22386 2 3 2.22386 3 2.5V12.5C3 12.7761 3.22386 13 3.5 13H11.5C11.7761 13 12 12.7761 12 12.5V6H8.5C8.22386 6 8 5.77614 8 5.5V2H3.5ZM9 5H11.293L9 2.70703V5Z",
3968 fill: "currentColor",
3969 })
3970 }
3971
3972 const WIDTH: Option<&'static str> = Some("15");
3973 const HEIGHT: Option<&'static str> = Some("15");
3974 const FILL: Option<&'static str> = Some("none");
3975 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3976
3977}
3978
3979#[derive(Default, Copy, Clone, PartialEq, Eq)]
3980pub struct FileMinus;
3981
3982impl IconShape for FileMinus {
3983 fn child_elements(&self) -> Element {
3984 rsx!(path {
3985 d: "M9.59766 1.00977C9.69389 1.02894 9.78311 1.07608 9.85352 1.14648L12.7803 4.07324C12.9209 4.21389 13 4.40462 13 4.60352V12.5C13 13.3284 12.3284 14 11.5 14H3.5C2.67157 14 2 13.3284 2 12.5V2.5C2 1.67157 2.67157 1 3.5 1H9.5L9.59766 1.00977ZM3.5 2C3.22386 2 3 2.22386 3 2.5V12.5C3 12.7761 3.22386 13 3.5 13H11.5C11.7761 13 12 12.7761 12 12.5V4.70703L9.29297 2H3.5ZM9.75 7C10.0261 7 10.25 7.22386 10.25 7.5C10.25 7.77614 10.0261 8 9.75 8H5.25C4.97386 8 4.75 7.77614 4.75 7.5C4.75 7.22386 4.97386 7 5.25 7H9.75Z",
3986 fill: "currentColor",
3987 })
3988 }
3989
3990 const WIDTH: Option<&'static str> = Some("15");
3991 const HEIGHT: Option<&'static str> = Some("15");
3992 const FILL: Option<&'static str> = Some("none");
3993 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
3994
3995}
3996
3997#[derive(Default, Copy, Clone, PartialEq, Eq)]
3998pub struct FilePlus;
3999
4000impl IconShape for FilePlus {
4001 fn child_elements(&self) -> Element {
4002 rsx!(path {
4003 d: "M9.59766 1.00977C9.69389 1.02894 9.78311 1.07608 9.85352 1.14648L12.7803 4.07324C12.9209 4.21389 13 4.40462 13 4.60352V12.5C13 13.3284 12.3284 14 11.5 14H3.5C2.67157 14 2 13.3284 2 12.5V2.5C2 1.67157 2.67157 1 3.5 1H9.5L9.59766 1.00977ZM3.5 2C3.22386 2 3 2.22386 3 2.5V12.5C3 12.7761 3.22386 13 3.5 13H11.5C11.7761 13 12 12.7761 12 12.5V4.70703L9.29297 2H3.5ZM7.5 4.75C7.77614 4.75 8 4.97386 8 5.25V7H9.75C10.0261 7 10.25 7.22386 10.25 7.5C10.25 7.77614 10.0261 8 9.75 8H8V9.75C8 10.0261 7.77614 10.25 7.5 10.25C7.22386 10.25 7 10.0261 7 9.75V8H5.25C4.97386 8 4.75 7.77614 4.75 7.5C4.75 7.22386 4.97386 7 5.25 7H7V5.25C7 4.97386 7.22386 4.75 7.5 4.75Z",
4004 fill: "currentColor",
4005 })
4006 }
4007
4008 const WIDTH: Option<&'static str> = Some("15");
4009 const HEIGHT: Option<&'static str> = Some("15");
4010 const FILL: Option<&'static str> = Some("none");
4011 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4012
4013}
4014
4015#[derive(Default, Copy, Clone, PartialEq, Eq)]
4016pub struct FileText;
4017
4018impl IconShape for FileText {
4019 fn child_elements(&self) -> Element {
4020 rsx!(path {
4021 d: "M9.08594 1C9.48371 1.00004 9.86522 1.15818 10.1465 1.43945L12.5605 3.85352L12.6602 3.96387C12.8788 4.23073 13 4.56606 13 4.91406V12.5C13 13.3284 12.3284 14 11.5 14H3.5C2.67157 14 2 13.3284 2 12.5V2.5C2 1.67157 2.67157 1 3.5 1H9.08594ZM3.5 2C3.22386 2 3 2.22386 3 2.5V12.5C3 12.7761 3.22386 13 3.5 13H11.5C11.7761 13 12 12.7761 12 12.5V4.91406C12 4.81464 11.9704 4.71823 11.916 4.63672L11.8535 4.56055L9.43945 2.14648C9.34572 2.05275 9.21849 2.00004 9.08594 2H3.5ZM10.5 10C10.7761 10 11 10.2239 11 10.5C11 10.7761 10.7761 11 10.5 11H4.5C4.22386 11 4 10.7761 4 10.5C4 10.2239 4.22386 10 4.5 10H10.5ZM10.5 7C10.7761 7 11 7.22386 11 7.5C11 7.77614 10.7761 8 10.5 8H4.5C4.22386 8 4 7.77614 4 7.5C4 7.22386 4.22386 7 4.5 7H10.5ZM7.5 4C7.77614 4 8 4.22386 8 4.5C8 4.77614 7.77614 5 7.5 5H4.5C4.22386 5 4 4.77614 4 4.5C4 4.22386 4.22386 4 4.5 4H7.5Z",
4022 fill: "currentColor",
4023 })
4024 }
4025
4026 const WIDTH: Option<&'static str> = Some("15");
4027 const HEIGHT: Option<&'static str> = Some("15");
4028 const FILL: Option<&'static str> = Some("none");
4029 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4030
4031}
4032
4033#[derive(Default, Copy, Clone, PartialEq, Eq)]
4034pub struct Filter;
4035
4036impl IconShape for Filter {
4037 fn child_elements(&self) -> Element {
4038 rsx!(path {
4039 d: "M9.60059 10.0098C9.82855 10.0563 10 10.2583 10 10.5C10 10.7417 9.82855 10.9437 9.60059 10.9902L9.5 11H5.5C5.22386 11 5 10.7761 5 10.5C5 10.2239 5.22386 10 5.5 10H9.5L9.60059 10.0098ZM11.6006 7.00977C11.8286 7.05629 12 7.25829 12 7.5C12 7.74171 11.8286 7.94371 11.6006 7.99023L11.5 8H3.5C3.22386 8 3 7.77614 3 7.5C3 7.22386 3.22386 7 3.5 7H11.5L11.6006 7.00977ZM13.5 4C13.7761 4 14 4.22386 14 4.5C14 4.77614 13.7761 5 13.5 5H1.5C1.22386 5 1 4.77614 1 4.5C1 4.22386 1.22386 4 1.5 4H13.5Z",
4040 fill: "currentColor",
4041 })
4042 }
4043
4044 const WIDTH: Option<&'static str> = Some("15");
4045 const HEIGHT: Option<&'static str> = Some("15");
4046 const FILL: Option<&'static str> = Some("none");
4047 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4048
4049}
4050
4051#[derive(Default, Copy, Clone, PartialEq, Eq)]
4052pub struct FontBold;
4053
4054impl IconShape for FontBold {
4055 fn child_elements(&self) -> Element {
4056 rsx!(path {
4057 d: "M9.02832 3C10.1371 3 11.0537 3.98152 11.0537 5.18457C11.0537 6.08498 10.6035 6.81887 9.70312 7.23633C10.8656 7.44882 11.5176 8.62804 11.5176 9.48145C11.5175 10.5126 10.9901 12 9.27734 12H5.10547C4.70868 12 4.42388 11.9121 4.25195 11.7363C4.08417 11.5563 4.00002 11.2716 4 10.8828V4.11719C4.00002 3.72026 4.08594 3.43555 4.25781 3.26367C4.43381 3.08778 4.71676 3 5.10547 3H9.02832ZM5.7998 10.6309H8.37891C8.89999 10.6309 9.62985 10.1211 9.62988 9.29883C9.62988 8.47649 8.9 8.00293 8.37891 8.00293H5.7998V10.6309ZM5.7998 6.69531H8.17969C8.53906 6.69531 9.27734 6.35938 9.27734 5.5C9.27733 4.64064 8.48047 4.36914 8.17969 4.36914H5.7998V6.69531Z",
4058 fill: "currentColor",
4059 })
4060 }
4061
4062 const WIDTH: Option<&'static str> = Some("15");
4063 const HEIGHT: Option<&'static str> = Some("15");
4064 const FILL: Option<&'static str> = Some("none");
4065 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4066
4067}
4068
4069#[derive(Default, Copy, Clone, PartialEq, Eq)]
4070pub struct FontFamily;
4071
4072impl IconShape for FontFamily {
4073 fn child_elements(&self) -> Element {
4074 rsx!(path {
4075 d: "M12.499 2C12.7752 2 13 2.22386 13 2.5C13 2.77613 12.7761 2.99999 12.5 3H8.69238L8.40527 3.85449C8.18888 4.4974 7.89414 5.37193 7.58105 6.29785C7.50275 6.52943 7.42349 6.76457 7.34375 7H8.5C8.77614 7 9 7.22386 9 7.5C9 7.77614 8.77614 8 8.5 8H7.00391C6.56708 9.28541 6.16437 10.4618 5.95801 11.0391C5.63631 11.9388 5.20662 12.4862 4.66699 12.7783C4.16329 13.0508 3.6418 13.0501 3.28418 13.0498H3.25C2.94625 13.0498 2.70021 12.8037 2.7002 12.5C2.7002 12.1962 2.94624 11.9502 3.25 11.9502C3.64173 11.9502 3.90336 11.9405 4.14355 11.8105C4.36424 11.6911 4.65502 11.4145 4.92188 10.668C5.10667 10.151 5.45342 9.14113 5.8418 8H4.5C4.22386 8 4 7.77614 4 7.5C4 7.22386 4.22386 7 4.5 7H6.18164C6.30105 6.64785 6.42151 6.29295 6.53906 5.94531C6.85186 5.02022 7.14604 4.14644 7.3623 3.50391L7.53223 3H5C4.15114 3 3.5 3.65114 3.5 4.5C3.5 4.77614 3.27614 5 3 5C2.72386 5 2.5 4.77614 2.5 4.5C2.5 3.09886 3.59886 2 5 2H12.499Z",
4076 fill: "currentColor",
4077 })
4078 }
4079
4080 const WIDTH: Option<&'static str> = Some("15");
4081 const HEIGHT: Option<&'static str> = Some("15");
4082 const FILL: Option<&'static str> = Some("none");
4083 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4084
4085}
4086
4087#[derive(Default, Copy, Clone, PartialEq, Eq)]
4088pub struct FontItalic;
4089
4090impl IconShape for FontItalic {
4091 fn child_elements(&self) -> Element {
4092 rsx!(path {
4093 d: "M10.6252 3.05018C10.8736 3.05028 11.0754 3.25191 11.0754 3.50037C11.0753 3.74875 10.8736 3.95047 10.6252 3.95057H9.00604L7.23065 11.0502H8.87518C9.12362 11.0503 9.32538 11.2519 9.32538 11.5004C9.32521 11.7487 9.12352 11.9495 8.87518 11.9496H4.37518C4.12676 11.9496 3.92516 11.7488 3.92499 11.5004C3.92499 11.2518 4.12665 11.0502 4.37518 11.0502H5.99432L7.76971 3.95057H6.12518C5.87672 3.95057 5.67509 3.74881 5.67499 3.50037C5.67499 3.25185 5.87665 3.05018 6.12518 3.05018H10.6252Z",
4094 fill: "currentColor",
4095 })
4096 }
4097
4098 const WIDTH: Option<&'static str> = Some("15");
4099 const HEIGHT: Option<&'static str> = Some("15");
4100 const FILL: Option<&'static str> = Some("none");
4101 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4102
4103}
4104
4105#[derive(Default, Copy, Clone, PartialEq, Eq)]
4106pub struct FontRoman;
4107
4108impl IconShape for FontRoman {
4109 fn child_elements(&self) -> Element {
4110 rsx!(path {
4111 d: "M9.75018 3.05016C9.99862 3.05027 10.2004 3.2519 10.2004 3.50036C10.2003 3.74873 9.99856 3.95045 9.75018 3.95055H8.09979V11.0502H9.75018C9.99863 11.0503 10.2004 11.2519 10.2004 11.5004C10.2002 11.7487 9.99852 11.9495 9.75018 11.9496H5.25018C5.00176 11.9496 4.80016 11.7487 4.79999 11.5004C4.79999 11.2518 5.00165 11.0502 5.25018 11.0502H6.8996V3.95055H5.25018C5.00172 3.95055 4.80009 3.7488 4.79999 3.50036C4.79999 3.25183 5.00165 3.05016 5.25018 3.05016H9.75018Z",
4112 fill: "currentColor",
4113 })
4114 }
4115
4116 const WIDTH: Option<&'static str> = Some("15");
4117 const HEIGHT: Option<&'static str> = Some("15");
4118 const FILL: Option<&'static str> = Some("none");
4119 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4120
4121}
4122
4123#[derive(Default, Copy, Clone, PartialEq, Eq)]
4124pub struct FontSize;
4125
4126impl IconShape for FontSize {
4127 fn child_elements(&self) -> Element {
4128 rsx!(path {
4129 d: "M2.49984 2.09991C2.6058 2.10001 2.70812 2.14217 2.78305 2.2171L4.78305 4.2171L4.83383 4.28058C4.93587 4.43578 4.91954 4.64701 4.78305 4.78351C4.64655 4.92 4.43531 4.93633 4.28012 4.83429L4.21664 4.78351L2.90023 3.4671V11.5335L4.21664 10.2171C4.37285 10.0609 4.62684 10.0609 4.78305 10.2171C4.93888 10.3733 4.93913 10.6274 4.78305 10.7835L2.78305 12.7835C2.70812 12.8584 2.60579 12.9006 2.49984 12.9007C2.39393 12.9007 2.29162 12.8583 2.21664 12.7835L0.21664 10.7835L0.165858 10.72C0.0634971 10.5648 0.0800246 10.3537 0.21664 10.2171C0.353264 10.0805 0.564328 10.064 0.719569 10.1663L0.783046 10.2171L2.09945 11.5335V3.4671L0.783046 4.78351C0.626961 4.93958 0.372878 4.93934 0.21664 4.78351C0.0604332 4.6273 0.0604398 4.37331 0.21664 4.2171L2.21664 2.2171L2.27816 2.1673C2.34333 2.12394 2.42042 2.09991 2.49984 2.09991ZM7.97055 11.7396C7.87676 11.9991 7.58955 12.1339 7.32992 12.0403C7.07066 11.9466 6.93609 11.6601 7.02914 11.4007L7.97055 11.7396ZM10.4998 2.75031C10.7105 2.75031 10.899 2.88226 10.9705 3.08038L13.9705 11.4007C14.0636 11.6602 13.9291 11.9467 13.6698 12.0403C13.4102 12.1338 13.1229 11.9991 13.0291 11.7396L12.0467 9.01593H8.95297L7.97055 11.7396L7.49984 11.5696L7.02914 11.4007L10.0291 3.08038L10.0614 3.00909C10.1482 2.85119 10.3156 2.75035 10.4998 2.75031ZM9.25863 8.16632H11.7411L10.4998 4.72491L9.25863 8.16632Z",
4130 fill: "currentColor",
4131 })
4132 }
4133
4134 const WIDTH: Option<&'static str> = Some("15");
4135 const HEIGHT: Option<&'static str> = Some("15");
4136 const FILL: Option<&'static str> = Some("none");
4137 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4138
4139}
4140
4141#[derive(Default, Copy, Clone, PartialEq, Eq)]
4142pub struct FontStyle;
4143
4144impl IconShape for FontStyle {
4145 fn child_elements(&self) -> Element {
4146 rsx!(path {
4147 d: "M5.2429 2.68752C6.91676 2.68752 7.97395 3.33531 8.43821 4.31056C8.57073 4.58896 8.5763 4.91325 8.22825 5.19142C7.88005 5.46962 7.52338 5.3477 7.23313 5.0381C6.4721 4.22638 5.99496 4.04982 5.25559 4.04982C4.13963 4.04992 3.54669 4.63617 3.54661 5.27931C3.54661 5.86581 3.9632 6.23149 4.947 6.53419L5.67845 6.76173C7.22975 7.23471 7.97434 7.96011 7.97434 9.17091C7.97412 10.7725 6.69369 12.0907 4.46165 12.0908C2.86634 12.0908 1.39997 11.1128 1.03782 9.98048C0.934859 9.65813 1.11617 9.3775 1.40013 9.24904C1.68407 9.12061 2.0941 9.13425 2.27024 9.45412C2.85336 10.5143 3.64557 10.7285 4.48606 10.7285C5.52662 10.7285 6.29661 10.2613 6.29661 9.45412C6.29655 8.80466 5.9113 8.46419 4.87083 8.14259L4.15891 7.92189C2.6454 7.44892 1.88843 6.69209 1.88841 5.45607C1.88841 3.7976 3.27551 2.68766 5.2429 2.68752ZM12.613 5.04689C13.8546 5.047 14.6624 5.63373 14.9773 6.63478C15.0437 6.846 14.9592 6.97977 14.7478 7.04884C14.5397 7.11667 14.3178 7.09975 14.238 6.8965C13.9357 6.12312 13.3516 5.76271 12.5993 5.76271C11.6466 5.7628 11.0136 6.25168 11.0134 6.91603C11.0134 7.45028 11.3461 7.75077 12.2468 8.04396L12.8347 8.23244C14.0618 8.62985 14.5514 9.13814 14.5515 10.0176C14.5515 11.1968 13.481 12.0438 11.9929 12.044C10.6442 12.044 9.65631 11.2808 9.41966 10.336C9.3653 10.1188 9.41181 10.0287 9.69993 9.96193C9.98836 9.8951 10.0715 9.89907 10.1716 10.1367C10.4556 10.8111 11.1532 11.3272 12.032 11.3272C12.9914 11.3271 13.6833 10.7801 13.6833 10.0635C13.6833 9.53572 13.3958 9.28835 12.4363 8.9756L11.8493 8.78029C10.6614 8.3959 10.1649 7.86125 10.1648 6.9883C10.1648 5.86761 11.1638 5.04689 12.613 5.04689Z",
4148 fill: "currentColor",
4149 })
4150 }
4151
4152 const WIDTH: Option<&'static str> = Some("15");
4153 const HEIGHT: Option<&'static str> = Some("15");
4154 const FILL: Option<&'static str> = Some("none");
4155 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4156
4157}
4158
4159#[derive(Default, Copy, Clone, PartialEq, Eq)]
4160pub struct Frame;
4161
4162impl IconShape for Frame {
4163 fn child_elements(&self) -> Element {
4164 rsx!(path {
4165 d: "M10.5 1C10.7761 1 11 1.22386 11 1.5V4H13.5L13.6006 4.00977C13.8286 4.05629 14 4.25829 14 4.5C14 4.74171 13.8286 4.94371 13.6006 4.99023L13.5 5H11V10H13.5L13.6006 10.0098C13.8286 10.0563 14 10.2583 14 10.5C14 10.7417 13.8286 10.9437 13.6006 10.9902L13.5 11H11V13.5L10.9902 13.6006C10.9437 13.8286 10.7417 14 10.5 14C10.2583 14 10.0563 13.8286 10.0098 13.6006L10 13.5V11H5V13.5C5 13.7761 4.77614 14 4.5 14C4.22386 14 4 13.7761 4 13.5V11H1.5C1.22386 11 1 10.7761 1 10.5C1 10.2239 1.22386 10 1.5 10H4V5H1.5C1.22386 5 1 4.77614 1 4.5C1 4.22386 1.22386 4 1.5 4H4V1.5C4 1.22386 4.22386 1 4.5 1C4.77614 1 5 1.22386 5 1.5V4H10V1.5C10 1.22386 10.2239 1 10.5 1ZM5 10H10V5H5V10Z",
4166 fill: "currentColor",
4167 })
4168 }
4169
4170 const WIDTH: Option<&'static str> = Some("15");
4171 const HEIGHT: Option<&'static str> = Some("15");
4172 const FILL: Option<&'static str> = Some("none");
4173 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4174
4175}
4176
4177#[derive(Default, Copy, Clone, PartialEq, Eq)]
4178pub struct FramerLogo;
4179
4180impl IconShape for FramerLogo {
4181 fn child_elements(&self) -> Element {
4182 rsx!(path {
4183 d: "M11.6006 1.00706C11.8285 1.05359 12 1.25559 12 1.4973V5.50023C11.9999 5.77627 11.7761 6.00022 11.5 6.00023H8.63574L11.5293 9.16234L11.5742 9.21996C11.6695 9.3609 11.6871 9.54261 11.6172 9.7014C11.5373 9.88272 11.3583 10.0001 11.1602 10.0002H8V13.5002C7.99991 13.7024 7.87818 13.8848 7.69141 13.9621C7.50462 14.0395 7.28948 13.9967 7.14648 13.8537L3.14648 9.85374C3.05277 9.76003 3.00006 9.63276 3 9.50023V5.50023L3.00977 5.39964C3.05621 5.17157 3.25821 5.00023 3.5 5.00023H6.36523L3.4707 1.83421C3.33737 1.68805 3.30313 1.47723 3.38281 1.29613C3.46269 1.11485 3.64175 0.99738 3.83984 0.997299H11.5L11.6006 1.00706ZM7 12.2932V10.0002H4.70703L7 12.2932ZM4 9.00023H10.0254L7.28027 6.00023H4V9.00023ZM7.7207 5.00023H11V1.9973H4.97461L7.7207 5.00023Z",
4184 fill: "currentColor",
4185 })
4186 }
4187
4188 const WIDTH: Option<&'static str> = Some("15");
4189 const HEIGHT: Option<&'static str> = Some("15");
4190 const FILL: Option<&'static str> = Some("none");
4191 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4192
4193}
4194
4195#[derive(Default, Copy, Clone, PartialEq, Eq)]
4196pub struct Gear;
4197
4198impl IconShape for Gear {
4199 fn child_elements(&self) -> Element {
4200 rsx!(path {
4201 d: "M7.92834 0.650246C8.3253 0.650336 8.66968 0.92521 8.75745 1.31236L8.99475 2.36216C9.37407 2.47236 9.73655 2.62282 10.0758 2.80943L10.9869 2.23521C11.3226 2.02392 11.76 2.07297 12.0406 2.35337L12.6471 2.95982C12.9277 3.24057 12.977 3.67868 12.7653 4.0145L12.191 4.92466C12.3775 5.2637 12.5281 5.62568 12.6383 6.00474L13.6881 6.24302C14.0752 6.33086 14.3502 6.67514 14.3502 7.07212V7.92857C14.3502 8.32553 14.0752 8.66981 13.6881 8.75767L12.6383 8.99595C12.5281 9.37514 12.3767 9.73689 12.1901 10.076L12.7643 10.9872C12.9759 11.323 12.9268 11.7602 12.6461 12.0409L12.0406 12.6473C11.7599 12.9281 11.3218 12.9772 10.986 12.7655L10.0748 12.1913C9.73582 12.3777 9.37376 12.5284 8.99475 12.6385L8.75745 13.6883C8.66963 14.0754 8.32526 14.3504 7.92834 14.3504H7.07092C6.67397 14.3504 6.32965 14.0754 6.24182 13.6883L6.00354 12.6376C5.625 12.5274 5.26403 12.3765 4.92542 12.1903L4.01428 12.7655C3.67846 12.9772 3.24035 12.9279 2.95959 12.6473L2.35315 12.0409C2.07276 11.7603 2.02372 11.3229 2.23499 10.9872L2.81018 10.0751C2.62379 9.73614 2.47209 9.37484 2.36194 8.99595L1.31213 8.75767C0.924966 8.66986 0.650024 8.32557 0.650024 7.92857V7.07212C0.650024 6.6751 0.924951 6.33082 1.31213 6.24302L2.36194 6.00474C2.47203 5.62592 2.6229 5.26449 2.8092 4.92564L2.23499 4.0145C2.02326 3.67863 2.0724 3.24056 2.35315 2.95982L2.95862 2.35435C3.23936 2.0736 3.67744 2.02446 4.01331 2.23618L4.92444 2.8104C5.26333 2.62395 5.62465 2.47237 6.00354 2.36216L6.24182 1.31236C6.3296 0.925173 6.67392 0.650284 7.07092 0.650246H7.92834ZM6.71545 3.06821C6.05669 3.18406 5.44722 3.44325 4.92053 3.81236L3.56018 2.95493L2.95374 3.56138L3.81213 4.92173C3.44325 5.44841 3.18369 6.05799 3.06799 6.71665L1.49963 7.07212V7.92857L3.06799 8.28403C3.18375 8.94266 3.44322 9.55232 3.81213 10.079L2.95471 11.4403L3.56018 12.0458L4.92151 11.1883C5.44803 11.5571 6.05701 11.8167 6.71545 11.9325L7.07092 13.4999H7.92834L8.28381 11.9325C8.94261 11.8168 9.55196 11.5573 10.0787 11.1883L11.4391 12.0467L12.0455 11.4403L11.1881 10.0799C11.5573 9.55311 11.8164 8.94299 11.9323 8.28403L13.4996 7.92857V7.07212L11.9323 6.71665C11.8165 6.05777 11.5572 5.44756 11.1881 4.92075L12.0455 3.5604L11.4401 2.95493L10.0797 3.81236C9.55281 3.44318 8.94285 3.18394 8.28381 3.06821L7.92834 1.49986H7.07092L6.71545 3.06821ZM7.49963 5.07505C8.8388 5.07505 9.92529 6.16072 9.92542 7.49986C9.92542 8.8391 8.83888 9.92466 7.49963 9.92466C6.16061 9.9244 5.07483 8.83894 5.07483 7.49986C5.07495 6.16088 6.16069 5.07531 7.49963 5.07505ZM7.49963 5.97544C6.65774 5.9757 5.97534 6.65793 5.97522 7.49986C5.97522 8.34188 6.65767 9.02499 7.49963 9.02525C8.34182 9.02525 9.02502 8.34204 9.02502 7.49986C9.0249 6.65777 8.34174 5.97544 7.49963 5.97544Z",
4202 fill: "currentColor",
4203 })
4204 }
4205
4206 const WIDTH: Option<&'static str> = Some("15");
4207 const HEIGHT: Option<&'static str> = Some("15");
4208 const FILL: Option<&'static str> = Some("none");
4209 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4210
4211}
4212
4213#[derive(Default, Copy, Clone, PartialEq, Eq)]
4214pub struct GithubLogo;
4215
4216impl IconShape for GithubLogo {
4217 fn child_elements(&self) -> Element {
4218 rsx!(path {
4219 d: "M7.49902 0.25C11.5033 0.25 14.7499 3.4958 14.75 7.5C14.75 10.7023 12.6746 13.418 9.7959 14.3789C9.42852 14.4496 9.29802 14.2242 9.29785 14.0303C9.29785 13.7926 9.30664 13.0099 9.30664 12.041C9.30657 11.3647 9.07434 10.9221 8.81445 10.6982C10.4292 10.5189 12.125 9.90632 12.125 7.12109C12.125 6.32946 11.8444 5.68268 11.3799 5.17578C11.4542 4.99237 11.7023 4.25509 11.3066 3.25684C11.2917 3.25225 10.6824 3.07392 9.31543 4C8.73639 3.83933 8.11598 3.75897 7.5 3.75586C6.88373 3.75899 6.26356 3.83939 5.68555 4C4.30048 3.06223 3.69141 3.25684 3.69141 3.25684C3.29667 4.25506 3.54533 4.99237 3.62012 5.17578C3.15651 5.68268 2.87402 6.32946 2.87402 7.12109C2.87404 9.89919 4.56694 10.5207 6.17676 10.7041C5.96986 10.8852 5.78272 11.2049 5.7168 11.6729C5.3038 11.8584 4.25315 12.1788 3.60645 11.0713C3.60645 11.0713 3.2236 10.3756 2.49609 10.3242C2.49609 10.3242 1.78803 10.3151 2.44629 10.7646C2.46065 10.7715 2.92629 11.0006 3.25098 11.8252C3.25565 11.8405 3.6878 13.2324 5.69336 12.7969C5.69692 13.4017 5.70312 13.858 5.70312 14.0303C5.70295 14.2225 5.57051 14.4462 5.20801 14.3799C2.32708 13.4207 0.25 10.7027 0.25 7.5C0.250136 3.49591 3.49627 0.250167 7.49902 0.25Z",
4220 fill: "currentColor",
4221 })
4222 }
4223
4224 const WIDTH: Option<&'static str> = Some("15");
4225 const HEIGHT: Option<&'static str> = Some("15");
4226 const FILL: Option<&'static str> = Some("none");
4227 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4228
4229}
4230
4231#[derive(Default, Copy, Clone, PartialEq, Eq)]
4232pub struct Globe;
4233
4234impl IconShape for Globe {
4235 fn child_elements(&self) -> Element {
4236 rsx!(path {
4237 d: "M7.50049 0.900055C11.1453 0.900372 14.1001 3.85576 14.1001 7.50064C14.0998 11.1453 11.1451 14.0999 7.50049 14.1003C3.8556 14.1003 0.900219 11.1455 0.899902 7.50064C0.899902 3.85556 3.85541 0.900055 7.50049 0.900055ZM5.28369 10.7047C5.64404 11.6351 6.17083 12.4782 6.85889 13.1628C6.93847 13.1717 7.01858 13.1777 7.09912 13.1833V10.8454C6.48761 10.8314 5.87706 10.7834 5.28369 10.7047ZM9.77295 10.6989C9.16164 10.7822 8.53116 10.83 7.8999 10.8444V13.1833C7.98109 13.1776 8.06187 13.1717 8.14209 13.1628C8.85531 12.4766 9.40048 11.6314 9.77295 10.6989ZM2.35791 9.96158C3.02351 11.3493 4.23482 12.4239 5.71338 12.9118C5.18397 12.2135 4.77849 11.4213 4.49561 10.5788C3.72434 10.4334 2.99871 10.2279 2.35791 9.96158ZM12.6411 9.96158C12.0184 10.2204 11.3158 10.4226 10.5688 10.567C10.2783 11.4105 9.86035 12.2028 9.31592 12.902C10.781 12.4097 11.98 11.3401 12.6411 9.96158ZM4.7085 7.90005C4.7386 8.60278 4.84803 9.29815 5.03564 9.96255C5.69719 10.0665 6.39354 10.1284 7.09912 10.1452V7.90005H4.7085ZM7.8999 10.1452C8.6291 10.1279 9.34852 10.0631 10.0298 9.95279C10.222 9.29117 10.3348 8.59924 10.3657 7.90005H7.8999V10.1452ZM1.81494 7.90005C1.84166 8.28532 1.90683 8.65978 2.00635 9.02017C2.63373 9.36462 3.41278 9.63163 4.27686 9.81998C4.12456 9.19287 4.03416 8.54747 4.0083 7.90005H1.81494ZM11.0669 7.90005C11.0404 8.54266 10.9472 9.18283 10.7925 9.80533C11.5283 9.64052 12.2013 9.4188 12.7681 9.13931L12.9917 9.02115C13.0914 8.66036 13.1573 8.28578 13.1841 7.90005H11.0669ZM4.32666 4.97525C3.47332 5.15752 2.70151 5.41806 2.07373 5.75162C1.9355 6.18085 1.8484 6.63234 1.81592 7.09927H4.0083C4.03702 6.38157 4.14246 5.66569 4.32666 4.97525ZM7.09912 4.66177C6.4151 4.67804 5.73957 4.73639 5.09619 4.83463C4.87181 5.55952 4.74173 6.32486 4.7085 7.09927H7.09912V4.66177ZM7.8999 7.09927H10.3657C10.3315 6.32843 10.1973 5.56661 9.96729 4.84439C9.30461 4.7402 8.60679 4.67852 7.8999 4.66177V7.09927ZM10.7397 4.98892C10.9274 5.67521 11.0375 6.38592 11.0669 7.09927H13.1841C13.1516 6.63184 13.0628 6.18029 12.9243 5.75064L12.7681 5.66861C12.1877 5.38241 11.4964 5.15481 10.7397 4.98892ZM5.71338 2.08658C4.32274 2.54535 3.16814 3.52413 2.48193 4.79361C3.11198 4.54372 3.81949 4.35141 4.56787 4.21451C4.84612 3.44854 5.22711 2.7277 5.71338 2.08658ZM9.31592 2.09732C9.81554 2.73886 10.2079 3.45908 10.4937 4.22525C11.2182 4.36119 11.9031 4.55008 12.5151 4.79263C11.8338 3.53304 10.6926 2.55992 9.31592 2.09732ZM7.8999 3.96255C8.50199 3.97625 9.10328 4.02188 9.68799 4.0983C9.31948 3.24599 8.80407 2.47253 8.14307 1.83658C8.06252 1.82753 7.98143 1.82075 7.8999 1.81509V3.96255ZM7.09912 1.81509C7.01824 1.82072 6.93782 1.82761 6.85791 1.83658C6.2206 2.47064 5.72306 3.24178 5.3667 4.09146C5.9339 4.01939 6.51613 3.97585 7.09912 3.96255V1.81509Z",
4238 fill: "currentColor",
4239 })
4240 }
4241
4242 const WIDTH: Option<&'static str> = Some("15");
4243 const HEIGHT: Option<&'static str> = Some("15");
4244 const FILL: Option<&'static str> = Some("none");
4245 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4246
4247}
4248
4249#[derive(Default, Copy, Clone, PartialEq, Eq)]
4250pub struct Globe2;
4251
4252impl IconShape for Globe2 {
4253 fn child_elements(&self) -> Element {
4254 rsx!(path {
4255 d: "M7.50049 0.900055C11.1453 0.900372 14.1001 3.85576 14.1001 7.50064C14.0998 11.1453 11.1451 14.0999 7.50049 14.1003C3.8556 14.1003 0.900219 11.1455 0.899902 7.50064C0.899902 3.85556 3.85541 0.900055 7.50049 0.900055ZM10.2144 7.94986C10.1279 9.83381 9.49621 11.7024 8.30225 13.1422C10.9244 12.7728 12.9717 10.6205 13.1802 7.94986H10.2144ZM1.81885 7.94986C2.01868 10.509 3.90778 12.5919 6.37256 13.0866C5.24135 11.6536 4.64281 9.80853 4.56006 7.94986H1.81885ZM5.4624 7.94986C5.55203 9.79091 6.19192 11.5713 7.35498 12.8571C8.55873 11.5705 9.22047 9.7898 9.31299 7.94986H5.4624ZM7.35498 2.14127C6.19153 3.42699 5.55217 5.20823 5.4624 7.04947H9.31299C9.22031 5.20935 8.55911 3.42779 7.35498 2.14127ZM8.30225 1.85709C9.49629 3.29682 10.1278 5.16558 10.2144 7.04947H13.1802C12.9711 4.37932 10.9241 2.22654 8.30225 1.85709ZM6.37354 1.9108C3.90845 2.40502 2.02021 4.4904 1.81982 7.04947H4.56006C4.64297 5.19012 5.24138 3.34389 6.37354 1.9108Z",
4256 fill: "currentColor",
4257 })
4258 }
4259
4260 const WIDTH: Option<&'static str> = Some("15");
4261 const HEIGHT: Option<&'static str> = Some("15");
4262 const FILL: Option<&'static str> = Some("none");
4263 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4264
4265}
4266
4267#[derive(Default, Copy, Clone, PartialEq, Eq)]
4268pub struct Grid;
4269
4270impl IconShape for Grid {
4271 fn child_elements(&self) -> Element {
4272 rsx!(path {
4273 d: "M12.6533 1.00781C13.4097 1.08461 14 1.72334 14 2.5V12.5L13.9922 12.6533C13.9205 13.3593 13.3593 13.9205 12.6533 13.9922L12.5 14H2.5L2.34668 13.9922C1.64069 13.9205 1.07949 13.3593 1.00781 12.6533L1 12.5V2.5C1 1.72334 1.59028 1.08461 2.34668 1.00781L2.5 1H12.5L12.6533 1.00781ZM2 8V12.5C2 12.7761 2.22386 13 2.5 13H7V8H2ZM8 8V13H12.5C12.7761 13 13 12.7761 13 12.5V8H8ZM2.5 2C2.22386 2 2 2.22386 2 2.5V7H7V2H2.5ZM8 7H13V2.5C13 2.22386 12.7761 2 12.5 2H8V7Z",
4274 fill: "currentColor",
4275 })
4276 }
4277
4278 const WIDTH: Option<&'static str> = Some("15");
4279 const HEIGHT: Option<&'static str> = Some("15");
4280 const FILL: Option<&'static str> = Some("none");
4281 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4282
4283}
4284
4285#[derive(Default, Copy, Clone, PartialEq, Eq)]
4286pub struct Group;
4287
4288impl IconShape for Group {
4289 fn child_elements(&self) -> Element {
4290 rsx!(path {
4291 d: "M1.44995 10.95C1.72609 10.95 1.94995 11.1738 1.94995 11.45V12.95H3.44995C3.72609 12.95 3.94995 13.1738 3.94995 13.45C3.94995 13.7261 3.72609 13.95 3.44995 13.95H1.44995C1.17381 13.95 0.949951 13.7261 0.949951 13.45V11.45C0.949951 11.1738 1.17381 10.95 1.44995 10.95ZM8.94995 12.95C9.22609 12.95 9.44995 13.1738 9.44995 13.45C9.44995 13.7261 9.22609 13.95 8.94995 13.95H5.94995C5.67381 13.95 5.44995 13.7261 5.44995 13.45C5.44995 13.1738 5.67381 12.95 5.94995 12.95H8.94995ZM13.45 10.95C13.7261 10.95 13.95 11.1738 13.95 11.45V13.45C13.9499 13.7261 13.7261 13.9499 13.45 13.95H11.45C11.1738 13.95 10.95 13.7261 10.95 13.45C10.95 13.1738 11.1738 12.95 11.45 12.95H12.949L12.95 11.45C12.95 11.1738 13.1738 10.95 13.45 10.95ZM1.44995 5.44995C1.72609 5.44995 1.94995 5.67381 1.94995 5.94995V8.94995C1.94995 9.22609 1.72609 9.44995 1.44995 9.44995C1.17381 9.44995 0.949951 9.22609 0.949951 8.94995V5.94995C0.949951 5.67381 1.17381 5.44995 1.44995 5.44995ZM13.45 5.44995C13.7261 5.44995 13.95 5.67381 13.95 5.94995V8.94995C13.95 9.22609 13.7261 9.44995 13.45 9.44995C13.1738 9.44995 12.95 9.22609 12.95 8.94995V5.94995C12.95 5.67381 13.1738 5.44995 13.45 5.44995ZM3.44995 0.949951C3.72609 0.949951 3.94995 1.17381 3.94995 1.44995C3.94995 1.72609 3.72609 1.94995 3.44995 1.94995H1.94995V3.44995C1.94995 3.72609 1.72609 3.94995 1.44995 3.94995C1.17382 3.94994 0.949953 3.72609 0.949951 3.44995V1.44995C0.949951 1.31734 1.00267 1.1902 1.09644 1.09644C1.1902 1.00267 1.31734 0.949951 1.44995 0.949951H3.44995ZM13.449 0.949951C13.7251 0.949951 13.95 1.17381 13.95 1.44995V3.44995C13.95 3.72609 13.7261 3.94994 13.45 3.94995C13.1738 3.94995 12.95 3.72609 12.95 3.44995V1.94995H11.45C11.1738 1.94995 10.95 1.72609 10.95 1.44995C10.95 1.17381 11.1738 0.949951 11.45 0.949951H13.449ZM8.94995 0.949951C9.22609 0.949951 9.44995 1.17381 9.44995 1.44995C9.44995 1.72609 9.22609 1.94995 8.94995 1.94995H5.94995C5.67381 1.94995 5.44995 1.72609 5.44995 1.44995C5.44995 1.17381 5.67381 0.949951 5.94995 0.949951H8.94995Z",
4292 fill: "currentColor",
4293 })
4294 }
4295
4296 const WIDTH: Option<&'static str> = Some("15");
4297 const HEIGHT: Option<&'static str> = Some("15");
4298 const FILL: Option<&'static str> = Some("none");
4299 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4300
4301}
4302
4303#[derive(Default, Copy, Clone, PartialEq, Eq)]
4304pub struct Half1;
4305
4306impl IconShape for Half1 {
4307 fn child_elements(&self) -> Element {
4308 rsx!(path {
4309 d: "M7.49915 0.876892C11.1566 0.876892 14.1218 3.84163 14.1222 7.49896C14.1222 11.1566 11.1568 14.122 7.49915 14.122C3.84181 14.1216 0.877075 11.1564 0.877075 7.49896C0.877487 3.84188 3.84206 0.877303 7.49915 0.876892ZM7.00012 1.84857C4.10141 2.10165 1.82668 4.53471 1.82629 7.49896C1.82629 10.4635 4.10123 12.8952 7.00012 13.1484V1.84857ZM8.00012 13.1484C10.8986 12.8949 13.172 10.4632 13.172 7.49896C13.1716 4.53499 10.8984 2.10203 8.00012 1.84857V13.1484Z",
4310 fill: "currentColor",
4311 })
4312 }
4313
4314 const WIDTH: Option<&'static str> = Some("15");
4315 const HEIGHT: Option<&'static str> = Some("15");
4316 const FILL: Option<&'static str> = Some("none");
4317 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4318
4319}
4320
4321#[derive(Default, Copy, Clone, PartialEq, Eq)]
4322pub struct Half2;
4323
4324impl IconShape for Half2 {
4325 fn child_elements(&self) -> Element {
4326 rsx!(path {
4327 d: "M7.49915 0.876892C11.1566 0.876892 14.1218 3.84163 14.1222 7.49896C14.1222 11.1566 11.1568 14.122 7.49915 14.122C3.84181 14.1216 0.877075 11.1564 0.877075 7.49896C0.877487 3.84188 3.84206 0.877303 7.49915 0.876892ZM7.49915 1.82611C4.36673 1.82652 1.82671 4.36655 1.82629 7.49896C1.82629 10.6317 4.36648 13.1714 7.49915 13.1718L7.50012 13.1708V1.82611H7.49915Z",
4328 fill: "currentColor",
4329 })
4330 }
4331
4332 const WIDTH: Option<&'static str> = Some("15");
4333 const HEIGHT: Option<&'static str> = Some("15");
4334 const FILL: Option<&'static str> = Some("none");
4335 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4336
4337}
4338
4339#[derive(Default, Copy, Clone, PartialEq, Eq)]
4340pub struct HamburgerMenu;
4341
4342impl IconShape for HamburgerMenu {
4343 fn child_elements(&self) -> Element {
4344 rsx!(path {
4345 d: "M13.6006 11.0098C13.8286 11.0563 14 11.2583 14 11.5C14 11.7417 13.8286 11.9437 13.6006 11.9902L13.5 12H1.5C1.22386 12 1 11.7761 1 11.5C1 11.2239 1.22386 11 1.5 11H13.5L13.6006 11.0098ZM13.6006 7.00977C13.8286 7.05629 14 7.25829 14 7.5C14 7.74171 13.8286 7.94371 13.6006 7.99023L13.5 8H1.5C1.22386 8 1 7.77614 1 7.5C1 7.22386 1.22386 7 1.5 7H13.5L13.6006 7.00977ZM13.6006 3.00977C13.8286 3.05629 14 3.25829 14 3.5C14 3.74171 13.8286 3.94371 13.6006 3.99023L13.5 4H1.5C1.22386 4 1 3.77614 1 3.5C1 3.22386 1.22386 3 1.5 3H13.5L13.6006 3.00977Z",
4346 fill: "currentColor",
4347 })
4348 }
4349
4350 const WIDTH: Option<&'static str> = Some("15");
4351 const HEIGHT: Option<&'static str> = Some("15");
4352 const FILL: Option<&'static str> = Some("none");
4353 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4354
4355}
4356
4357#[derive(Default, Copy, Clone, PartialEq, Eq)]
4358pub struct Hand;
4359
4360impl IconShape for Hand {
4361 fn child_elements(&self) -> Element {
4362 rsx!(path {
4363 d: "M7.65376 0.000106587C8.39848 0.00809746 9.21494 0.44839 9.41253 1.36142C9.51074 1.26615 9.61844 1.1844 9.7348 1.11728C10.1108 0.900442 10.5349 0.859808 10.9233 0.948341C11.6908 1.12355 12.3581 1.81083 12.4213 2.7618C12.423 2.78481 12.4246 2.80806 12.4262 2.83114C12.7361 2.60508 13.1279 2.52626 13.5766 2.61532C13.98 2.69554 14.4874 2.99214 14.7738 3.62996C15.0562 4.25881 15.095 5.15317 14.7289 6.39166C14.3975 7.51265 14.0239 8.44892 13.6869 9.29202C13.5217 9.70535 13.3649 10.0971 13.227 10.4766C12.8018 11.6464 12.4994 12.8214 12.4994 14.5C12.4994 14.7761 12.2756 15 11.9994 15H4.99948C4.72355 14.9997 4.49949 14.776 4.49949 14.5C4.49949 13.4632 3.80885 12.49 2.86083 11.46C2.63172 11.2111 2.39509 10.9654 2.15673 10.7188L2.1499 10.7129C1.91093 10.4657 1.67058 10.2155 1.44385 9.9678C0.99627 9.47875 0.573975 8.96448 0.305186 8.42875C0.0666417 7.97136 -0.101611 7.31277 0.101086 6.76275L0.104016 6.75396C0.240488 6.40402 0.45435 6.09227 0.777839 5.88482C1.10394 5.67574 1.48872 5.60674 1.90283 5.6485C2.51915 5.70808 2.96376 5.98152 3.33836 6.31256C3.19348 5.89879 3.02166 5.48847 2.84227 5.06159C2.82043 5.0096 2.79789 4.95689 2.77587 4.90436C2.52376 4.30299 2.26433 3.66797 2.09228 2.99715L2.09033 2.98739C1.94445 2.3674 2.13399 1.73959 2.53564 1.31943C2.94896 0.887079 3.58633 0.679682 4.26511 0.917091C4.92582 1.14917 5.39425 1.67382 5.73092 2.26669C5.75231 2.01497 5.78193 1.75832 5.82272 1.49326L5.8237 1.49033C5.98769 0.466156 6.86411 -0.00817682 7.65376 0.000106587ZM7.64302 1.0001C7.22362 0.995776 6.87884 1.2277 6.81099 1.64755C6.62167 2.87938 6.68224 3.88534 6.76802 5.30475C6.78369 5.56398 6.80089 5.83728 6.81685 6.12799C6.83135 6.39197 6.6371 6.62195 6.37447 6.6524C6.11202 6.68262 5.87097 6.50336 5.82467 6.24322L5.74752 5.8067C5.644 5.16503 5.48362 4.2546 5.17819 3.44734C4.86255 2.61309 4.44828 2.04121 3.93406 1.86044C3.64974 1.76116 3.41858 1.84315 3.25829 2.01083C3.08725 2.18995 2.99791 2.4708 3.06298 2.75399C3.21485 3.34416 3.44666 3.91642 3.69871 4.51765C3.72117 4.57121 3.74334 4.62564 3.7661 4.67976C3.99525 5.22471 4.23625 5.79717 4.41648 6.39068V6.39263C4.56153 6.87602 4.65654 7.25945 4.73093 7.56157C4.76041 7.68129 4.7869 7.78855 4.81199 7.88383C4.86777 8.09622 4.77795 8.3199 4.59128 8.43559C4.40454 8.5513 4.16389 8.53236 3.99852 8.38773C3.73696 8.15899 3.51468 7.92763 3.31786 7.71782C3.27604 7.67324 3.23567 7.62966 3.19676 7.58794C3.04769 7.42803 2.91731 7.2879 2.78368 7.1602C2.46033 6.85123 2.1841 6.68003 1.80615 6.64361H1.80322C1.56127 6.61907 1.41434 6.66481 1.31787 6.72661C1.2193 6.78981 1.11964 6.9042 1.0376 7.11235C0.976384 7.28495 1.01527 7.62968 1.19287 7.96879L1.19678 7.97758C1.40034 8.38459 1.74454 8.81593 2.18115 9.293C2.39712 9.52899 2.62899 9.76866 2.86962 10.0176L2.87938 10.0283C3.11512 10.2722 3.35971 10.5243 3.59715 10.7822C4.42881 11.6858 5.27672 12.7538 5.46237 14H11.5082C11.5632 12.4354 11.8756 11.2681 12.2875 10.1348C12.4453 9.70058 12.6121 9.28425 12.7826 8.85843C13.1097 8.0416 13.4503 7.18945 13.7699 6.10846C14.0983 4.99761 14.0092 4.37061 13.8607 4.04011C13.7165 3.71885 13.4911 3.61758 13.3813 3.59578C13.138 3.54754 13.0377 3.60927 12.9691 3.67879C12.8664 3.78297 12.7695 3.98295 12.6918 4.30281C12.6163 4.61355 12.5748 4.96546 12.5326 5.32526L12.5297 5.3526C12.4923 5.67206 12.4506 6.03006 12.3666 6.30084C12.3385 6.40682 12.2816 6.50394 12.1977 6.57525C12.1379 6.62596 12.01 6.70847 11.8305 6.69341C11.5421 6.66908 11.3709 6.42104 11.3647 6.14752C11.3558 5.75435 11.3886 5.35832 11.4076 4.96589C11.4431 4.23637 11.4767 3.53348 11.4242 2.83407V2.82919C11.3916 2.32997 11.0491 2.00242 10.7006 1.92294C10.5305 1.88417 10.3691 1.90611 10.2348 1.98349C10.1031 2.05944 9.95482 2.21308 9.85687 2.51376L9.85589 2.51766C9.81487 2.6409 9.77266 2.87844 9.73577 3.21297C9.70019 3.5358 9.67359 3.91291 9.65179 4.29402C9.63314 4.62009 9.61745 4.9583 9.60394 5.26178C9.58688 5.64513 9.57242 5.97374 9.55609 6.15338C9.54958 6.22465 9.52886 6.29464 9.49456 6.35748C9.47311 6.39674 9.36083 6.60926 9.07074 6.61822C8.7791 6.62712 8.63949 6.40093 8.61664 6.35943C8.55605 6.24932 8.55043 6.11836 8.54731 5.99322C8.54451 5.88107 8.54264 5.71815 8.54145 5.54791C8.53906 5.20653 8.53949 4.8203 8.53949 4.71003C8.53949 3.66623 8.53796 2.65363 8.44672 1.64365C8.39133 1.24132 8.06212 1.0046 7.64302 1.0001Z",
4364 fill: "currentColor",
4365 })
4366 }
4367
4368 const WIDTH: Option<&'static str> = Some("15");
4369 const HEIGHT: Option<&'static str> = Some("15");
4370 const FILL: Option<&'static str> = Some("none");
4371 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4372
4373}
4374
4375#[derive(Default, Copy, Clone, PartialEq, Eq)]
4376pub struct Heading;
4377
4378impl IconShape for Heading {
4379 fn child_elements(&self) -> Element {
4380 rsx!(path {
4381 d: "M6.34534 2.05997C6.55018 2.10209 6.70471 2.28309 6.70471 2.5004C6.70462 2.71765 6.55015 2.89874 6.34534 2.94083L6.25452 2.95059H5.04944V7.0502H9.94983V2.95059H8.75452C8.50605 2.95059 8.30443 2.74884 8.30432 2.5004C8.30432 2.25187 8.50599 2.0502 8.75452 2.0502H12.2545L12.3453 2.05997C12.5502 2.10209 12.7047 2.28309 12.7047 2.5004C12.7046 2.71765 12.5502 2.89874 12.3453 2.94083L12.2545 2.95059H11.0494V12.0502H12.2545L12.3453 12.06C12.5502 12.1021 12.7047 12.2831 12.7047 12.5004C12.7046 12.7176 12.5502 12.8987 12.3453 12.9408L12.2545 12.9506H8.75452C8.50605 12.9506 8.30443 12.7488 8.30432 12.5004C8.30432 12.2519 8.50599 12.0502 8.75452 12.0502H9.94983V7.95059H5.04944V12.0502H6.25452L6.34534 12.06C6.55018 12.1021 6.70471 12.2831 6.70471 12.5004C6.70462 12.7176 6.55015 12.8987 6.34534 12.9408L6.25452 12.9506H2.75452C2.50605 12.9506 2.30443 12.7488 2.30432 12.5004C2.30432 12.2519 2.50599 12.0502 2.75452 12.0502H3.94983V2.95059H2.75452C2.50605 2.95059 2.30443 2.74884 2.30432 2.5004C2.30432 2.25187 2.50599 2.0502 2.75452 2.0502H6.25452L6.34534 2.05997Z",
4382 fill: "currentColor",
4383 })
4384 }
4385
4386 const WIDTH: Option<&'static str> = Some("15");
4387 const HEIGHT: Option<&'static str> = Some("15");
4388 const FILL: Option<&'static str> = Some("none");
4389 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4390
4391}
4392
4393#[derive(Default, Copy, Clone, PartialEq, Eq)]
4394pub struct Heart;
4395
4396impl IconShape for Heart {
4397 fn child_elements(&self) -> Element {
4398 rsx!(path {
4399 d: "M10.1064 1.35248C12.0638 1.35248 13.6473 2.94492 13.6474 4.90521C13.6474 6.7403 12.6009 8.50547 11.4003 9.96967C10.1894 11.4465 8.74654 12.7053 7.83295 13.5204C7.66692 13.6686 7.42664 13.6873 7.24213 13.5761L7.16693 13.5204C6.25332 12.7053 4.81048 11.4465 3.59955 9.96967C2.39901 8.50547 1.35248 6.7403 1.35248 4.90521C1.35254 2.94492 2.93607 1.35248 4.89349 1.35248C6.00828 1.35249 6.73512 1.76016 7.20892 2.29486C7.3207 2.42103 7.41678 2.55386 7.49994 2.68549C7.58311 2.55384 7.67916 2.42105 7.79095 2.29486C8.26473 1.76015 8.99164 1.35253 10.1064 1.35248ZM10.1064 2.35248C9.27088 2.35252 8.81923 2.64293 8.53998 2.95795C8.23362 3.30375 8.10371 3.70259 7.96185 4.04584C7.88455 4.23285 7.7023 4.35541 7.49994 4.35541C7.2976 4.35538 7.11531 4.23284 7.03802 4.04584C6.89617 3.70259 6.76625 3.30374 6.4599 2.95795C6.18063 2.64294 5.72904 2.35249 4.89349 2.35248C3.49202 2.35248 2.35254 3.49353 2.35248 4.90521C2.35248 6.38153 3.20998 7.91647 4.37299 9.3349C5.39394 10.5801 6.5947 11.668 7.49994 12.4755C8.40519 11.668 9.60687 10.5801 10.6279 9.3349C11.7907 7.91658 12.6474 6.38139 12.6474 4.90521C12.6473 3.49353 11.5079 2.35248 10.1064 2.35248Z",
4400 fill: "currentColor",
4401 })
4402 }
4403
4404 const WIDTH: Option<&'static str> = Some("15");
4405 const HEIGHT: Option<&'static str> = Some("15");
4406 const FILL: Option<&'static str> = Some("none");
4407 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4408
4409}
4410
4411#[derive(Default, Copy, Clone, PartialEq, Eq)]
4412pub struct HeartFilled;
4413
4414impl IconShape for HeartFilled {
4415 fn child_elements(&self) -> Element {
4416 rsx!(path {
4417 d: "M10.1064 1.35248C12.0638 1.35248 13.6473 2.94492 13.6474 4.90521C13.6474 6.7403 12.6009 8.50547 11.4003 9.96967C10.2633 11.3564 8.92163 12.5507 8.0058 13.3661C7.94628 13.4191 7.88869 13.4707 7.83295 13.5204C7.64328 13.6897 7.35659 13.6897 7.16693 13.5204C7.11121 13.4707 7.05356 13.4191 6.99408 13.3661C6.07823 12.5507 4.73659 11.3563 3.59955 9.96967C2.39901 8.50547 1.35248 6.7403 1.35248 4.90521C1.35254 2.94492 2.93607 1.35248 4.89349 1.35248C6.2577 1.35249 6.8605 1.92341 7.49994 2.93549C8.13935 1.92344 8.74229 1.35253 10.1064 1.35248Z",
4418 fill: "currentColor",
4419 })
4420 }
4421
4422 const WIDTH: Option<&'static str> = Some("15");
4423 const HEIGHT: Option<&'static str> = Some("15");
4424 const FILL: Option<&'static str> = Some("none");
4425 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4426
4427}
4428
4429#[derive(Default, Copy, Clone, PartialEq, Eq)]
4430pub struct Height;
4431
4432impl IconShape for Height {
4433 fn child_elements(&self) -> Element {
4434 rsx!(path {
4435 d: "M7.2517 1.62423C7.42639 1.50875 7.66428 1.52802 7.81811 1.68185L10.3181 4.18185L10.3757 4.25216C10.4911 4.42683 10.4719 4.66479 10.3181 4.81856C10.1643 4.97234 9.92637 4.99153 9.7517 4.87618L9.68139 4.81856L7.94995 3.08712V11.9133L9.68139 10.1818C9.85713 10.0061 10.1424 10.0061 10.3181 10.1818C10.4936 10.3576 10.4938 10.6429 10.3181 10.8186L7.81811 13.3186C7.73376 13.4029 7.61903 13.4503 7.49975 13.4504C7.38049 13.4504 7.26576 13.4028 7.18139 13.3186L4.68139 10.8186L4.62377 10.7483C4.50826 10.5736 4.52755 10.3357 4.68139 10.1818C4.83523 10.028 5.0731 10.0087 5.2478 10.1242L5.31811 10.1818L7.04955 11.9133V3.08712L5.31811 4.81856C5.14244 4.99423 4.85714 4.9941 4.68139 4.81856C4.50565 4.64283 4.50565 4.35758 4.68139 4.18185L7.18139 1.68185L7.2517 1.62423Z",
4436 fill: "currentColor",
4437 })
4438 }
4439
4440 const WIDTH: Option<&'static str> = Some("15");
4441 const HEIGHT: Option<&'static str> = Some("15");
4442 const FILL: Option<&'static str> = Some("none");
4443 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4444
4445}
4446
4447#[derive(Default, Copy, Clone, PartialEq, Eq)]
4448pub struct HobbyKnife;
4449
4450impl IconShape for HobbyKnife {
4451 fn child_elements(&self) -> Element {
4452 rsx!(path {
4453 d: "M12.225 13.918C12.419 14.046 12.6831 14.0243 12.8539 13.8535L14.3539 12.3535L14.4183 12.2754C14.5281 12.1091 14.5281 11.8909 14.4183 11.7246L14.3539 11.6465L8.60389 5.8965C8.57262 5.86523 8.53689 5.84063 8.50038 5.81935V5.50002C8.50038 5.35911 8.44059 5.22466 8.33631 5.1299L2.93592 0.229508C2.76679 0.0761776 2.51513 0.056922 2.32459 0.182633C2.13397 0.308725 2.05225 0.548791 2.12733 0.764665L4.52772 7.66408L4.55897 7.73634C4.64495 7.89691 4.81408 8 5.00038 8.00002H6.31874C6.34005 8.03673 6.36542 8.07209 6.39686 8.10353L12.1469 13.8535L12.225 13.918ZM3.7162 2.28908L7.50038 5.7217V5.79298L6.29334 7.00002H5.35487L3.7162 2.28908ZM7.45741 7.75002L8.25038 6.95705L13.2933 12L12.5004 12.793L7.45741 7.75002Z",
4454 fill: "currentColor",
4455 })
4456 }
4457
4458 const WIDTH: Option<&'static str> = Some("15");
4459 const HEIGHT: Option<&'static str> = Some("15");
4460 const FILL: Option<&'static str> = Some("none");
4461 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4462
4463}
4464
4465#[derive(Default, Copy, Clone, PartialEq, Eq)]
4466pub struct Home;
4467
4468impl IconShape for Home {
4469 fn child_elements(&self) -> Element {
4470 rsx!(path {
4471 d: "M7.17269 0.146853C7.40386 -0.0038436 7.7164 0.021395 7.92074 0.222048L14.6707 6.8617L14.7479 6.95545C14.9037 7.18704 14.8809 7.50355 14.6776 7.71033C14.4742 7.91711 14.1578 7.94537 13.9237 7.79334L13.8289 7.71716L12.9998 6.90076V12.5004C12.9997 12.7764 12.7759 13.0004 12.4998 13.0004H2.49984C2.22393 13.0002 1.99994 12.7763 1.99984 12.5004V6.90076L1.17074 7.71716C0.934507 7.94955 0.554487 7.94656 0.322105 7.71033C0.0902207 7.47406 0.0928771 7.09391 0.328941 6.8617L7.07894 0.222048L7.17269 0.146853ZM2.99984 5.91736V12.0004H5.99984V8.50037L6.00961 8.39978C6.05611 8.17193 6.25829 8.00054 6.49984 8.00037H9.49984L9.60043 8.01013C9.82839 8.05666 9.99984 8.25865 9.99984 8.50037V12.0004H11.9998V5.91736L7.49984 1.4906L2.99984 5.91736ZM6.99984 12.0004H8.99984V9.00037H6.99984V12.0004Z",
4472 fill: "currentColor",
4473 })
4474 }
4475
4476 const WIDTH: Option<&'static str> = Some("15");
4477 const HEIGHT: Option<&'static str> = Some("15");
4478 const FILL: Option<&'static str> = Some("none");
4479 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4480
4481}
4482
4483#[derive(Default, Copy, Clone, PartialEq, Eq)]
4484pub struct IconBox;
4485
4486impl IconShape for IconBox {
4487 fn child_elements(&self) -> Element {
4488 rsx!(path {
4489 d: "M12.6533 1.00781C13.4097 1.08461 14 1.72334 14 2.5V12.5L13.9922 12.6533C13.9205 13.3593 13.3593 13.9205 12.6533 13.9922L12.5 14H2.5L2.34668 13.9922C1.64069 13.9205 1.07949 13.3593 1.00781 12.6533L1 12.5V2.5C1 1.72334 1.59028 1.08461 2.34668 1.00781L2.5 1H12.5L12.6533 1.00781ZM2.5 2C2.22386 2 2 2.22386 2 2.5V12.5C2 12.7761 2.22386 13 2.5 13H12.5C12.7761 13 13 12.7761 13 12.5V2.5C13 2.22386 12.7761 2 12.5 2H2.5Z",
4490 fill: "currentColor",
4491 })
4492 }
4493
4494 const WIDTH: Option<&'static str> = Some("15");
4495 const HEIGHT: Option<&'static str> = Some("15");
4496 const FILL: Option<&'static str> = Some("none");
4497 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4498
4499}
4500
4501#[derive(Default, Copy, Clone, PartialEq, Eq)]
4502pub struct IconjarLogo;
4503
4504impl IconShape for IconjarLogo {
4505 fn child_elements(&self) -> Element {
4506 rsx!(path {
4507 d: "M12.0003 4.00037C12.6947 4.0007 12.8282 4.86472 12.1331 5.1283C11.6413 5.33268 11.7283 5.83053 12.1331 6.09412C12.8281 6.53308 13.0891 7.32374 12.9739 8.05603L12.1624 12.4779L12.1233 12.639C11.894 13.4341 11.1793 14.0004 10.3372 14.0004H4.66045L4.49443 13.9926C3.72607 13.9237 3.08945 13.3812 2.87529 12.639L2.83623 12.4779L2.02471 8.05603C1.90415 7.31167 2.25848 6.5255 2.89482 6.12341C3.27434 5.84916 3.37404 5.39402 2.97978 5.19373L2.89482 5.15759C2.24265 4.91049 2.2945 4.1094 2.87627 4.01013L3.00029 4.00037H12.0003ZM4.10967 5.00037C4.20504 5.21353 4.24167 5.43927 4.22881 5.65564C4.19483 6.22434 3.84539 6.6698 3.47978 6.93396L3.45439 6.95154L3.42803 6.96814C3.13146 7.15571 2.95549 7.54634 3.01201 7.89587L3.8167 12.2836L3.86064 12.4379C3.99174 12.7806 4.30985 13.0003 4.66045 13.0004H10.3372C10.6883 13.0004 11.0059 12.7804 11.137 12.4379L11.181 12.2836L11.9856 7.89392C12.0478 7.48503 11.896 7.12749 11.5989 6.93982L11.5872 6.93201C11.1947 6.67636 10.8329 6.22818 10.7981 5.6488C10.7841 5.41275 10.8276 5.19438 10.9124 5.00037H9.05693C9.02162 5.1465 9.00029 5.31234 9.00029 5.50037C9.00053 6.49579 9.95439 7.14921 9.95439 8.34998C9.95438 9.26981 9.49817 9.84216 8.62139 9.84216C8.13175 9.84194 7.57861 9.46089 7.57842 8.75818C7.57842 7.89659 8.19937 7.34551 8.19951 6.25037C8.19951 5.81791 8.08405 5.37659 7.90459 5.00037H4.10967ZM7.50029 0.0032959C8.19539 0.00339343 8.75076 0.281559 8.75029 0.750366C8.75012 0.997382 8.57547 1.12061 8.42314 1.22791C8.305 1.31112 8.19951 1.38507 8.19951 1.50037C8.20163 1.99975 12.5003 1.50061 12.5003 2.50037C12.5001 2.77622 12.2761 3.00017 12.0003 3.00037H3.00029C2.72427 3.00037 2.50049 2.77634 2.50029 2.50037C2.50029 1.50061 6.79797 1.99975 6.8001 1.50037C6.8001 1.38502 6.69466 1.31116 6.57646 1.22791C6.42414 1.12062 6.25047 0.99737 6.25029 0.750366C6.24983 0.281477 6.80502 0.0032959 7.50029 0.0032959Z",
4508 fill: "currentColor",
4509 })
4510 }
4511
4512 const WIDTH: Option<&'static str> = Some("15");
4513 const HEIGHT: Option<&'static str> = Some("15");
4514 const FILL: Option<&'static str> = Some("none");
4515 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4516
4517}
4518
4519#[derive(Default, Copy, Clone, PartialEq, Eq)]
4520pub struct IdCard;
4521
4522impl IconShape for IdCard {
4523 fn child_elements(&self) -> Element {
4524 rsx!(path {
4525 d: "M14 3.00006C14.5523 3.00006 15 3.44778 15 4.00006V11.0001C15 11.5523 14.5523 12.0001 14 12.0001H1L0.897461 11.9952C0.393331 11.9438 0 11.5177 0 11.0001V4.00006C0 3.44778 0.447715 3.00006 1 3.00006H14ZM1 11.0001H14V4.00006H1V11.0001ZM5.75 5.00006C5.88807 5.00006 6 5.11199 6 5.25006V9.75006C5.99997 9.8881 5.88805 10.0001 5.75 10.0001H2.25C2.11195 10.0001 2.00003 9.8881 2 9.75006V5.25006C2 5.11199 2.11193 5.00006 2.25 5.00006H5.75ZM12.5 9.00006C12.7761 9.00006 13 9.22392 13 9.50006C13 9.77618 12.7761 10.0001 12.5 10.0001H7.5C7.22388 10.0001 7.00003 9.77618 7 9.50006C7 9.22392 7.22386 9.00006 7.5 9.00006H12.5ZM10.5 7.00006C10.7761 7.00006 11 7.22392 11 7.50006C11 7.77618 10.7761 8.00006 10.5 8.00006H7.5C7.22388 8.00006 7.00003 7.77618 7 7.50006C7 7.22392 7.22386 7.00006 7.5 7.00006H10.5ZM11.5 5.00006C11.7761 5.00006 12 5.22392 12 5.50006C12 5.77618 11.7761 6.00006 11.5 6.00006H7.5C7.22388 6.00006 7.00003 5.77618 7 5.50006C7 5.22392 7.22386 5.00006 7.5 5.00006H11.5Z",
4526 fill: "currentColor",
4527 })
4528 }
4529
4530 const WIDTH: Option<&'static str> = Some("15");
4531 const HEIGHT: Option<&'static str> = Some("15");
4532 const FILL: Option<&'static str> = Some("none");
4533 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4534
4535}
4536
4537#[derive(Default, Copy, Clone, PartialEq, Eq)]
4538pub struct Image;
4539
4540impl IconShape for Image {
4541 fn child_elements(&self) -> Element {
4542 rsx!(path {
4543 d: "M12.5 1C13.3284 1 14 1.67157 14 2.5V12.5C14 13.3284 13.3284 14 12.5 14H2.5C1.72334 14 1.08461 13.4097 1.00781 12.6533L1 12.5V2.5C1 1.67157 1.67157 1 2.5 1H12.5ZM2 9.63574V12.5L2.00977 12.6006C2.04966 12.7961 2.20392 12.9503 2.39941 12.9902L2.5 13H8.94141L7.52832 11.4395V11.4385L3.98828 7.64746L2 9.63574ZM8.4834 11.1523L10.1553 13H12.5L12.6006 12.9902C12.7961 12.9503 12.9503 12.7961 12.9902 12.6006L13 12.5V10.6367L11 8.63672L8.4834 11.1523ZM2.39941 2.00977C2.17145 2.05629 2 2.25829 2 2.5V8.36328L3.68164 6.68164L3.75195 6.625C3.82721 6.57522 3.91621 6.54823 4.00781 6.5498C4.1298 6.55192 4.24585 6.60417 4.3291 6.69336L7.87305 10.4893L10.6816 7.68164L10.752 7.62402C10.9266 7.50851 11.1645 7.5278 11.3184 7.68164L13 9.36328V2.5C13 2.25829 12.8286 2.05629 12.6006 2.00977L12.5 2H2.5L2.39941 2.00977ZM7.5 3.74902C8.46693 3.74902 9.25098 4.53307 9.25098 5.5C9.25098 6.46693 8.46693 7.25098 7.5 7.25098C6.53307 7.25098 5.74902 6.46693 5.74902 5.5C5.74902 4.53307 6.53307 3.74902 7.5 3.74902ZM7.5 4.64941C7.03013 4.64941 6.64941 5.03013 6.64941 5.5C6.64941 5.96987 7.03013 6.35059 7.5 6.35059C7.96987 6.35059 8.35059 5.96987 8.35059 5.5C8.35059 5.03013 7.96987 4.64941 7.5 4.64941Z",
4544 fill: "currentColor",
4545 })
4546 }
4547
4548 const WIDTH: Option<&'static str> = Some("15");
4549 const HEIGHT: Option<&'static str> = Some("15");
4550 const FILL: Option<&'static str> = Some("none");
4551 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4552
4553}
4554
4555#[derive(Default, Copy, Clone, PartialEq, Eq)]
4556pub struct InfoCircled;
4557
4558impl IconShape for InfoCircled {
4559 fn child_elements(&self) -> Element {
4560 rsx!(path {
4561 d: "M7.49915 0.876907C11.1566 0.876907 14.1218 3.84164 14.1222 7.49898C14.1222 11.1566 11.1568 14.122 7.49915 14.122C3.84181 14.1216 0.877075 11.1564 0.877075 7.49898C0.877487 3.8419 3.84206 0.877318 7.49915 0.876907ZM7.49915 1.82613C4.36673 1.82654 1.82671 4.36657 1.82629 7.49898C1.82629 10.6317 4.36648 13.1714 7.49915 13.1718C10.6321 13.1718 13.172 10.632 13.172 7.49898C13.1716 4.36631 10.6319 1.82613 7.49915 1.82613ZM7.60071 6.00972C7.82862 6.05627 8.0001 6.25829 8.00012 6.49995V9.99995H9.00012V11H6.00012V9.99995H7.00012V6.99995H6.00012V5.99995H7.50012L7.60071 6.00972ZM7.50012 3.74995C7.91423 3.75006 8.2501 4.08583 8.25012 4.49995C8.25012 4.9141 7.91424 5.24985 7.50012 5.24995C7.08591 5.24995 6.75012 4.91417 6.75012 4.49995C6.75015 4.08576 7.08592 3.74995 7.50012 3.74995Z",
4562 fill: "currentColor",
4563 })
4564 }
4565
4566 const WIDTH: Option<&'static str> = Some("15");
4567 const HEIGHT: Option<&'static str> = Some("15");
4568 const FILL: Option<&'static str> = Some("none");
4569 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4570
4571}
4572
4573#[derive(Default, Copy, Clone, PartialEq, Eq)]
4574pub struct Input;
4575
4576impl IconShape for Input {
4577 fn child_elements(&self) -> Element {
4578 rsx!(path {
4579 d: "M10.5 1C10.7761 1 11 1.22386 11 1.5C11 1.77614 10.7761 2 10.5 2C9.87329 2 9.54318 2.20068 9.34473 2.47852C9.1223 2.78998 9 3.28844 9 4V11C9 11.7116 9.1223 12.21 9.34473 12.5215C9.54318 12.7993 9.87329 13 10.5 13C10.7761 13 11 13.2239 11 13.5C11 13.7761 10.7761 14 10.5 14C9.62675 14 8.95682 13.7006 8.53027 13.1035C8.51917 13.088 8.51069 13.0705 8.5 13.0547C8.48931 13.0705 8.48083 13.088 8.46973 13.1035C8.04318 13.7006 7.37325 14 6.5 14C6.22386 14 6 13.7761 6 13.5C6 13.2239 6.22386 13 6.5 13C7.12671 13 7.45682 12.7993 7.65527 12.5215C7.8777 12.21 8 11.7116 8 11V4C8 3.28844 7.8777 2.78998 7.65527 2.47852C7.45682 2.20068 7.12671 2 6.5 2C6.22386 2 6 1.77614 6 1.5C6 1.22386 6.22386 1 6.5 1C7.37325 1 8.04318 1.29938 8.46973 1.89648C8.48067 1.91181 8.48946 1.92874 8.5 1.94434C8.51054 1.92874 8.51933 1.91181 8.53027 1.89648C8.95682 1.29938 9.62675 1 10.5 1ZM6 5H1V10H6V11H1L0.897461 10.9951C0.427034 10.9472 0.0527828 10.573 0.00488281 10.1025L0 10V5C0 4.48232 0.393331 4.05621 0.897461 4.00488L1 4H6V5ZM14.1025 4.00488C14.6067 4.05621 15 4.48232 15 5V10L14.9951 10.1025C14.9472 10.573 14.573 10.9472 14.1025 10.9951L14 11H11V10H14V5H11V4H14L14.1025 4.00488Z",
4580 fill: "currentColor",
4581 })
4582 }
4583
4584 const WIDTH: Option<&'static str> = Some("15");
4585 const HEIGHT: Option<&'static str> = Some("15");
4586 const FILL: Option<&'static str> = Some("none");
4587 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4588
4589}
4590
4591#[derive(Default, Copy, Clone, PartialEq, Eq)]
4592pub struct InstagramLogo;
4593
4594impl IconShape for InstagramLogo {
4595 fn child_elements(&self) -> Element {
4596 rsx!(path {
4597 d: "M7.5 1C9.26509 1 9.4867 1.00731 10.1797 1.03906C10.8715 1.07051 11.3444 1.18027 11.7578 1.34082C12.1915 1.50406 12.5845 1.76013 12.9092 2.09082C13.2398 2.41549 13.496 2.80847 13.6592 3.24219C13.8199 3.65563 13.9294 4.12846 13.9609 4.82031C13.9926 5.51332 14 5.73492 14 7.5C14 9.26507 13.9926 9.48659 13.9609 10.1797C13.9294 10.8715 13.8199 11.3444 13.6592 11.7578C13.4922 12.1896 13.2365 12.5818 12.9092 12.9092C12.5818 13.2365 12.1896 13.4922 11.7578 13.6592C11.3444 13.8198 10.8715 13.9294 10.1797 13.9609C9.48678 13.9926 9.26498 14 7.5 14C5.73493 14 5.51349 13.9926 4.82031 13.9609C4.12846 13.9294 3.65566 13.8199 3.24219 13.6592C2.80849 13.496 2.41548 13.2398 2.09082 12.9092C1.76025 12.5846 1.505 12.1914 1.3418 11.7578C1.1811 11.3444 1.07064 10.8716 1.03906 10.1797C1.00731 9.4867 1 9.26508 1 7.5C1 5.7349 1.00731 5.51332 1.03906 4.82031C1.07051 4.12846 1.18027 3.65565 1.34082 3.24219C1.50409 2.80847 1.76011 2.41546 2.09082 2.09082C2.41549 1.76016 2.80847 1.50403 3.24219 1.34082C3.65563 1.18013 4.12845 1.07064 4.82031 1.03906C5.51335 1.00744 5.7349 1 7.5 1ZM7.5 2C6.00634 2 5.817 1.99668 5.23047 2.02344C4.76956 2.04447 4.23873 2.07184 3.81641 2.19922C3.39409 2.3266 3.06249 2.50001 2.71875 2.88281C2.37502 3.26561 2.26965 3.58288 2.17578 3.89453C2.07813 4.21875 2.04614 4.64896 2.01953 5.23438C2.00609 5.52775 2.00153 5.72077 2 6.02734V8.97266C2.00154 9.27916 2.00609 9.47226 2.01953 9.76562C2.04614 10.351 2.07813 10.7813 2.17578 11.1055C2.26965 11.4171 2.37503 11.7344 2.71875 12.1172C3.06248 12.5 3.39409 12.6734 3.81641 12.8008C4.23873 12.9282 4.76956 12.9555 5.23047 12.9766C5.817 13.0033 6.00634 13 7.5 13C8.99363 13 9.17916 13.0064 9.76562 12.9795C10.3511 12.9529 10.7812 12.9209 11.1055 12.8232C11.4171 12.7294 11.7344 12.624 12.1172 12.2803C12.4999 11.9366 12.6734 11.6049 12.8008 11.1826C12.9281 10.7603 12.9555 10.2293 12.9766 9.76855C13.0033 9.18237 13 8.99332 13 7.5C13 6.00665 13.0033 5.81696 12.9766 5.23047C12.9555 4.76964 12.9281 4.23863 12.8008 3.81641C12.6734 3.39424 12.4999 3.0624 12.1172 2.71875C11.7345 2.37517 11.4171 2.26964 11.1055 2.17578C10.7813 2.07817 10.3509 2.04614 9.76562 2.01953C9.17916 1.99266 8.99363 2 7.5 2ZM7.5 4.25C9.29471 4.25009 10.7499 5.70529 10.75 7.5C10.7499 9.29471 9.29471 10.7499 7.5 10.75C5.70527 10.7499 4.25009 9.29472 4.25 7.5C4.25008 5.70527 5.70527 4.25007 7.5 4.25ZM7.5 5.25C6.25756 5.25007 5.25008 6.25756 5.25 7.5C5.25009 8.74244 6.25756 9.74993 7.5 9.75C8.74242 9.74991 9.74991 8.74242 9.75 7.5C9.74992 6.25757 8.74243 5.25009 7.5 5.25ZM10.9697 3.28027C11.3839 3.28027 11.7197 3.61607 11.7197 4.03027C11.7197 4.44449 11.3839 4.78027 10.9697 4.78027C10.5555 4.78027 10.2197 4.44449 10.2197 4.03027C10.2197 3.61607 10.5555 3.28027 10.9697 3.28027Z",
4598 fill: "currentColor",
4599 })
4600 }
4601
4602 const WIDTH: Option<&'static str> = Some("15");
4603 const HEIGHT: Option<&'static str> = Some("15");
4604 const FILL: Option<&'static str> = Some("none");
4605 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4606
4607}
4608
4609#[derive(Default, Copy, Clone, PartialEq, Eq)]
4610pub struct Keyboard;
4611
4612impl IconShape for Keyboard {
4613 fn child_elements(&self) -> Element {
4614 rsx!(path {
4615 d: "M13.6533 3.00781C14.4097 3.08461 15 3.72334 15 4.5V10.5L14.9922 10.6533C14.9205 11.3593 14.3593 11.9205 13.6533 11.9922L13.5 12H1.5L1.34668 11.9922C0.64069 11.9205 0.0794913 11.3593 0.0078125 10.6533L0 10.5V4.5C9.06007e-08 3.72334 0.590277 3.08461 1.34668 3.00781L1.5 3H13.5L13.6533 3.00781ZM1.5 4C1.22386 4 1 4.22386 1 4.5V10.5C1 10.7761 1.22386 11 1.5 11H13.5C13.7761 11 14 10.7761 14 10.5V4.5C14 4.22386 13.7761 4 13.5 4H1.5ZM3 10H2V9H3V10ZM11 10H4V9H11V10ZM13 10H12V9H13V10ZM4 8H3V7H4V8ZM6 8H5V7H6V8ZM8 8H7V7H8V8ZM10 8H9V7H10V8ZM12 8H11V7H12V8ZM3 6H2V5H3V6ZM5 6H4V5H5V6ZM7 6H6V5H7V6ZM9 6H8V5H9V6ZM11 6H10V5H11V6ZM13 6H12V5H13V6Z",
4616 fill: "currentColor",
4617 })
4618 }
4619
4620 const WIDTH: Option<&'static str> = Some("15");
4621 const HEIGHT: Option<&'static str> = Some("15");
4622 const FILL: Option<&'static str> = Some("none");
4623 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4624
4625}
4626
4627#[derive(Default, Copy, Clone, PartialEq, Eq)]
4628pub struct LapTimer;
4629
4630impl IconShape for LapTimer {
4631 fn child_elements(&self) -> Element {
4632 rsx!(path {
4633 d: "M9.00037 0C9.27633 0.000210167 9.50037 0.223987 9.50037 0.5C9.50037 0.776013 9.27633 0.99979 9.00037 1H8.00037V2.12109C9.09875 2.20608 10.1186 2.56801 10.9916 3.1377C11.0114 3.1099 11.033 3.08255 11.058 3.05762L12.058 2.05762L12.1566 1.97754C12.3992 1.81778 12.7293 1.84422 12.9427 2.05762C13.156 2.27105 13.1826 2.60127 13.0228 2.84375L12.9427 2.94238L11.9662 3.91797C13.1585 5.08042 13.8997 6.70335 13.8998 8.5C13.8996 12.0343 11.0347 14.8992 7.50037 14.8994C3.96587 14.8994 1.10019 12.0344 1.09998 8.5C1.10016 5.13385 3.69958 2.37627 7.00037 2.12109V1H6.00037C5.72422 1 5.50037 0.776142 5.50037 0.5C5.50037 0.223858 5.72422 0 6.00037 0H9.00037ZM7.50037 3.09961C4.51815 3.09961 2.10017 5.51783 2.09998 8.5C2.10019 11.4822 4.51816 13.8994 7.50037 13.8994C10.4824 13.8992 12.8996 11.482 12.8998 8.5C12.8996 5.51796 10.4824 3.09982 7.50037 3.09961ZM7.50037 8.5L10.6117 11.6113C9.81554 12.4075 8.71524 12.8993 7.50037 12.8994C5.07044 12.8994 3.10019 10.9299 3.09998 8.5C3.10017 6.07012 5.07044 4.09961 7.50037 4.09961V8.5Z",
4634 fill: "currentColor",
4635 })
4636 }
4637
4638 const WIDTH: Option<&'static str> = Some("15");
4639 const HEIGHT: Option<&'static str> = Some("15");
4640 const FILL: Option<&'static str> = Some("none");
4641 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4642
4643}
4644
4645#[derive(Default, Copy, Clone, PartialEq, Eq)]
4646pub struct Laptop;
4647
4648impl IconShape for Laptop {
4649 fn child_elements(&self) -> Element {
4650 rsx!(path {
4651 d: "M12.75 3C13.4404 3 14 3.55964 14 4.25V12H15V12.5C15 12.7761 14.7761 13 14.5 13H0.5C0.223858 13 0 12.7761 0 12.5V12H1V4.25C1 3.55964 1.55964 3 2.25 3H12.75ZM2.25 4C2.11193 4 2 4.11193 2 4.25V11.5H13V4.25C13 4.11193 12.8881 4 12.75 4H2.25Z",
4652 fill: "currentColor",
4653 })
4654 }
4655
4656 const WIDTH: Option<&'static str> = Some("15");
4657 const HEIGHT: Option<&'static str> = Some("15");
4658 const FILL: Option<&'static str> = Some("none");
4659 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4660
4661}
4662
4663#[derive(Default, Copy, Clone, PartialEq, Eq)]
4664pub struct Layers;
4665
4666impl IconShape for Layers {
4667 fn child_elements(&self) -> Element {
4668 rsx!(path {
4669 d: "M12.8378 10.2774C13.0576 10.2018 13.3077 10.2882 13.4306 10.4962C13.5531 10.7041 13.508 10.9642 13.3358 11.1202L13.2538 11.1808L7.75381 14.4308C7.59714 14.5231 7.40267 14.5231 7.246 14.4308L1.746 11.1808L1.66397 11.1202C1.49183 10.9643 1.44671 10.704 1.56924 10.4962C1.69212 10.2882 1.94221 10.2018 2.16202 10.2774L2.25381 10.3194L7.49991 13.419L12.746 10.3194L12.8378 10.2774ZM12.8378 7.27743C13.0576 7.20179 13.3077 7.28825 13.4306 7.49618C13.5531 7.70407 13.508 7.96425 13.3358 8.12021L13.2538 8.18075L7.75381 11.4308C7.59714 11.5231 7.40267 11.5231 7.246 11.4308L1.746 8.18075L1.66397 8.12021C1.49183 7.96425 1.44671 7.70405 1.56924 7.49618C1.69212 7.28825 1.94221 7.20183 2.16202 7.27743L2.25381 7.31942L7.49991 10.419L12.746 7.31942L12.8378 7.27743ZM7.30557 0.789151C7.45005 0.728211 7.6165 0.738495 7.75381 0.819425L13.2538 4.06942C13.4061 4.15938 13.4999 4.32326 13.4999 4.50009C13.4999 4.67692 13.4061 4.8408 13.2538 4.93075L7.75381 8.18075C7.59714 8.2731 7.40267 8.27312 7.246 8.18075L1.746 4.93075C1.5938 4.84079 1.49991 4.67689 1.49991 4.50009C1.49991 4.32328 1.5938 4.15939 1.746 4.06942L7.246 0.819425L7.30557 0.789151ZM2.98233 4.50009L7.49991 7.16903L12.0165 4.50009L7.49991 1.83017L2.98233 4.50009Z",
4670 fill: "currentColor",
4671 })
4672 }
4673
4674 const WIDTH: Option<&'static str> = Some("15");
4675 const HEIGHT: Option<&'static str> = Some("15");
4676 const FILL: Option<&'static str> = Some("none");
4677 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4678
4679}
4680
4681#[derive(Default, Copy, Clone, PartialEq, Eq)]
4682pub struct Layout;
4683
4684impl IconShape for Layout {
4685 fn child_elements(&self) -> Element {
4686 rsx!(path {
4687 d: "M12.6533 1.00781C13.4097 1.08461 14 1.72334 14 2.5V12.5L13.9922 12.6533C13.9205 13.3593 13.3593 13.9205 12.6533 13.9922L12.5 14H2.5L2.34668 13.9922C1.64069 13.9205 1.07949 13.3593 1.00781 12.6533L1 12.5V2.5C1 1.72334 1.59028 1.08461 2.34668 1.00781L2.5 1H12.5L12.6533 1.00781ZM2.5 2C2.22386 2 2 2.22386 2 2.5V12.5C2 12.7761 2.22386 13 2.5 13H5V2H2.5ZM10 13H12.5C12.7761 13 13 12.7761 13 12.5V2.5C13 2.22386 12.7761 2 12.5 2H10V13ZM6 13H9V2H6V13Z",
4688 fill: "currentColor",
4689 })
4690 }
4691
4692 const WIDTH: Option<&'static str> = Some("15");
4693 const HEIGHT: Option<&'static str> = Some("15");
4694 const FILL: Option<&'static str> = Some("none");
4695 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4696
4697}
4698
4699#[derive(Default, Copy, Clone, PartialEq, Eq)]
4700pub struct LetterCaseCapitalize;
4701
4702impl IconShape for LetterCaseCapitalize {
4703 fn child_elements(&self) -> Element {
4704 rsx!(path {
4705 d: "M3.68946 2.75C3.89633 2.74979 4.08178 2.87732 4.15626 3.07031L7.36622 11.3896L7.39356 11.4873C7.43224 11.7167 7.30549 11.9491 7.08009 12.0361C6.8546 12.1231 6.60494 12.0358 6.4795 11.8398L6.4336 11.75L5.38282 9.02539H2.01075L0.966806 11.749L0.920908 11.8398C0.795759 12.0354 0.546617 12.1233 0.321299 12.0371C0.0635625 11.9382 -0.0655997 11.6484 0.0332127 11.3906L3.22364 3.07129L3.25587 3.00195C3.34371 2.84806 3.50847 2.75031 3.68946 2.75ZM10.8984 5.20703C11.792 5.20703 12.6044 5.60223 13.1533 6.22461V5.71973C13.1535 5.47158 13.3554 5.26994 13.6035 5.26953C13.852 5.26953 14.0536 5.47132 14.0537 5.71973V11.5293C14.0537 11.7778 13.8521 11.9795 13.6035 11.9795C13.3553 11.9791 13.1533 11.7776 13.1533 11.5293V11.0195C12.5733 11.6675 11.7213 12.0127 10.8984 12.0127C9.3579 12.0124 8.0088 10.6332 8.0088 8.60938C8.00895 6.68571 9.25803 5.20734 10.8984 5.20703ZM11.0859 6.05762C10.1083 6.05812 9.03524 6.96621 9.03517 8.60938C9.03517 10.1527 10.0084 11.1606 11.0859 11.1611C11.9702 11.1611 12.7714 10.4926 13.1533 9.79492V7.30566C12.7635 6.58343 11.9416 6.05762 11.0859 6.05762ZM2.33692 8.17578H5.0547L3.69142 4.64258L2.33692 8.17578Z",
4706 fill: "currentColor",
4707 })
4708 }
4709
4710 const WIDTH: Option<&'static str> = Some("15");
4711 const HEIGHT: Option<&'static str> = Some("15");
4712 const FILL: Option<&'static str> = Some("none");
4713 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4714
4715}
4716
4717#[derive(Default, Copy, Clone, PartialEq, Eq)]
4718pub struct LetterCaseLowercase;
4719
4720impl IconShape for LetterCaseLowercase {
4721 fn child_elements(&self) -> Element {
4722 rsx!(path {
4723 d: "M3.69879 5.20702C4.59242 5.20702 5.4047 5.60212 5.95367 6.2246V5.71972C5.95383 5.47132 6.15544 5.26952 6.40387 5.26952C6.65229 5.26954 6.85391 5.47133 6.85406 5.71972V11.5293C6.85406 11.7778 6.65238 11.9795 6.40387 11.9795C6.15534 11.9795 5.95367 11.7778 5.95367 11.5293V11.0195C5.37363 11.6676 4.52168 12.0127 3.69879 12.0127C2.15809 12.0126 0.809143 10.6333 0.809143 8.60937C0.809292 6.68556 2.0582 5.20711 3.69879 5.20702ZM10.7984 5.20702C11.6919 5.20702 12.5043 5.60223 13.0533 6.2246V5.71972C13.0534 5.47158 13.2554 5.26995 13.5035 5.26952C13.7519 5.26952 13.9535 5.47132 13.9537 5.71972V11.5293C13.9537 11.7778 13.752 11.9795 13.5035 11.9795C13.2553 11.9791 13.0533 11.7776 13.0533 11.5293V11.0195C12.4732 11.6674 11.6212 12.0127 10.7984 12.0127C9.25786 12.0124 7.90875 10.6332 7.90875 8.60937C7.9089 6.68571 9.158 5.20734 10.7984 5.20702ZM3.88629 6.05761C2.90854 6.05789 1.83559 6.96599 1.83551 8.60937C1.83551 10.1529 2.80856 11.1608 3.88629 11.1611C4.77058 11.1611 5.57174 10.4926 5.95367 9.79491V7.30566C5.56383 6.58334 4.74205 6.05761 3.88629 6.05761ZM10.9859 6.05761C10.0083 6.05813 8.9352 6.96621 8.93512 8.60937C8.93512 10.1527 9.90833 11.1606 10.9859 11.1611C11.8701 11.1611 12.6713 10.4926 13.0533 9.79491V7.30566C12.6634 6.58343 11.8416 6.05761 10.9859 6.05761Z",
4724 fill: "currentColor",
4725 })
4726 }
4727
4728 const WIDTH: Option<&'static str> = Some("15");
4729 const HEIGHT: Option<&'static str> = Some("15");
4730 const FILL: Option<&'static str> = Some("none");
4731 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4732
4733}
4734
4735#[derive(Default, Copy, Clone, PartialEq, Eq)]
4736pub struct LetterCaseToggle;
4737
4738impl IconShape for LetterCaseToggle {
4739 fn child_elements(&self) -> Element {
4740 rsx!(path {
4741 d: "M11.2891 2.74992C11.4959 2.7498 11.6814 2.87731 11.7559 3.07023L14.9658 11.3893L14.9931 11.487C15.0318 11.7163 14.9049 11.9487 14.6796 12.0358C14.4542 12.1227 14.2045 12.0353 14.0791 11.8395L14.0332 11.7497L12.9824 9.02513H9.61044L8.56653 11.7487L8.52063 11.8395C8.39552 12.035 8.1463 12.1228 7.92104 12.0368C7.6633 11.9379 7.53415 11.6481 7.63296 11.3903L10.8233 3.0712L10.8555 3.00187C10.9434 2.84803 11.1082 2.75023 11.2891 2.74992ZM2.89872 5.20688C3.79233 5.20688 4.60458 5.60197 5.15354 6.22443V5.71956C5.15369 5.4713 5.35547 5.26959 5.60372 5.26938C5.85215 5.26938 6.05376 5.47117 6.0539 5.71956V11.529C6.0539 11.7775 5.85224 11.9792 5.60372 11.9792C5.35538 11.9789 5.15354 11.7774 5.15354 11.529V11.0192C4.57351 11.6672 3.72158 12.0124 2.89872 12.0124C1.35806 12.0123 0.00915501 10.633 0.00915501 8.60913C0.00930358 6.68538 1.25817 5.20697 2.89872 5.20688ZM3.08622 6.05744C2.10849 6.05772 1.03557 6.9658 1.03549 8.60913C1.03549 10.1526 2.00852 11.1605 3.08622 11.1608C3.97048 11.1608 4.77161 10.4924 5.15354 9.79464V7.30546C4.76371 6.58316 3.94195 6.05744 3.08622 6.05744ZM9.93661 8.17555H12.6543L11.2911 4.64245L9.93661 8.17555Z",
4742 fill: "currentColor",
4743 })
4744 }
4745
4746 const WIDTH: Option<&'static str> = Some("15");
4747 const HEIGHT: Option<&'static str> = Some("15");
4748 const FILL: Option<&'static str> = Some("none");
4749 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4750
4751}
4752
4753#[derive(Default, Copy, Clone, PartialEq, Eq)]
4754pub struct LetterCaseUppercase;
4755
4756impl IconShape for LetterCaseUppercase {
4757 fn child_elements(&self) -> Element {
4758 rsx!(path {
4759 d: "M1.01858 11.7432C0.92273 12.0019 0.634867 12.1337 0.375998 12.0381C0.117505 11.9421 -0.0144397 11.6552 0.0810757 11.3965L1.01858 11.7432ZM7.16994 11.3965C7.26534 11.6553 7.13266 11.9423 6.87404 12.0381C6.61513 12.1337 6.32728 12.002 6.23147 11.7432L7.16994 11.3965ZM8.76467 11.7432C8.66879 12.002 8.38099 12.1338 8.12209 12.0381C7.86367 11.9421 7.73169 11.6552 7.82717 11.3965L8.76467 11.7432ZM14.916 11.3965C15.0115 11.6553 14.8789 11.9423 14.6201 12.0381C14.3612 12.1337 14.0733 12.002 13.9776 11.7432L14.916 11.3965ZM3.62502 2.75001C3.83403 2.75007 4.02107 2.88026 4.09377 3.07618L7.16994 11.3965L6.70022 11.5693L6.23147 11.7432L5.22365 9.01563H2.02639L1.01858 11.7432L0.549826 11.5693L0.0810757 11.3965L3.15627 3.07618L3.1885 3.00587C3.27579 2.84968 3.44214 2.75012 3.62502 2.75001ZM11.3711 2.75001C11.5802 2.75001 11.7671 2.88023 11.8399 3.07618L14.916 11.3965L14.4463 11.5693L13.9776 11.7432L12.9697 9.01563H9.77248L8.76467 11.7432L8.29592 11.5693L7.82717 11.3965L10.9024 3.07618L10.9346 3.00587C11.0219 2.84967 11.1883 2.75016 11.3711 2.75001ZM2.34084 8.16602H4.9092L3.62502 4.69141L2.34084 8.16602ZM10.0869 8.16602H12.6553L11.3711 4.69141L10.0869 8.16602Z",
4760 fill: "currentColor",
4761 })
4762 }
4763
4764 const WIDTH: Option<&'static str> = Some("15");
4765 const HEIGHT: Option<&'static str> = Some("15");
4766 const FILL: Option<&'static str> = Some("none");
4767 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4768
4769}
4770
4771#[derive(Default, Copy, Clone, PartialEq, Eq)]
4772pub struct LetterSpacing;
4773
4774impl IconShape for LetterSpacing {
4775 fn child_elements(&self) -> Element {
4776 rsx!(path {
4777 d: "M12.2709 10.2168C12.4271 10.0607 12.6811 10.0606 12.8373 10.2168L14.8373 12.2168L14.8871 12.2783C14.9304 12.3434 14.9545 12.4206 14.9545 12.5C14.9545 12.606 14.9122 12.7082 14.8373 12.7832L12.8373 14.7832L12.7738 14.8339C12.6186 14.9363 12.4075 14.9196 12.2709 14.7832C12.1342 14.6465 12.1177 14.4355 12.2201 14.2802L12.2709 14.2168L13.5873 12.9004H1.52087L2.83728 14.2168C2.99321 14.3729 2.99325 14.627 2.83728 14.7832C2.68115 14.9393 2.4271 14.9392 2.27087 14.7832L0.270874 12.7832C0.195874 12.7082 0.153703 12.606 0.153687 12.5C0.153687 12.3939 0.19586 12.2918 0.270874 12.2168L2.27087 10.2168L2.33435 10.166C2.48957 10.0638 2.70073 10.0802 2.83728 10.2168C2.97366 10.3534 2.99027 10.5645 2.88806 10.7197L2.83728 10.7832L1.52087 12.0996H13.5873L12.2709 10.7832C12.1147 10.627 12.1147 10.373 12.2709 10.2168ZM13.389 1.22653C13.5158 1.03205 13.766 0.946105 13.9906 1.03414C14.2153 1.12246 14.3399 1.35597 14.3002 1.58493L14.2728 1.68258L11.5209 8.68453C11.4457 8.87576 11.2615 9.00185 11.056 9.00192C10.8761 9.00181 10.7118 8.90531 10.6234 8.75289L10.5902 8.68453L7.83826 1.68258C7.73772 1.42579 7.86478 1.13514 8.12146 1.03414C8.37828 0.933439 8.66884 1.06065 8.7699 1.31735L11.0551 7.13571L13.3422 1.31735L13.389 1.22653ZM4.5531 0.999964C4.75278 1.00015 4.93326 1.11923 5.01208 1.3027L8.01111 8.29977L8.04138 8.39645C8.08822 8.6241 7.97026 8.86075 7.74841 8.95602C7.52641 9.05102 7.27356 8.97313 7.14099 8.78219L7.09119 8.69332L6.1156 6.41696H2.98962L2.01404 8.69332L1.96423 8.78219C1.83159 8.97309 1.57882 9.05116 1.35681 8.95602C1.1035 8.84706 0.985587 8.55333 1.09412 8.29977L4.09314 1.3027L4.12732 1.23727C4.21739 1.09137 4.3782 1.00007 4.5531 0.999964ZM3.35291 5.56735H5.75134L4.55212 2.76852L3.35291 5.56735Z",
4778 fill: "currentColor",
4779 })
4780 }
4781
4782 const WIDTH: Option<&'static str> = Some("15");
4783 const HEIGHT: Option<&'static str> = Some("15");
4784 const FILL: Option<&'static str> = Some("none");
4785 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4786
4787}
4788
4789#[derive(Default, Copy, Clone, PartialEq, Eq)]
4790pub struct LightningBolt;
4791
4792impl IconShape for LightningBolt {
4793 fn child_elements(&self) -> Element {
4794 rsx!(path {
4795 d: "M8.15623 0.136828C8.29885 0.0017736 8.5108 -0.038992 8.69627 0.0401498C8.90813 0.130807 9.03093 0.354826 8.99314 0.582135L8.08983 6.00004H12.4999C12.6893 6.00004 12.8625 6.10703 12.9472 6.2764C13.0318 6.44567 13.0137 6.64836 12.9003 6.79983L6.90039 14.7997C6.76218 14.984 6.51554 15.0503 6.30372 14.9599C6.09185 14.8692 5.96904 14.6452 6.00685 14.4179L6.91016 9H2.50005C2.31067 9 2.13749 8.89303 2.05279 8.72364C1.96818 8.55437 1.98625 8.35167 2.09967 8.20021L8.09959 0.200304L8.15623 0.136828ZM3.50004 8.00001H7.49999C7.64696 8.00001 7.78682 8.06464 7.88182 8.17677C7.9767 8.28885 8.01724 8.43718 7.99315 8.58204L7.33007 12.5586L11.4999 7.00003H7.49999C7.35302 7.00003 7.21316 6.93541 7.11816 6.82327C7.02329 6.71118 6.98274 6.56286 7.00683 6.418L7.66894 2.44051L3.50004 8.00001Z",
4796 fill: "currentColor",
4797 })
4798 }
4799
4800 const WIDTH: Option<&'static str> = Some("15");
4801 const HEIGHT: Option<&'static str> = Some("15");
4802 const FILL: Option<&'static str> = Some("none");
4803 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4804
4805}
4806
4807#[derive(Default, Copy, Clone, PartialEq, Eq)]
4808pub struct LineHeight;
4809
4810impl IconShape for LineHeight {
4811 fn child_elements(&self) -> Element {
4812 rsx!(path {
4813 d: "M3.49984 2.09999C3.6058 2.10009 3.70812 2.14225 3.78305 2.21718L5.78305 4.21718L5.83383 4.28065C5.93587 4.43586 5.91954 4.64709 5.78305 4.78358C5.64655 4.92007 5.43531 4.93641 5.28012 4.83437L5.21664 4.78358L3.90023 3.46718V11.5336L5.21664 10.2172C5.37285 10.061 5.62684 10.061 5.78305 10.2172C5.93888 10.3734 5.93913 10.6275 5.78305 10.7836L3.78305 12.7836C3.70812 12.8585 3.60579 12.9007 3.49984 12.9008C3.39393 12.9008 3.29162 12.8584 3.21664 12.7836L1.21664 10.7836L1.16586 10.7201C1.0635 10.5649 1.08002 10.3538 1.21664 10.2172C1.35326 10.0806 1.56433 10.064 1.71957 10.1664L1.78305 10.2172L3.09945 11.5336V3.46718L1.78305 4.78358C1.62696 4.93966 1.37288 4.93941 1.21664 4.78358C1.06043 4.62738 1.06044 4.37339 1.21664 4.21718L3.21664 2.21718L3.27816 2.16737C3.34333 2.12402 3.42042 2.09999 3.49984 2.09999ZM14.4998 10.0004C14.776 10.0004 14.9998 10.2242 14.9998 10.5004C14.9996 10.7763 14.7759 11.0004 14.4998 11.0004H8.49984C8.22389 11.0003 8.00006 10.7763 7.99984 10.5004C7.99984 10.2243 8.22376 10.0004 8.49984 10.0004H14.4998ZM14.4998 7.00038C14.776 7.00038 14.9998 7.22424 14.9998 7.50038C14.9996 7.77634 14.7759 8.00038 14.4998 8.00038H8.49984C8.22389 8.00032 8.00006 7.7763 7.99984 7.50038C7.99984 7.22428 8.22376 7.00045 8.49984 7.00038H14.4998ZM14.4998 4.00038C14.776 4.00038 14.9998 4.22424 14.9998 4.50038C14.9996 4.77634 14.7759 5.00038 14.4998 5.00038H8.49984C8.22389 5.00032 8.00006 4.7763 7.99984 4.50038C7.99984 4.22428 8.22376 4.00045 8.49984 4.00038H14.4998Z",
4814 fill: "currentColor",
4815 })
4816 }
4817
4818 const WIDTH: Option<&'static str> = Some("15");
4819 const HEIGHT: Option<&'static str> = Some("15");
4820 const FILL: Option<&'static str> = Some("none");
4821 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4822
4823}
4824
4825#[derive(Default, Copy, Clone, PartialEq, Eq)]
4826pub struct Link1;
4827
4828impl IconShape for Link1 {
4829 fn child_elements(&self) -> Element {
4830 rsx!(path {
4831 d: "M5.49971 4.00002C5.77585 4.00002 5.9997 4.22388 5.99971 4.50002C5.99971 4.77616 5.77585 5.00002 5.49971 5.00002H4.62471C4.17194 5.00002 3.92833 5.00123 3.75752 5.01662L3.60615 5.03712C2.85324 5.1809 2.26914 5.71599 2.07197 6.39552L2.03779 6.53322C2.00278 6.70222 1.99971 6.91753 1.99971 7.50002C1.99971 8.08249 2.00278 8.29781 2.03779 8.46681L2.07197 8.60451C2.26914 9.28404 2.85324 9.81913 3.60615 9.96291L3.75752 9.98341C3.92833 9.9988 4.17194 10 4.62471 10H5.49971C5.77585 10 5.9997 10.2239 5.99971 10.5C5.99971 10.7762 5.77585 11 5.49971 11H4.62471C4.20653 11 3.90568 11.001 3.65498 10.9776L3.41865 10.9453C2.31208 10.734 1.41654 9.93815 1.11104 8.8838L1.0583 8.66994C0.99725 8.37527 0.999709 8.03268 0.999709 7.50002C0.999708 6.96735 0.997247 6.62476 1.0583 6.33009L1.11104 6.11623C1.41654 5.06188 2.31208 4.26602 3.41865 4.0547L3.65498 4.02248C3.90568 3.99899 4.20653 4.00002 4.62471 4.00002H5.49971ZM10.3747 4.00002C10.9322 4.00002 11.2812 3.99758 11.5808 4.0547L11.7995 4.10451C12.8761 4.39219 13.7157 5.24284 13.9411 6.33009L13.9763 6.56252C14.0013 6.80807 13.9997 7.10052 13.9997 7.50002C13.9997 7.89951 14.0013 8.19196 13.9763 8.43752L13.9411 8.66994C13.7157 9.7572 12.8761 10.6078 11.7995 10.8955L11.5808 10.9453C11.2812 11.0025 10.9322 11 10.3747 11H9.49971C9.22357 11 8.99971 10.7762 8.99971 10.5C8.99971 10.2239 9.22358 10 9.49971 10H10.3747C10.9781 10 11.21 9.99783 11.3933 9.96291L11.5417 9.92873C12.2712 9.73395 12.817 9.16459 12.9616 8.46681L12.9831 8.32619C12.9986 8.16705 12.9997 7.9367 12.9997 7.50002C12.9997 7.06332 12.9986 6.83298 12.9831 6.67384L12.9616 6.53322C12.817 5.83545 12.2712 5.26608 11.5417 5.0713L11.3933 5.03712C11.21 5.0022 10.9781 5.00002 10.3747 5.00002H9.49971C9.22357 5.00001 8.99971 4.77615 8.99971 4.50002C8.99971 4.22388 9.22358 4.00002 9.49971 4.00002H10.3747ZM10.0007 7.00002C10.2767 7.00017 10.5007 7.22397 10.5007 7.50002C10.5007 7.77606 10.2767 7.99986 10.0007 8.00002H5.00069C4.72454 8.00002 4.50068 7.77616 4.50068 7.50002C4.50068 7.22387 4.72454 7.00002 5.00069 7.00002H10.0007Z",
4832 fill: "currentColor",
4833 })
4834 }
4835
4836 const WIDTH: Option<&'static str> = Some("15");
4837 const HEIGHT: Option<&'static str> = Some("15");
4838 const FILL: Option<&'static str> = Some("none");
4839 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4840
4841}
4842
4843#[derive(Default, Copy, Clone, PartialEq, Eq)]
4844pub struct Link2;
4845
4846impl IconShape for Link2 {
4847 fn child_elements(&self) -> Element {
4848 rsx!(path {
4849 d: "M3.6893 6.37529C3.88335 6.24731 4.14742 6.26897 4.31821 6.43975C4.51323 6.63496 4.51323 6.95156 4.31821 7.14678L3.69907 7.76592C3.37878 8.08621 3.20737 8.25925 3.09751 8.39092L3.00473 8.51201C2.54529 9.18833 2.53677 10.0437 2.95395 10.679L3.03891 10.7933C3.14049 10.9167 3.30254 11.0803 3.61118 11.389C4.02302 11.8008 4.17689 11.9514 4.32114 12.0462L4.44223 12.1194C5.06223 12.4608 5.85391 12.4263 6.48813 11.9954L6.60923 11.9026C6.74094 11.7927 6.91473 11.6216 7.2352 11.3011L7.85337 10.6819C8.04855 10.4869 8.36517 10.487 8.5604 10.6819C8.7556 10.8771 8.75548 11.1937 8.5604 11.389L7.94223 12.0081C7.64648 12.3039 7.43399 12.5174 7.24008 12.678L7.04965 12.8226C6.11777 13.4555 4.9223 13.5259 3.96079 12.9964L3.77231 12.8821C3.52088 12.717 3.28054 12.4734 2.90415 12.097C2.62181 11.8146 2.41357 11.6085 2.25766 11.4173L2.11801 11.2278C1.468 10.2379 1.50252 8.94437 2.17758 7.95049L2.32212 7.76006C2.48279 7.56615 2.69629 7.35366 2.99204 7.05791L3.61118 6.43975L3.6893 6.37529ZM8.91391 5.37822C9.109 5.18318 9.42565 5.18352 9.62094 5.37822C9.81619 5.57347 9.81616 5.88999 9.62094 6.08525L6.08579 9.62041C5.89053 9.81567 5.57402 9.81567 5.37876 9.62041C5.18404 9.4251 5.18368 9.10846 5.37876 8.91338L8.91391 5.37822ZM8.1395 2.05889C9.1042 1.50111 10.2992 1.50903 11.2274 2.11846L11.4168 2.25811C11.6081 2.41402 11.8142 2.62226 12.0965 2.90459C12.4729 3.28097 12.7166 3.52133 12.8817 3.77275L12.9959 3.96123C13.4902 4.85869 13.4619 5.96014 12.9413 6.86064L12.8221 7.0501C12.7365 7.17616 12.6315 7.3007 12.4989 7.44268L12.0077 7.94268L11.3885 8.56084C11.1932 8.75595 10.8767 8.75605 10.6815 8.56084C10.4866 8.3656 10.4865 8.04899 10.6815 7.85381L11.3006 7.23564L11.7684 6.75908C11.8753 6.64519 11.9426 6.56569 11.995 6.48857L12.076 6.35967C12.4289 5.74954 12.4376 5.02132 12.119 4.44268L12.0457 4.32158C11.951 4.17733 11.8004 4.02345 11.3885 3.61162C11.0799 3.30299 10.9163 3.14093 10.7928 3.03936L10.6786 2.95439C10.083 2.56329 9.29401 2.54612 8.64048 2.92412L8.51157 3.00518C8.43446 3.05757 8.35494 3.12484 8.24106 3.23174L7.76548 3.69951L7.14633 4.31865C6.95112 4.5137 6.63453 4.51368 6.4393 4.31865C6.24411 4.12344 6.2442 3.80689 6.4393 3.61162L7.05747 2.99248L7.55747 2.50225C7.69965 2.36939 7.82384 2.26376 7.95005 2.17803L8.1395 2.05889Z",
4850 fill: "currentColor",
4851 })
4852 }
4853
4854 const WIDTH: Option<&'static str> = Some("15");
4855 const HEIGHT: Option<&'static str> = Some("15");
4856 const FILL: Option<&'static str> = Some("none");
4857 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4858
4859}
4860
4861#[derive(Default, Copy, Clone, PartialEq, Eq)]
4862pub struct LinkBreak1;
4863
4864impl IconShape for LinkBreak1 {
4865 fn child_elements(&self) -> Element {
4866 rsx!(path {
4867 d: "M12.6462 1.64637C12.8414 1.45116 13.1579 1.45126 13.3532 1.64637C13.5485 1.84163 13.5485 2.15814 13.3532 2.3534L2.35322 13.3534C2.15795 13.5485 1.8414 13.5486 1.64619 13.3534C1.45113 13.1582 1.45113 12.8416 1.64619 12.6464L12.6462 1.64637ZM12.4196 4.34657C13.1898 4.74705 13.7613 5.46253 13.9411 6.32996L13.9763 6.56239C14.0013 6.80794 13.9997 7.1004 13.9997 7.49989C13.9997 7.89937 14.0013 8.19183 13.9763 8.43739L13.9411 8.66981C13.7157 9.75707 12.8761 10.6077 11.7995 10.8954L11.5808 10.9452C11.2812 11.0023 10.9321 10.9999 10.3747 10.9999H9.49971C9.22359 10.9999 8.99971 10.776 8.99971 10.4999C8.99973 10.2238 9.2236 9.99991 9.49971 9.99989H10.3747C10.9781 9.99989 11.21 9.9977 11.3933 9.96278L11.5417 9.9286C12.2712 9.73382 12.817 9.16446 12.9616 8.46668L12.9831 8.32606C12.9986 8.16692 12.9997 7.93656 12.9997 7.49989C12.9997 7.06321 12.9986 6.83285 12.9831 6.67371L12.9616 6.53309C12.8249 5.87352 12.3298 5.3285 11.6599 5.10633L12.4196 4.34657ZM5.49971 3.99989C5.77584 3.99989 5.99969 4.22376 5.99971 4.49989C5.99971 4.77603 5.77585 4.99989 5.49971 4.99989H4.62471C4.17195 4.99989 3.92833 5.0011 3.75752 5.01649L3.60615 5.037C2.85325 5.18078 2.26914 5.71587 2.07197 6.39539L2.03779 6.53309C2.00278 6.70209 1.99971 6.91741 1.99971 7.49989C1.99971 8.08233 2.00278 8.29768 2.03779 8.46668L2.07197 8.60438C2.24501 9.20077 2.71593 9.68645 3.3376 9.89344L2.57881 10.6522C1.87335 10.2851 1.33427 9.6541 1.11104 8.88368L1.0583 8.66981C0.997255 8.37515 0.999709 8.03254 0.999709 7.49989C0.999708 6.96723 0.997248 6.62463 1.0583 6.32996L1.11104 6.1161C1.41654 5.06176 2.31209 4.26589 3.41865 4.05457L3.65498 4.02235C3.90567 3.99886 4.20654 3.99989 4.62471 3.99989H5.49971Z",
4868 fill: "currentColor",
4869 })
4870 }
4871
4872 const WIDTH: Option<&'static str> = Some("15");
4873 const HEIGHT: Option<&'static str> = Some("15");
4874 const FILL: Option<&'static str> = Some("none");
4875 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4876
4877}
4878
4879#[derive(Default, Copy, Clone, PartialEq, Eq)]
4880pub struct LinkBreak2;
4881
4882impl IconShape for LinkBreak2 {
4883 fn child_elements(&self) -> Element {
4884 rsx!(path {
4885 d: "M10.5001 11.9998C10.7762 11.9998 11.0001 12.2236 11.0001 12.4997V14.4997C11.0001 14.7758 10.7762 14.9997 10.5001 14.9997C10.224 14.9997 10.0001 14.7758 10.0001 14.4997V12.4997C10.0001 12.2236 10.224 11.9998 10.5001 11.9998ZM12.1465 12.1462C12.3173 11.9757 12.5805 11.954 12.7745 12.0818L12.8536 12.1462L14.3535 13.6462L14.417 13.7243C14.5454 13.9184 14.5243 14.1823 14.3535 14.3532C14.1827 14.524 13.9187 14.5457 13.7246 14.4177L13.6465 14.3532L12.1465 12.8533L12.0821 12.7751C11.9539 12.5811 11.9757 12.3171 12.1465 12.1462ZM3.61058 6.43932C3.80581 6.24409 4.12234 6.24415 4.3176 6.43932C4.51286 6.63458 4.51286 6.95108 4.3176 7.14634L3.69945 7.76547C3.27281 8.1921 3.11 8.35729 3.00513 8.51155C2.54575 9.18777 2.53636 10.0432 2.95337 10.6785C3.04811 10.8228 3.1987 10.9775 3.61058 11.3894C4.02196 11.8008 4.1764 11.9509 4.32053 12.0457C4.9558 12.4628 5.81117 12.4542 6.48748 11.9949C6.64184 11.89 6.80754 11.7275 7.23453 11.3006L7.85366 10.6814C8.04894 10.4866 8.36557 10.4864 8.56068 10.6814C8.75594 10.8767 8.75594 11.1942 8.56068 11.3894L7.94155 12.0076C7.92705 12.0221 7.91269 12.0364 7.89858 12.0505C7.52917 12.4201 7.29298 12.6569 7.04997 12.822C6.05601 13.4972 4.76174 13.5318 3.77171 12.8816C3.53036 12.723 3.29965 12.4917 2.94849 12.1404C2.93389 12.1258 2.91859 12.1115 2.90357 12.0964C2.88847 12.0813 2.87331 12.0662 2.85865 12.0515C2.50728 11.7003 2.276 11.4687 2.11745 11.2273C1.46757 10.2373 1.50288 8.94384 2.178 7.95003C2.34313 7.70699 2.5799 7.47087 2.94946 7.10142C2.96357 7.08731 2.97793 7.07295 2.99243 7.05845L3.61058 6.43932ZM14.5 9.9998C14.7761 9.9998 15 10.2236 15 10.4998C15 10.7759 14.7761 10.9998 14.5 10.9998H12.5001C12.2239 10.9997 12.0001 10.7759 12.0001 10.4998C12.0001 10.2237 12.2239 9.99982 12.5001 9.9998H14.5ZM7.94936 2.17769C8.94332 1.50247 10.2376 1.46795 11.2276 2.11812C11.469 2.27667 11.6997 2.50802 12.0508 2.85932C12.0655 2.87399 12.0807 2.88914 12.0958 2.90424C12.1108 2.91926 12.1261 2.93358 12.1407 2.94818C12.4921 3.29947 12.7233 3.53093 12.8819 3.77238C13.5319 4.76236 13.4965 6.0558 12.8213 7.04966C12.6562 7.29276 12.4195 7.52972 12.0499 7.89925L11.3887 8.56037C11.1935 8.75563 10.877 8.75563 10.6817 8.56037C10.4865 8.36511 10.4865 8.0486 10.6817 7.85336L11.2999 7.2352C11.7267 6.80841 11.8893 6.64245 11.9942 6.48815C12.4536 5.81186 12.4631 4.95651 12.046 4.3212C11.9512 4.17696 11.8005 4.023 11.3887 3.61125C10.9771 3.19962 10.823 3.04879 10.6788 2.95404C10.0436 2.53687 9.18814 2.54558 8.51185 3.00482C8.3575 3.10968 8.19172 3.27222 7.7648 3.69914L7.14567 4.31827C6.95038 4.5132 6.6338 4.51342 6.43865 4.31827C6.24359 4.12312 6.24375 3.80651 6.43865 3.61125L7.10075 2.94916C7.47014 2.57965 7.70633 2.34281 7.94936 2.17769ZM2.50025 3.99992C2.77639 3.99992 3.00024 4.22377 3.00024 4.49991C3.00023 4.77603 2.77638 4.9999 2.50025 4.9999H0.500295C0.224189 4.99987 0.00031831 4.77602 0.00030517 4.49991C0.00030517 4.22379 0.224181 3.99994 0.500295 3.99992H2.50025ZM4.50021 0C4.77635 0 5.0002 0.223853 5.0002 0.49999V2.49995C5.00019 2.77607 4.77634 2.99994 4.50021 2.99994C4.22411 2.99991 4.00024 2.77606 4.00022 2.49995V0.49999C4.00022 0.223869 4.2241 2.62845e-05 4.50021 0ZM0.646776 0.646471C0.817489 0.475912 1.08073 0.454279 1.27469 0.582019L1.35379 0.646471L2.85376 2.14644L2.91724 2.22456C3.04561 2.41861 3.02458 2.68249 2.85376 2.85346C2.68296 3.02423 2.41891 3.04593 2.22487 2.91791L2.14675 2.85346L0.646776 1.35349L0.582325 1.27536C0.454098 1.08129 0.47592 0.817362 0.646776 0.646471Z",
4886 fill: "currentColor",
4887 })
4888 }
4889
4890 const WIDTH: Option<&'static str> = Some("15");
4891 const HEIGHT: Option<&'static str> = Some("15");
4892 const FILL: Option<&'static str> = Some("none");
4893 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4894
4895}
4896
4897#[derive(Default, Copy, Clone, PartialEq, Eq)]
4898pub struct LinkNone1;
4899
4900impl IconShape for LinkNone1 {
4901 fn child_elements(&self) -> Element {
4902 rsx!(path {
4903 d: "M5.49995 3.99989C5.77609 3.99989 5.99995 4.22376 5.99995 4.49989C5.99995 4.77604 5.77609 4.99989 5.49995 4.99989H4.62495C4.17218 4.99989 3.92858 5.00111 3.75777 5.01649L3.6064 5.037C2.85348 5.18078 2.26938 5.71587 2.07222 6.3954L2.03804 6.5331C2.00302 6.7021 1.99995 6.91741 1.99995 7.49989C1.99995 8.08237 2.00302 8.29769 2.03804 8.46669L2.07222 8.60439C2.26938 9.28392 2.85348 9.819 3.6064 9.96278L3.75777 9.98329C3.92858 9.99868 4.17218 9.99989 4.62495 9.99989H5.49995C5.77609 9.99989 5.99995 10.2238 5.99995 10.4999C5.99995 10.776 5.77609 10.9999 5.49995 10.9999H4.62495C4.20677 10.9999 3.90592 11.0009 3.65523 10.9774L3.4189 10.9452C2.31232 10.7339 1.41679 9.93803 1.11128 8.88368L1.05855 8.66982C0.997494 8.37515 0.999953 8.03256 0.999953 7.49989C0.999953 6.96722 0.997491 6.62464 1.05855 6.32997L1.11128 6.1161C1.41679 5.06176 2.31232 4.26589 3.4189 4.05458L3.65523 4.02235C3.90592 3.99886 4.20677 3.99989 4.62495 3.99989H5.49995ZM10.375 3.99989C10.9324 3.99989 11.2814 3.99745 11.581 4.05458L11.7998 4.10439C12.8764 4.39206 13.716 5.24272 13.9414 6.32997L13.9765 6.56239C14.0015 6.80795 14 7.1004 14 7.49989C14 7.89939 14.0015 8.19184 13.9765 8.43739L13.9414 8.66982C13.716 9.75708 12.8764 10.6077 11.7998 10.8954L11.581 10.9452C11.2814 11.0023 10.9324 10.9999 10.375 10.9999H9.49995C9.22382 10.9999 8.99995 10.776 8.99995 10.4999C8.99996 10.2238 9.22382 9.9999 9.49995 9.99989H10.375C10.9784 9.99989 11.2103 9.99771 11.3935 9.96278L11.5419 9.9286C12.2715 9.73383 12.8172 9.16447 12.9619 8.46669L12.9834 8.32607C12.9988 8.16692 13 7.93658 13 7.49989C13 7.0632 12.9988 6.83286 12.9834 6.67372L12.9619 6.5331C12.8172 5.83533 12.2715 5.26596 11.5419 5.07118L11.3935 5.037C11.2103 5.00208 10.9784 4.99989 10.375 4.99989H9.49995C9.22382 4.99988 8.99995 4.77603 8.99995 4.49989C8.99996 4.22376 9.22382 3.9999 9.49995 3.99989H10.375Z",
4904 fill: "currentColor",
4905 })
4906 }
4907
4908 const WIDTH: Option<&'static str> = Some("15");
4909 const HEIGHT: Option<&'static str> = Some("15");
4910 const FILL: Option<&'static str> = Some("none");
4911 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4912
4913}
4914
4915#[derive(Default, Copy, Clone, PartialEq, Eq)]
4916pub struct LinkNone2;
4917
4918impl IconShape for LinkNone2 {
4919 fn child_elements(&self) -> Element {
4920 rsx!(path {
4921 d: "M3.68931 6.3753C3.88336 6.2473 4.14741 6.26897 4.31821 6.43975C4.51324 6.63498 4.51326 6.95157 4.31821 7.14678L3.69907 7.76592C3.37876 8.08624 3.20737 8.25925 3.09751 8.39092L3.00474 8.51202C2.54529 9.18834 2.53677 10.0437 2.95396 10.679L3.03892 10.7933C3.14049 10.9167 3.30255 11.0803 3.61118 11.389C4.02302 11.8008 4.17689 11.9515 4.32114 12.0462L4.44224 12.1194C5.06223 12.4608 5.85392 12.4263 6.48813 11.9954L6.60923 11.9026C6.74094 11.7928 6.91471 11.6216 7.23521 11.3011L7.85337 10.6819C8.04855 10.4869 8.36517 10.487 8.5604 10.6819C8.75561 10.8772 8.75551 11.1937 8.5604 11.389L7.94224 12.0081C7.64647 12.3039 7.434 12.5174 7.24009 12.678L7.04966 12.8226C6.11778 13.4555 4.9223 13.5259 3.96079 12.9964L3.77231 12.8821C3.52089 12.717 3.28054 12.4734 2.90415 12.097C2.62182 11.8146 2.41358 11.6085 2.25767 11.4173L2.11802 11.2278C1.468 10.2379 1.50252 8.94438 2.17759 7.95049L2.32212 7.76006C2.48279 7.56615 2.69628 7.35368 2.99204 7.05792L3.61118 6.43975L3.68931 6.3753ZM8.1395 2.05889C9.1042 1.5011 10.2992 1.50904 11.2274 2.11846L11.4168 2.25811C11.6081 2.41402 11.8142 2.62226 12.0965 2.9046C12.4729 3.28099 12.7166 3.52133 12.8817 3.77276L12.9959 3.96124C13.4902 4.85871 13.4619 5.96014 12.9413 6.86065L12.8221 7.0501C12.7365 7.17618 12.6315 7.30069 12.4989 7.44268L12.0077 7.94268L11.3885 8.56085C11.1933 8.75596 10.8767 8.75606 10.6815 8.56085C10.4866 8.36561 10.4865 8.04899 10.6815 7.85381L11.3006 7.23565L11.7684 6.75909C11.8753 6.64519 11.9426 6.5657 11.995 6.48858L12.076 6.35967C12.4289 5.74954 12.4376 5.02133 12.119 4.44268L12.0458 4.32159C11.951 4.17734 11.8004 4.02347 11.3885 3.61163C11.0799 3.30299 10.9163 3.14094 10.7928 3.03936L10.6786 2.9544C10.083 2.5633 9.29402 2.54612 8.64048 2.92413L8.51157 3.00518C8.43446 3.05758 8.35496 3.12483 8.24106 3.23174L7.76548 3.69952L7.14634 4.31866C6.95113 4.51371 6.63453 4.51368 6.43931 4.31866C6.24411 4.12345 6.2442 3.8069 6.43931 3.61163L7.05747 2.99249L7.55747 2.50225C7.69966 2.36938 7.82383 2.26377 7.95005 2.17803L8.1395 2.05889Z",
4922 fill: "currentColor",
4923 })
4924 }
4925
4926 const WIDTH: Option<&'static str> = Some("15");
4927 const HEIGHT: Option<&'static str> = Some("15");
4928 const FILL: Option<&'static str> = Some("none");
4929 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4930
4931}
4932
4933#[derive(Default, Copy, Clone, PartialEq, Eq)]
4934pub struct LinkedinLogo;
4935
4936impl IconShape for LinkedinLogo {
4937 fn child_elements(&self) -> Element {
4938 rsx!(path {
4939 d: "M13 1C13.5523 1 14 1.44772 14 2V13C14 13.5523 13.5523 14 13 14H2C1.44772 14 1 13.5523 1 13V2C1 1.44772 1.44772 1 2 1H13ZM9.6748 5.85059C9.29545 5.83189 8.9175 5.91127 8.5791 6.08105C8.32209 6.21005 8.05222 6.50526 7.84473 7.01855H7.79199V6H6V12.0049H7.90625V8.81152C7.8787 8.48445 7.98312 8.06112 8.19727 7.80957C8.41141 7.5581 8.71797 7.49828 8.9502 7.46777H9.02246C9.62862 7.46777 10.0781 7.84339 10.0781 8.78906V12.0049H11.9844L12 8.35742C12 6.55255 10.8336 5.85071 9.6748 5.85059ZM3.0498 12H4.9502V6H3.0498V12ZM4 2.92969C3.40633 2.92969 2.92487 3.41123 2.9248 4.00488C2.9248 4.59859 3.4063 5.08008 4 5.08008C4.59371 5.08008 5.0752 4.59859 5.0752 4.00488C5.07513 3.41123 4.59367 2.92969 4 2.92969Z",
4940 fill: "currentColor",
4941 })
4942 }
4943
4944 const WIDTH: Option<&'static str> = Some("15");
4945 const HEIGHT: Option<&'static str> = Some("15");
4946 const FILL: Option<&'static str> = Some("none");
4947 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4948
4949}
4950
4951#[derive(Default, Copy, Clone, PartialEq, Eq)]
4952pub struct ListBullet;
4953
4954impl IconShape for ListBullet {
4955 fn child_elements(&self) -> Element {
4956 rsx!(path {
4957 d: "M1.5 9.75002C1.91421 9.75002 2.25 10.0858 2.25 10.5C2.25 10.9142 1.91421 11.25 1.5 11.25C1.08579 11.25 0.75 10.9142 0.75 10.5C0.75 10.0858 1.08579 9.75002 1.5 9.75002ZM13.6006 10.0098C13.8286 10.0563 14 10.2583 14 10.5C14 10.7417 13.8286 10.9437 13.6006 10.9902L13.5 11H4.5C4.22386 11 4 10.7762 4 10.5C4 10.2239 4.22386 10 4.5 10H13.5L13.6006 10.0098ZM1.5 6.75002C1.91421 6.75002 2.25 7.0858 2.25 7.50002C2.25 7.91423 1.91421 8.25002 1.5 8.25002C1.08579 8.25002 0.75 7.91423 0.75 7.50002C0.75 7.0858 1.08579 6.75002 1.5 6.75002ZM13.6006 7.00978C13.8286 7.05631 14 7.2583 14 7.50002C14 7.74173 13.8286 7.94372 13.6006 7.99025L13.5 8.00002H4.5C4.22386 8.00002 4 7.77616 4 7.50002C4 7.22387 4.22386 7.00002 4.5 7.00002H13.5L13.6006 7.00978ZM1.5 3.75002C1.91421 3.75002 2.25 4.0858 2.25 4.50002C2.25 4.91423 1.91421 5.25002 1.5 5.25002C1.08579 5.25002 0.75 4.91423 0.75 4.50002C0.75 4.0858 1.08579 3.75002 1.5 3.75002ZM13.6006 4.00978C13.8286 4.05631 14 4.2583 14 4.50002C14 4.74173 13.8286 4.94372 13.6006 4.99025L13.5 5.00002H4.5C4.22386 5.00002 4 4.77616 4 4.50002C4 4.22387 4.22386 4.00002 4.5 4.00002H13.5L13.6006 4.00978Z",
4958 fill: "currentColor",
4959 })
4960 }
4961
4962 const WIDTH: Option<&'static str> = Some("15");
4963 const HEIGHT: Option<&'static str> = Some("15");
4964 const FILL: Option<&'static str> = Some("none");
4965 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4966
4967}
4968
4969#[derive(Default, Copy, Clone, PartialEq, Eq)]
4970pub struct LockClosed;
4971
4972impl IconShape for LockClosed {
4973 fn child_elements(&self) -> Element {
4974 rsx!(path {
4975 d: "M7.50098 0.97831C8.5754 0.97831 9.46932 1.32269 10.0908 1.99198C10.7073 2.65592 11 3.57934 11 4.63358V5.99979H12C12.5522 5.99979 12.9999 6.4476 13 6.99979V12.9998C13 13.5521 12.5523 13.9998 12 13.9998H3C2.44772 13.9998 2 13.5521 2 12.9998V6.99979C2.00011 6.4476 2.44778 5.99979 3 5.99979H4V4.63554C4.00009 3.58126 4.29322 2.65732 4.91016 1.99296C5.53211 1.32327 6.42651 0.978401 7.50098 0.97831ZM3 12.9998H12V6.99979H3V12.9998ZM7.50098 1.97831C6.64571 1.9784 6.0396 2.24726 5.64355 2.67362C5.24259 3.10537 5.00009 3.76007 5 4.63554V5.99979H10V4.63358C10 3.75741 9.75854 3.10258 9.3584 2.67167C8.96322 2.24619 8.35692 1.97831 7.50098 1.97831Z",
4976 fill: "currentColor",
4977 })
4978 }
4979
4980 const WIDTH: Option<&'static str> = Some("15");
4981 const HEIGHT: Option<&'static str> = Some("15");
4982 const FILL: Option<&'static str> = Some("none");
4983 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
4984
4985}
4986
4987#[derive(Default, Copy, Clone, PartialEq, Eq)]
4988pub struct LockOpen1;
4989
4990impl IconShape for LockOpen1 {
4991 fn child_elements(&self) -> Element {
4992 rsx!(path {
4993 d: "M7.49902 0C8.57082 8.94091e-05 9.46493 0.337839 10.0879 1.00195C10.7065 1.66147 10.9999 2.58119 11 3.63574V6H12C12.5523 6 13 6.44772 13 7V13C13 13.5523 12.5523 14 12 14H3C2.44772 14 2 13.5523 2 13V7C2 6.44772 2.44772 6 3 6H10V3.63574C9.99995 2.76039 9.75776 2.11236 9.3584 1.68652C8.96337 1.26538 8.35703 1.00009 7.49902 1C6.61111 1 5.99677 1.26857 5.60352 1.71484L5.52734 1.80664C5.1967 2.23329 5.00007 2.84315 5 3.63281H4C4.00007 2.68216 4.2373 1.83821 4.7373 1.19336L4.8584 1.04785C5.48245 0.342377 6.39938 0 7.49902 0ZM3 13H12V7H3V13Z",
4994 fill: "currentColor",
4995 })
4996 }
4997
4998 const WIDTH: Option<&'static str> = Some("15");
4999 const HEIGHT: Option<&'static str> = Some("15");
5000 const FILL: Option<&'static str> = Some("none");
5001 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5002
5003}
5004
5005#[derive(Default, Copy, Clone, PartialEq, Eq)]
5006pub struct LockOpen2;
5007
5008impl IconShape for LockOpen2 {
5009 fn child_elements(&self) -> Element {
5010 rsx!(path {
5011 d: "M11.501 7.62939e-06C12.6739 7.62939e-06 13.6392 0.389221 14.2627 1.19337L14.3535 1.31641C14.7916 1.94395 14.9999 2.74153 15 3.63282H14C13.9999 2.94151 13.8493 2.38801 13.5898 1.97462L13.4727 1.80665C13.0843 1.3058 12.4481 1.00001 11.501 1.00001C10.643 1.0001 10.0366 1.26538 9.6416 1.68653C9.24224 2.11237 9.00005 2.7604 9 3.63575V6.00001H10C10.5523 6.00001 11 6.44772 11 7.00001V13C11 13.5523 10.5523 14 10 14H1C0.447715 14 1.20798e-08 13.5523 0 13V7.00001C1.12745e-06 6.44772 0.447716 6.00001 1 6.00001H8V3.63575C8.00005 2.5812 8.29349 1.66147 8.91211 1.00196C9.53507 0.337846 10.4292 9.70384e-05 11.501 7.62939e-06ZM1 13H10V7.00001H1V13Z",
5012 fill: "currentColor",
5013 })
5014 }
5015
5016 const WIDTH: Option<&'static str> = Some("15");
5017 const HEIGHT: Option<&'static str> = Some("15");
5018 const FILL: Option<&'static str> = Some("none");
5019 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5020
5021}
5022
5023#[derive(Default, Copy, Clone, PartialEq, Eq)]
5024pub struct Loop;
5025
5026impl IconShape for Loop {
5027 fn child_elements(&self) -> Element {
5028 rsx!(path {
5029 d: "M1.49996 7.00021C1.7761 7.00021 1.99996 7.22406 1.99996 7.50021C1.99996 9.4332 3.56697 11.0002 5.49996 11.0002H12.7929L11.6464 9.85372L11.582 9.7756C11.4538 9.58152 11.4756 9.31756 11.6464 9.14669C11.8173 8.97583 12.0813 8.95407 12.2754 9.08224L12.3535 9.14669L14.3535 11.1467C14.5487 11.342 14.5487 11.6585 14.3535 11.8537L12.3535 13.8537C12.1582 14.049 11.8417 14.049 11.6464 13.8537C11.4512 13.6585 11.4512 13.342 11.6464 13.1467L12.7929 12.0002H5.49996C3.01468 12.0002 0.999962 9.98549 0.999962 7.50021C0.999962 7.22406 1.22382 7.00021 1.49996 7.00021ZM2.72457 1.08224C2.91865 0.954074 3.18261 0.975828 3.35348 1.14669C3.52434 1.31756 3.5461 1.58152 3.41793 1.7756L3.35348 1.85372L2.20699 3.00021H9.49996C11.9852 3.00021 14 5.01493 14 7.50021C14 7.77635 13.7761 8.00021 13.5 8.00021C13.2238 8.00021 13 7.77635 13 7.50021C13 5.56721 11.433 4.00021 9.49996 4.00021H2.20699L3.35348 5.14669L3.41793 5.22482C3.5461 5.4189 3.52434 5.68286 3.35348 5.85372C3.18261 6.02459 2.91865 6.04634 2.72457 5.91818L2.64645 5.85372L0.646447 3.85372C0.451184 3.65846 0.451184 3.34195 0.646447 3.14669L2.64645 1.14669L2.72457 1.08224Z",
5030 fill: "currentColor",
5031 })
5032 }
5033
5034 const WIDTH: Option<&'static str> = Some("15");
5035 const HEIGHT: Option<&'static str> = Some("15");
5036 const FILL: Option<&'static str> = Some("none");
5037 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5038
5039}
5040
5041#[derive(Default, Copy, Clone, PartialEq, Eq)]
5042pub struct MagicWand;
5043
5044impl IconShape for MagicWand {
5045 fn child_elements(&self) -> Element {
5046 rsx!(path {
5047 d: "M9.22447 5.0824C9.41855 4.95423 9.68251 4.97599 9.85338 5.14685C10.0241 5.31772 10.046 5.58175 9.91783 5.77576L9.85338 5.85388L2.85338 12.8539C2.65817 13.0489 2.34156 13.0489 2.14635 12.8539C1.95115 12.6587 1.95128 12.3421 2.14635 12.1469L9.14635 5.14685L9.22447 5.0824ZM13.4999 5.09998C13.7208 5.09998 13.9003 5.27945 13.9003 5.50037V6.09998H14.4999L14.5809 6.10876C14.7629 6.14627 14.9003 6.30726 14.9003 6.50037C14.9001 6.69332 14.7628 6.85451 14.5809 6.89197L14.4999 6.90076H13.9003V7.50037C13.9 7.7211 13.7206 7.90076 13.4999 7.90076C13.2791 7.90075 13.0997 7.7211 13.0995 7.50037V6.90076H12.4999C12.2791 6.90075 12.0997 6.7211 12.0995 6.50037C12.0995 6.27946 12.279 6.09998 12.4999 6.09998H13.0995V5.50037C13.0995 5.27946 13.279 5.09998 13.4999 5.09998ZM11.2245 3.0824C11.4186 2.95424 11.6825 2.97599 11.8534 3.14685C12.0241 3.31772 12.0459 3.58175 11.9178 3.77576L11.8534 3.85388L10.8534 4.85388C10.6582 5.04888 10.3416 5.04889 10.1463 4.85388C9.95116 4.65869 9.95129 4.34213 10.1463 4.14685L11.1463 3.14685L11.2245 3.0824ZM8.49986 0.0999756C8.72078 0.0999756 8.90026 0.279452 8.90026 0.500366V1.09998H9.49986L9.58092 1.10876C9.76292 1.14627 9.90026 1.30726 9.90026 1.50037C9.90007 1.69332 9.76283 1.85451 9.58092 1.89197L9.49986 1.90076H8.90026V2.50037C8.90004 2.7211 8.72065 2.90076 8.49986 2.90076C8.27909 2.90075 8.09969 2.7211 8.09947 2.50037V1.90076H7.49986C7.27909 1.90075 7.09969 1.7211 7.09947 1.50037C7.09947 1.27946 7.27896 1.09998 7.49986 1.09998H8.09947V0.500366C8.09947 0.279457 8.27896 0.0999839 8.49986 0.0999756ZM13.4999 0.0999756C13.7208 0.0999756 13.9003 0.279452 13.9003 0.500366V1.09998H14.4999L14.5809 1.10876C14.7629 1.14627 14.9003 1.30726 14.9003 1.50037C14.9001 1.69332 14.7628 1.85451 14.5809 1.89197L14.4999 1.90076H13.9003V2.50037C13.9 2.7211 13.7206 2.90076 13.4999 2.90076C13.2791 2.90075 13.0997 2.7211 13.0995 2.50037V1.90076H12.4999C12.2791 1.90075 12.0997 1.7211 12.0995 1.50037C12.0995 1.27946 12.279 1.09998 12.4999 1.09998H13.0995V0.500366C13.0995 0.279457 13.279 0.0999839 13.4999 0.0999756Z",
5048 fill: "currentColor",
5049 })
5050 }
5051
5052 const WIDTH: Option<&'static str> = Some("15");
5053 const HEIGHT: Option<&'static str> = Some("15");
5054 const FILL: Option<&'static str> = Some("none");
5055 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5056
5057}
5058
5059#[derive(Default, Copy, Clone, PartialEq, Eq)]
5060pub struct MagnifyingGlass;
5061
5062impl IconShape for MagnifyingGlass {
5063 fn child_elements(&self) -> Element {
5064 rsx!(path {
5065 d: "M6.5 2C8.98528 2 11 4.01472 11 6.5C11 7.56246 10.6304 8.5378 10.0146 9.30762L12.8535 12.1465L12.918 12.2246C13.0461 12.4187 13.0244 12.6827 12.8535 12.8535C12.6827 13.0244 12.4187 13.0461 12.2246 12.918L12.1465 12.8535L9.30762 10.0146C8.5378 10.6304 7.56246 11 6.5 11C4.01472 11 2 8.98528 2 6.5C2 4.01472 4.01472 2 6.5 2ZM6.5 3C4.567 3 3 4.567 3 6.5C3 8.433 4.567 10 6.5 10C8.433 10 10 8.433 10 6.5C10 4.567 8.433 3 6.5 3Z",
5066 fill: "currentColor",
5067 })
5068 }
5069
5070 const WIDTH: Option<&'static str> = Some("15");
5071 const HEIGHT: Option<&'static str> = Some("15");
5072 const FILL: Option<&'static str> = Some("none");
5073 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5074
5075}
5076
5077#[derive(Default, Copy, Clone, PartialEq, Eq)]
5078pub struct Margin;
5079
5080impl IconShape for Margin {
5081 fn child_elements(&self) -> Element {
5082 rsx!(path {
5083 d: "M1.49988 13.0001C1.77602 13.0001 1.99988 13.224 1.99988 13.5001C1.99987 13.7763 1.77602 14.0001 1.49988 14.0001C1.22374 14.0001 0.999881 13.7763 0.999878 13.5001C0.999878 13.224 1.22374 13.0001 1.49988 13.0001ZM4.49988 13.0001C4.77602 13.0001 4.99988 13.224 4.99988 13.5001C4.99987 13.7763 4.77602 14.0001 4.49988 14.0001C4.22374 14.0001 3.99988 13.7763 3.99988 13.5001C3.99988 13.224 4.22374 13.0001 4.49988 13.0001ZM7.49988 13.0001C7.77602 13.0001 7.99988 13.224 7.99988 13.5001C7.99988 13.7763 7.77602 14.0001 7.49988 14.0001C7.22374 14.0001 6.99988 13.7763 6.99988 13.5001C6.99988 13.224 7.22374 13.0001 7.49988 13.0001ZM10.4999 13.0001C10.776 13.0001 10.9999 13.224 10.9999 13.5001C10.9999 13.7763 10.776 14.0001 10.4999 14.0001C10.2237 14.0001 9.99988 13.7763 9.99988 13.5001C9.99988 13.224 10.2237 13.0001 10.4999 13.0001ZM13.4999 13.0001C13.776 13.0001 13.9999 13.224 13.9999 13.5001C13.9999 13.7763 13.776 14.0001 13.4999 14.0001C13.2237 14.0001 12.9999 13.7763 12.9999 13.5001C12.9999 13.224 13.2237 13.0001 13.4999 13.0001ZM1.49988 10.0001C1.77602 10.0001 1.99988 10.224 1.99988 10.5001C1.99987 10.7763 1.77602 11.0001 1.49988 11.0001C1.22374 11.0001 0.999881 10.7763 0.999878 10.5001C0.999878 10.224 1.22374 10.0001 1.49988 10.0001ZM9.99988 4.00012C10.5522 4.00013 10.9999 4.44784 10.9999 5.00012V10.0001C10.9999 10.5524 10.5522 11.0001 9.99988 11.0001H4.99988L4.89734 10.9952C4.39321 10.9439 3.99988 10.5178 3.99988 10.0001V5.00012C3.99988 4.44784 4.44759 4.00012 4.99988 4.00012H9.99988ZM13.4999 10.0001C13.776 10.0001 13.9999 10.224 13.9999 10.5001C13.9999 10.7763 13.776 11.0001 13.4999 11.0001C13.2237 11.0001 12.9999 10.7763 12.9999 10.5001C12.9999 10.224 13.2237 10.0001 13.4999 10.0001ZM4.99988 10.0001H9.99988V5.00012H4.99988V10.0001ZM1.49988 7.00012C1.77602 7.00012 1.99988 7.22398 1.99988 7.50012C1.99987 7.77626 1.77602 8.00012 1.49988 8.00012C1.22374 8.00012 0.999881 7.77626 0.999878 7.50012C0.999878 7.22398 1.22374 7.00012 1.49988 7.00012ZM13.4999 7.00012C13.776 7.00012 13.9999 7.22398 13.9999 7.50012C13.9999 7.77626 13.776 8.00012 13.4999 8.00012C13.2237 8.00012 12.9999 7.77626 12.9999 7.50012C12.9999 7.22398 13.2237 7.00012 13.4999 7.00012ZM1.49988 4.00012C1.77602 4.00013 1.99988 4.22398 1.99988 4.50012C1.99987 4.77626 1.77602 5.00012 1.49988 5.00012C1.22374 5.00012 0.999881 4.77626 0.999878 4.50012C0.999878 4.22398 1.22374 4.00012 1.49988 4.00012ZM13.4999 4.00012C13.776 4.00013 13.9999 4.22398 13.9999 4.50012C13.9999 4.77626 13.776 5.00012 13.4999 5.00012C13.2237 5.00012 12.9999 4.77626 12.9999 4.50012C12.9999 4.22398 13.2237 4.00012 13.4999 4.00012ZM1.49988 1.00012C1.77602 1.00013 1.99988 1.22398 1.99988 1.50012C1.99987 1.77626 1.77602 2.00012 1.49988 2.00012C1.22374 2.00012 0.999881 1.77626 0.999878 1.50012C0.999878 1.22398 1.22374 1.00012 1.49988 1.00012ZM4.49988 1.00012C4.77602 1.00013 4.99988 1.22398 4.99988 1.50012C4.99987 1.77626 4.77602 2.00012 4.49988 2.00012C4.22374 2.00012 3.99988 1.77626 3.99988 1.50012C3.99988 1.22398 4.22374 1.00012 4.49988 1.00012ZM7.49988 1.00012C7.77602 1.00013 7.99988 1.22398 7.99988 1.50012C7.99988 1.77626 7.77602 2.00012 7.49988 2.00012C7.22374 2.00012 6.99988 1.77626 6.99988 1.50012C6.99988 1.22398 7.22374 1.00012 7.49988 1.00012ZM10.4999 1.00012C10.776 1.00013 10.9999 1.22398 10.9999 1.50012C10.9999 1.77626 10.776 2.00012 10.4999 2.00012C10.2237 2.00012 9.99988 1.77626 9.99988 1.50012C9.99988 1.22398 10.2237 1.00012 10.4999 1.00012ZM13.4999 1.00012C13.776 1.00013 13.9999 1.22398 13.9999 1.50012C13.9999 1.77626 13.776 2.00012 13.4999 2.00012C13.2237 2.00012 12.9999 1.77626 12.9999 1.50012C12.9999 1.22398 13.2237 1.00012 13.4999 1.00012Z",
5084 fill: "currentColor",
5085 })
5086 }
5087
5088 const WIDTH: Option<&'static str> = Some("15");
5089 const HEIGHT: Option<&'static str> = Some("15");
5090 const FILL: Option<&'static str> = Some("none");
5091 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5092
5093}
5094
5095#[derive(Default, Copy, Clone, PartialEq, Eq)]
5096pub struct MaskOff;
5097
5098impl IconShape for MaskOff {
5099 fn child_elements(&self) -> Element {
5100 rsx!(path {
5101 d: "M14.1025 1.00488C14.6067 1.05621 15 1.48232 15 2V13L14.9951 13.1025C14.9472 13.573 14.573 13.9472 14.1025 13.9951L14 14H1L0.897461 13.9951C0.427034 13.9472 0.0527828 13.573 0.00488281 13.1025L0 13V2C0 1.48232 0.393331 1.05621 0.897461 1.00488L1 1H14L14.1025 1.00488ZM1 13H14V2H1V13ZM7.5 3.875C9.50203 3.875 11.125 5.49797 11.125 7.5C11.125 9.50203 9.50203 11.125 7.5 11.125C5.49797 11.125 3.875 9.50203 3.875 7.5C3.875 5.49797 5.49797 3.875 7.5 3.875ZM7.5 4.875C6.05025 4.875 4.875 6.05025 4.875 7.5C4.875 8.94975 6.05025 10.125 7.5 10.125C8.94975 10.125 10.125 8.94975 10.125 7.5C10.125 6.05025 8.94975 4.875 7.5 4.875Z",
5102 fill: "currentColor",
5103 })
5104 }
5105
5106 const WIDTH: Option<&'static str> = Some("15");
5107 const HEIGHT: Option<&'static str> = Some("15");
5108 const FILL: Option<&'static str> = Some("none");
5109 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5110
5111}
5112
5113#[derive(Default, Copy, Clone, PartialEq, Eq)]
5114pub struct MaskOn;
5115
5116impl IconShape for MaskOn {
5117 fn child_elements(&self) -> Element {
5118 rsx!(path {
5119 d: "M14 1C14.5523 1 15 1.44772 15 2V13C15 13.5523 14.5523 14 14 14H1C0.447715 14 2.01331e-08 13.5523 0 13V2C0 1.44772 0.447715 1 1 1H14ZM7.5 4.375C5.77411 4.375 4.375 5.77411 4.375 7.5C4.375 9.22589 5.77411 10.625 7.5 10.625C9.22589 10.625 10.625 9.22589 10.625 7.5C10.625 5.77411 9.22589 4.375 7.5 4.375Z",
5120 fill: "currentColor",
5121 })
5122 }
5123
5124 const WIDTH: Option<&'static str> = Some("15");
5125 const HEIGHT: Option<&'static str> = Some("15");
5126 const FILL: Option<&'static str> = Some("none");
5127 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5128
5129}
5130
5131#[derive(Default, Copy, Clone, PartialEq, Eq)]
5132pub struct Minimize;
5133
5134impl IconShape for Minimize {
5135 fn child_elements(&self) -> Element {
5136 rsx!(path {
5137 d: "M6.50021 8.0502C6.61922 8.05031 6.73334 8.09799 6.8176 8.18204C6.90185 8.26641 6.95041 8.38115 6.95041 8.5004V12.5004C6.9502 12.7486 6.74841 12.9494 6.50021 12.9496C6.25178 12.9495 6.05002 12.7479 6.05002 12.4994V9.58536L2.3176 13.3178C2.14195 13.4933 1.85758 13.4942 1.68185 13.3188C1.50615 13.1431 1.50621 12.8578 1.68185 12.682L5.4133 8.95059L2.50021 8.94962C2.25182 8.94962 2.05121 8.74874 2.05099 8.5004C2.05099 8.25187 2.25169 8.0502 2.50021 8.0502H6.50021ZM12.6819 1.68204C12.8576 1.50651 13.1429 1.50637 13.3186 1.68204C13.4939 1.85767 13.4938 2.14211 13.3186 2.31778L9.58615 6.0502H12.5002C12.7486 6.05042 12.9504 6.252 12.9504 6.5004C12.9502 6.74861 12.7484 6.95038 12.5002 6.95059H8.50021L8.40939 6.94083C8.20459 6.8988 8.05021 6.71759 8.05002 6.5004V2.5004C8.05015 2.25199 8.25178 2.05022 8.50021 2.0502C8.74863 2.05032 8.9494 2.25196 8.94943 2.5004V5.41446L12.6819 1.68204Z",
5138 fill: "currentColor",
5139 })
5140 }
5141
5142 const WIDTH: Option<&'static str> = Some("15");
5143 const HEIGHT: Option<&'static str> = Some("15");
5144 const FILL: Option<&'static str> = Some("none");
5145 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5146
5147}
5148
5149#[derive(Default, Copy, Clone, PartialEq, Eq)]
5150pub struct Minus;
5151
5152impl IconShape for Minus {
5153 fn child_elements(&self) -> Element {
5154 rsx!(path {
5155 d: "M12.25 7C12.5261 7 12.75 7.22386 12.75 7.5C12.75 7.77614 12.5261 8 12.25 8H2.75C2.47386 8 2.25 7.77614 2.25 7.5C2.25 7.22386 2.47386 7 2.75 7H12.25Z",
5156 fill: "currentColor",
5157 })
5158 }
5159
5160 const WIDTH: Option<&'static str> = Some("15");
5161 const HEIGHT: Option<&'static str> = Some("15");
5162 const FILL: Option<&'static str> = Some("none");
5163 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5164
5165}
5166
5167#[derive(Default, Copy, Clone, PartialEq, Eq)]
5168pub struct MinusCircled;
5169
5170impl IconShape for MinusCircled {
5171 fn child_elements(&self) -> Element {
5172 rsx!(path {
5173 d: "M7.49915 0.876907C11.1566 0.876907 14.1218 3.84164 14.1222 7.49898C14.1222 11.1566 11.1568 14.122 7.49915 14.122C3.84181 14.1216 0.877075 11.1564 0.877075 7.49898C0.877487 3.8419 3.84206 0.877318 7.49915 0.876907ZM7.49915 1.82613C4.36673 1.82654 1.82671 4.36657 1.82629 7.49898C1.82629 10.6317 4.36648 13.1714 7.49915 13.1718C10.6321 13.1718 13.172 10.632 13.172 7.49898C13.1716 4.36631 10.6319 1.82613 7.49915 1.82613ZM10.5001 6.99995C10.7762 7 11.0001 7.22387 11.0001 7.49995C11.0001 7.77607 10.7762 7.9999 10.5001 7.99995H4.50012C4.22398 7.99995 4.00012 7.7761 4.00012 7.49995C4.00015 7.22384 4.224 6.99995 4.50012 6.99995H10.5001Z",
5174 fill: "currentColor",
5175 })
5176 }
5177
5178 const WIDTH: Option<&'static str> = Some("15");
5179 const HEIGHT: Option<&'static str> = Some("15");
5180 const FILL: Option<&'static str> = Some("none");
5181 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5182
5183}
5184
5185#[derive(Default, Copy, Clone, PartialEq, Eq)]
5186pub struct Mix;
5187
5188impl IconShape for Mix {
5189 fn child_elements(&self) -> Element {
5190 rsx!(path {
5191 d: "M1.59979 8.82434C1.59991 8.32473 2.10284 7.99678 2.54999 8.17004L2.63885 8.21204L6.57245 10.3878L6.65741 10.4425C7.02571 10.7193 7.02591 11.282 6.65741 11.5587L6.57245 11.6134L2.63885 13.7892C2.17257 14.0469 1.60035 13.7095 1.59979 13.1769V8.82434ZM13.0002 8.29993C13.3867 8.30002 13.7004 8.61358 13.7004 9.00012V13.0001C13.7003 13.3866 13.3867 13.7002 13.0002 13.7003H9.00018C8.61362 13.7003 8.30004 13.3867 8.29999 13.0001V9.00012C8.29999 8.61352 8.61358 8.29993 9.00018 8.29993H13.0002ZM2.50018 12.8361L5.81952 11.0001L2.50018 9.16321V12.8361ZM9.20038 12.7999H12.8V9.20032H9.20038V12.7999ZM4.00018 1.24915C5.51931 1.24925 6.75114 2.48097 6.75116 4.00012C6.75105 5.5192 5.51926 6.75099 4.00018 6.7511C2.48103 6.75108 1.24931 5.51925 1.24921 4.00012C1.24922 2.48091 2.48098 1.24916 4.00018 1.24915ZM12.8068 1.55676C12.9826 1.38103 13.2678 1.38103 13.4435 1.55676C13.6191 1.73251 13.6192 2.01781 13.4435 2.19348L11.6369 4.00012L13.4435 5.80676L13.5012 5.87708C13.6165 6.05174 13.5973 6.2897 13.4435 6.44348C13.2898 6.59725 13.0518 6.61646 12.8771 6.5011L12.8068 6.44348L11.0002 4.63684L9.19354 6.44348C9.01787 6.61913 8.73257 6.61902 8.55682 6.44348C8.38109 6.26775 8.38111 5.9825 8.55682 5.80676L10.3635 4.00012L8.55682 2.19348L8.49921 2.12317C8.38371 1.94849 8.403 1.7106 8.55682 1.55676C8.71066 1.40293 8.94854 1.38364 9.12323 1.49915L9.19354 1.55676L11.0002 3.3634L12.8068 1.55676ZM4.00018 2.14954C2.97803 2.14955 2.14961 2.97797 2.1496 4.00012C2.1497 5.0222 2.97809 5.85069 4.00018 5.85071C5.0222 5.8506 5.85066 5.02214 5.85077 4.00012C5.85075 2.97803 5.02226 2.14964 4.00018 2.14954Z",
5192 fill: "currentColor",
5193 })
5194 }
5195
5196 const WIDTH: Option<&'static str> = Some("15");
5197 const HEIGHT: Option<&'static str> = Some("15");
5198 const FILL: Option<&'static str> = Some("none");
5199 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5200
5201}
5202
5203#[derive(Default, Copy, Clone, PartialEq, Eq)]
5204pub struct MixerHorizontal;
5205
5206impl IconShape for MixerHorizontal {
5207 fn child_elements(&self) -> Element {
5208 rsx!(path {
5209 d: "M9.5 8C10.7108 8 11.72 8.8609 11.9502 10.0039C11.9666 10.0023 11.9831 10 12 10H13.5C13.7761 10 14 10.2239 14 10.5C14 10.7761 13.7761 11 13.5 11H12C11.9831 11 11.9667 10.9968 11.9502 10.9951C11.7204 12.1386 10.7112 13 9.5 13C8.28878 13 7.27856 12.1387 7.04883 10.9951C7.03268 10.9967 7.01656 11 7 11H1.5C1.22386 11 1 10.7761 1 10.5C1 10.2239 1.22386 10 1.5 10H7C7.01653 10 7.03271 10.0023 7.04883 10.0039C7.27892 8.8608 8.28911 8 9.5 8ZM9.5 9C8.67157 9 8 9.67157 8 10.5C8 11.3284 8.67157 12 9.5 12C10.3284 12 11 11.3284 11 10.5C11 9.67157 10.3284 9 9.5 9ZM5.5 2C6.71082 2 7.72003 2.8609 7.9502 4.00391C7.96662 4.00228 7.98314 4 8 4H13.5L13.6006 4.00977C13.8286 4.05629 14 4.25829 14 4.5C14 4.74171 13.8286 4.94371 13.6006 4.99023L13.5 5H8C7.98311 5 7.96665 4.99675 7.9502 4.99512C7.72039 6.13859 6.71115 7 5.5 7C4.28878 7 3.27856 6.13869 3.04883 4.99512C3.03268 4.99669 3.01656 5 3 5H1.5C1.22386 5 1 4.77614 1 4.5C1 4.22386 1.22386 4 1.5 4H3C3.01653 4 3.03271 4.00234 3.04883 4.00391C3.27892 2.8608 4.28911 2 5.5 2ZM5.5 3C4.67157 3 4 3.67157 4 4.5C4 5.32843 4.67157 6 5.5 6C6.32843 6 7 5.32843 7 4.5C7 3.67157 6.32843 3 5.5 3Z",
5210 fill: "currentColor",
5211 })
5212 }
5213
5214 const WIDTH: Option<&'static str> = Some("15");
5215 const HEIGHT: Option<&'static str> = Some("15");
5216 const FILL: Option<&'static str> = Some("none");
5217 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5218
5219}
5220
5221#[derive(Default, Copy, Clone, PartialEq, Eq)]
5222pub struct MixerVertical;
5223
5224impl IconShape for MixerVertical {
5225 fn child_elements(&self) -> Element {
5226 rsx!(path {
5227 d: "M4.5 1C4.74171 1 4.94371 1.17145 4.99023 1.39941L5 1.5V7C5 7.01656 4.99669 7.03268 4.99512 7.04883C6.13869 7.27856 7 8.28878 7 9.5C7 10.7112 6.13859 11.7204 4.99512 11.9502L5 12V13.5L4.99023 13.6006C4.94371 13.8286 4.74171 14 4.5 14C4.25829 14 4.05629 13.8286 4.00977 13.6006L4 13.5V12C4 11.9831 4.00228 11.9666 4.00391 11.9502C2.8609 11.72 2 10.7108 2 9.5C2 8.28911 2.8608 7.27892 4.00391 7.04883L4 7V1.5C4 1.22386 4.22386 1 4.5 1ZM10.5 1C10.7417 1 10.9437 1.17145 10.9902 1.39941L11 1.5V3L10.9951 3.04883C12.1387 3.27856 13 4.28878 13 5.5C13 6.71115 12.1386 7.72039 10.9951 7.9502L11 8V13.5C11 13.7761 10.7761 14 10.5 14C10.2583 14 10.0563 13.8286 10.0098 13.6006L10 13.5V8C10 7.98314 10.0023 7.96662 10.0039 7.9502C8.8609 7.72003 8 6.71082 8 5.5C8 4.28911 8.8608 3.27892 10.0039 3.04883L10 3V1.5C10 1.22386 10.2239 1 10.5 1ZM4.5 8C3.67157 8 3 8.67157 3 9.5C3 10.3284 3.67157 11 4.5 11C5.32843 11 6 10.3284 6 9.5C6 8.67157 5.32843 8 4.5 8ZM10.5 4C9.67157 4 9 4.67157 9 5.5C9 6.32843 9.67157 7 10.5 7C11.3284 7 12 6.32843 12 5.5C12 4.67157 11.3284 4 10.5 4Z",
5228 fill: "currentColor",
5229 })
5230 }
5231
5232 const WIDTH: Option<&'static str> = Some("15");
5233 const HEIGHT: Option<&'static str> = Some("15");
5234 const FILL: Option<&'static str> = Some("none");
5235 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5236
5237}
5238
5239#[derive(Default, Copy, Clone, PartialEq, Eq)]
5240pub struct Mobile;
5241
5242impl IconShape for Mobile {
5243 fn child_elements(&self) -> Element {
5244 rsx!(path {
5245 d: "M10.5 1C11.3284 1 12 1.67157 12 2.5V12.5C12 13.3284 11.3284 14 10.5 14H4.5C3.67157 14 3 13.3284 3 12.5V2.5C3 1.67157 3.67157 1 4.5 1H10.5ZM4.5 2C4.22386 2 4 2.22386 4 2.5V12.5C4 12.7761 4.22386 13 4.5 13H10.5C10.7761 13 11 12.7761 11 12.5V2.5C11 2.22386 10.7761 2 10.5 2H4.5ZM9.07031 11.6572C9.2299 11.6898 9.34961 11.8308 9.34961 12C9.34961 12.1692 9.2299 12.3102 9.07031 12.3428L9 12.3496H6C5.8067 12.3496 5.65039 12.1933 5.65039 12C5.65039 11.8067 5.8067 11.6504 6 11.6504H9L9.07031 11.6572Z",
5246 fill: "currentColor",
5247 })
5248 }
5249
5250 const WIDTH: Option<&'static str> = Some("15");
5251 const HEIGHT: Option<&'static str> = Some("15");
5252 const FILL: Option<&'static str> = Some("none");
5253 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5254
5255}
5256
5257#[derive(Default, Copy, Clone, PartialEq, Eq)]
5258pub struct ModulzLogo;
5259
5260impl IconShape for ModulzLogo {
5261 fn child_elements(&self) -> Element {
5262 rsx!(path {
5263 d: "M3.88867 11.833L1 14V9.66699L3.88867 11.833ZM14 14L11.1113 11.833L14 9.66699V14ZM3.88867 11.1113L1 8.94434L3.88867 6.77734V11.1113ZM14 8.94434L11.1113 11.1113V6.77734L14 8.94434ZM3.88867 6.05566L1 8.22266V3.88867L3.88867 6.05566ZM7.25879 8.22266L4.37012 6.05566L7.25879 3.88867V8.22266ZM10.6299 6.05566L7.74121 8.22266V3.88867L10.6299 6.05566ZM14 8.22266L11.1113 6.05566L14 3.88867V8.22266ZM3.88867 5.33301L1 3.16699L3.88867 1V5.33301ZM7.25879 3.16699L4.37012 5.33301V1L7.25879 3.16699ZM10.6299 5.33301L7.74121 3.16699L10.6299 1V5.33301ZM14 3.16699L11.1113 5.33301V1L14 3.16699Z",
5264 fill: "currentColor",
5265 })
5266 }
5267
5268 const WIDTH: Option<&'static str> = Some("15");
5269 const HEIGHT: Option<&'static str> = Some("15");
5270 const FILL: Option<&'static str> = Some("none");
5271 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5272
5273}
5274
5275#[derive(Default, Copy, Clone, PartialEq, Eq)]
5276pub struct Moon;
5277
5278impl IconShape for Moon {
5279 fn child_elements(&self) -> Element {
5280 rsx!(path {
5281 d: "M8.54431 0.981842L8.8363 1.03458L9.10095 1.09512L9.42517 1.18497L9.6781 1.267L9.95447 1.37051L10.1937 1.47208L10.307 1.52383L10.6342 1.68887L10.9564 1.87442L11.2484 2.06485L11.4926 2.24161L11.8138 2.50235L12.0355 2.70255L12.1957 2.85977L12.3158 2.9838L12.4789 3.16446L12.6781 3.40372L12.8314 3.60391C13.0355 3.88261 13.2175 4.17782 13.3763 4.48672L13.4506 4.63516L13.5277 4.80118L13.641 5.06876C13.7382 5.31392 13.8213 5.56724 13.889 5.82657C13.9452 6.04133 13.9913 6.26068 14.0258 6.4838L14.0619 6.76114C14.0889 7.00372 14.1029 7.25061 14.1029 7.5004C14.1028 11.1454 11.1483 14.1 7.5033 14.1C7.3745 14.1 7.24648 14.0965 7.11951 14.0893L6.85193 14.0688L6.53552 14.0297C6.40721 14.0108 6.27957 13.9885 6.15369 13.9623C6.04742 13.9402 5.9422 13.9151 5.83826 13.8881C5.70144 13.8525 5.5657 13.8131 5.43201 13.769L5.18884 13.683L4.88513 13.5609L4.62537 13.4408L4.36169 13.3061C4.23548 13.2376 4.11156 13.1654 3.9906 13.0893L3.81482 12.974L3.6283 12.8432L3.5072 12.7533L3.31873 12.6049L3.05896 12.3793L2.98669 12.3129C2.91538 12.2459 2.84503 12.1769 2.77673 12.1068C2.62748 11.9531 2.74608 11.7022 2.96033 11.6908C3.20996 11.6774 3.45726 11.65 3.69861 11.6098C6.82221 11.0879 9.20349 8.3718 9.20349 5.10001C9.20345 3.9692 8.91856 2.90436 8.41736 1.97403C8.29975 1.75576 8.17026 1.54482 8.02966 1.34219C7.90722 1.16575 8.03303 0.917893 8.24646 0.941803L8.54431 0.981842ZM9.8324 2.40567C10.2002 3.2979 10.4037 4.27587 10.4037 5.3002C10.4037 5.60452 10.3848 5.90465 10.35 6.19962L10.4779 6.20645C11.108 6.27052 11.5998 6.80261 11.6 7.44962C11.6 8.13996 11.0403 8.6996 10.35 8.69962C10.1081 8.69962 9.88309 8.63005 9.69177 8.51114C9.63529 8.6321 9.57562 8.75117 9.51306 8.86856C9.84841 8.94335 10.099 9.24212 10.099 9.60001C10.0989 10.0141 9.76312 10.35 9.349 10.35C9.09956 10.3499 8.87982 10.2269 8.74353 10.0395C7.81101 11.2068 6.54234 12.0938 5.08337 12.5522C5.81579 12.9036 6.63654 13.1 7.5033 13.1C10.596 13.1 13.1028 10.5931 13.1029 7.5004C13.1029 5.23879 11.7623 3.28958 9.8324 2.40567ZM1.50037 6.10001C1.7211 6.10022 1.90076 6.27961 1.90076 6.5004V7.10001H2.50037L2.58142 7.1088C2.76323 7.14645 2.90076 7.30743 2.90076 7.5004C2.90057 7.69325 2.76319 7.85443 2.58142 7.892L2.50037 7.90079H1.90076V8.5004C1.90055 8.721 1.72097 8.90058 1.50037 8.90079C1.27958 8.90079 1.10019 8.72113 1.09998 8.5004V7.90079H0.500366C0.279583 7.90079 0.100187 7.72113 0.0999756 7.5004C0.0999756 7.27948 0.279452 7.10001 0.500366 7.10001H1.09998V6.5004C1.09998 6.27948 1.27945 6.10001 1.50037 6.10001ZM5.50037 3.10001C5.7211 3.10022 5.90076 3.27961 5.90076 3.5004V4.10001H6.50037L6.58142 4.1088C6.76323 4.14645 6.90076 4.30743 6.90076 4.5004C6.90057 4.69325 6.76319 4.85443 6.58142 4.892L6.50037 4.90079H5.90076V5.5004C5.90055 5.721 5.72097 5.90058 5.50037 5.90079C5.27958 5.90079 5.10019 5.72113 5.09998 5.5004V4.90079H4.50037C4.27958 4.90079 4.10019 4.72113 4.09998 4.5004C4.09998 4.27948 4.27945 4.10001 4.50037 4.10001H5.09998V3.5004C5.09998 3.27948 5.27945 3.10001 5.50037 3.10001ZM2.50037 0.100006C2.7211 0.100218 2.90076 0.279613 2.90076 0.500397V1.10001H3.50037L3.58142 1.1088C3.76323 1.14645 3.90076 1.30743 3.90076 1.5004C3.90057 1.69325 3.76319 1.85443 3.58142 1.892L3.50037 1.90079H2.90076V2.5004C2.90055 2.721 2.72097 2.90058 2.50037 2.90079C2.27958 2.90079 2.10019 2.72113 2.09998 2.5004V1.90079H1.50037C1.27958 1.90079 1.10019 1.72113 1.09998 1.5004C1.09998 1.27948 1.27945 1.10001 1.50037 1.10001H2.09998V0.500397C2.09998 0.279483 2.27945 0.100006 2.50037 0.100006Z",
5282 fill: "currentColor",
5283 })
5284 }
5285
5286 const WIDTH: Option<&'static str> = Some("15");
5287 const HEIGHT: Option<&'static str> = Some("15");
5288 const FILL: Option<&'static str> = Some("none");
5289 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5290
5291}
5292
5293#[derive(Default, Copy, Clone, PartialEq, Eq)]
5294pub struct Move;
5295
5296impl IconShape for Move {
5297 fn child_elements(&self) -> Element {
5298 rsx!(path {
5299 d: "M7.50016 9.0002C7.77622 9.00031 8.00016 9.22413 8.00016 9.5002V12.6135L8.9318 11.6818C9.10754 11.5061 9.39279 11.5061 9.56852 11.6818C9.74406 11.8576 9.74419 12.1429 9.56852 12.3186L7.81852 14.0686C7.66475 14.2223 7.42679 14.2415 7.25212 14.1262L7.18181 14.0686L5.43181 12.3186L5.37419 12.2483C5.25867 12.0736 5.27796 11.8357 5.43181 11.6818C5.58565 11.528 5.82352 11.5087 5.99821 11.6242L6.06852 11.6818L7.00016 12.6135V9.5002C7.00016 9.22406 7.22402 9.0002 7.50016 9.0002ZM11.6818 5.43185C11.8356 5.278 12.0735 5.25871 12.2482 5.37423L12.3185 5.43185L14.0685 7.18185L14.1261 7.25216C14.2415 7.42683 14.2223 7.66479 14.0685 7.81856L12.3185 9.56856C12.1429 9.74424 11.8576 9.7441 11.6818 9.56856C11.5061 9.39283 11.5061 9.10758 11.6818 8.93184L12.6134 8.0002H9.50016C9.22409 8.0002 9.00027 7.77626 9.00016 7.5002C9.00016 7.22406 9.22402 7.0002 9.50016 7.0002H12.6134L11.6818 6.06856L11.6242 5.99825C11.5087 5.82356 11.528 5.58569 11.6818 5.43185ZM2.6818 5.43185C2.85754 5.25611 3.14279 5.25611 3.31852 5.43185C3.49406 5.6076 3.49419 5.89289 3.31852 6.06856L2.38688 7.0002H5.50016L5.60075 7.00997C5.8286 7.05658 6.00016 7.25857 6.00016 7.5002C6.00007 7.74178 5.82858 7.94387 5.60075 7.99044L5.50016 8.0002H2.38688L3.31852 8.93184L3.37614 9.00216C3.49149 9.17683 3.4723 9.41479 3.31852 9.56856C3.16475 9.72234 2.92679 9.74153 2.75212 9.62618L2.6818 9.56856L0.931805 7.81856C0.756069 7.64283 0.756069 7.35758 0.931805 7.18185L2.6818 5.43185ZM7.25212 0.874228C7.42681 0.758749 7.66469 0.778015 7.81852 0.931845L9.56852 2.68185L9.62614 2.75216C9.74149 2.92683 9.7223 3.16479 9.56852 3.31856C9.41475 3.47234 9.17679 3.49153 9.00212 3.37618L8.9318 3.31856L8.00016 2.38692V5.5002L7.9904 5.60079C7.94383 5.82862 7.74174 6.00011 7.50016 6.0002C7.25853 6.0002 7.05654 5.82864 7.00993 5.60079L7.00016 5.5002V2.38692L6.06852 3.31856C5.89285 3.49423 5.60756 3.4941 5.43181 3.31856C5.25607 3.14283 5.25607 2.85758 5.43181 2.68185L7.18181 0.931845L7.25212 0.874228Z",
5300 fill: "currentColor",
5301 })
5302 }
5303
5304 const WIDTH: Option<&'static str> = Some("15");
5305 const HEIGHT: Option<&'static str> = Some("15");
5306 const FILL: Option<&'static str> = Some("none");
5307 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5308
5309}
5310
5311#[derive(Default, Copy, Clone, PartialEq, Eq)]
5312pub struct NotionLogo;
5313
5314impl IconShape for NotionLogo {
5315 fn child_elements(&self) -> Element {
5316 rsx!(path {
5317 d: "M9.32544 0.781257C10.2448 0.702402 10.482 0.755043 11.0598 1.17481L13.4495 2.8545C13.8434 3.14304 13.9747 3.22173 13.9749 3.53614V12.749C13.9749 13.3264 13.7648 13.6684 13.0295 13.7207L4.33521 14.2451C3.7832 14.2715 3.5198 14.1929 3.23071 13.8252L1.47095 11.542C1.15567 11.1218 1.02471 10.8073 1.02466 10.4395V2.25001C1.02478 1.77803 1.23559 1.38431 1.83911 1.33204L9.32544 0.781257ZM4.12427 4.32423C3.80923 4.3507 3.70435 4.50848 3.70435 4.84962V12.6699C3.70435 13.0903 3.91419 13.2477 4.38696 13.2217L12.5559 12.749C13.0289 12.723 13.0823 12.4342 13.0823 12.0928V4.32423C13.0823 3.98339 12.9508 3.79905 12.6614 3.8252L4.12427 4.32423ZM11.7688 5.26856C11.8212 5.50502 11.7684 5.74101 11.5315 5.76758L11.1379 5.84669V11.6201C10.7963 11.8037 10.4815 11.9091 10.219 11.9092C9.79864 11.9092 9.69295 11.7781 9.37817 11.3848L6.80298 7.34278V11.2529L7.61841 11.4375C7.61819 11.4543 7.60603 11.909 6.96118 11.9092L5.14868 12.0147C5.09607 11.9096 5.14878 11.6475 5.33228 11.5947L5.80591 11.4629V6.29298L5.14868 6.24024C5.09606 6.00389 5.2273 5.66344 5.59497 5.63673L7.53931 5.50489L10.219 9.59962V5.97755L9.5354 5.89942C9.48299 5.61051 9.69281 5.40024 9.95532 5.37403L11.7688 5.26856ZM9.64087 1.51563L2.44263 2.04102C2.18055 2.06716 2.12818 2.19857 2.23267 2.30372L3.25806 3.11719C3.67766 3.45799 3.83535 3.43148 4.62329 3.37891L12.0569 2.93262C12.214 2.93262 12.0844 2.77691 12.0315 2.75001L10.7961 1.85743C10.5596 1.67381 10.2448 1.46305 9.64087 1.51563Z",
5318 fill: "currentColor",
5319 })
5320 }
5321
5322 const WIDTH: Option<&'static str> = Some("15");
5323 const HEIGHT: Option<&'static str> = Some("15");
5324 const FILL: Option<&'static str> = Some("none");
5325 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5326
5327}
5328
5329#[derive(Default, Copy, Clone, PartialEq, Eq)]
5330pub struct Opacity;
5331
5332impl IconShape for Opacity {
5333 fn child_elements(&self) -> Element {
5334 rsx!(path {
5335 d: "M7.5 1.5C10.5 4.25 12 6.5 12 9C12 11.4853 9.98528 13.5 7.5 13.5C5.01472 13.5 3 11.4853 3 9C3 6.5 4.5 4.25 7.5 1.5ZM7.5 2.87598C5.02773 5.27379 4 7.11234 4 9C4 10.933 5.567 12.5 7.5 12.5C9.433 12.5 11 10.933 11 9C11 7.11234 9.97227 5.27379 7.5 2.87598Z",
5336 fill: "currentColor",
5337 })
5338 }
5339
5340 const WIDTH: Option<&'static str> = Some("15");
5341 const HEIGHT: Option<&'static str> = Some("15");
5342 const FILL: Option<&'static str> = Some("none");
5343 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5344
5345}
5346
5347#[derive(Default, Copy, Clone, PartialEq, Eq)]
5348pub struct OpenInNewWindow;
5349
5350impl IconShape for OpenInNewWindow {
5351 fn child_elements(&self) -> Element {
5352 rsx!(path {
5353 d: "M8.5 6C8.53267 6 8.56549 6.00242 8.59766 6.00879C8.64875 6.01889 8.69602 6.03909 8.74023 6.06348C8.78055 6.08569 8.81933 6.1123 8.85352 6.14648C8.88737 6.18034 8.91343 6.21891 8.93555 6.25879C8.96008 6.30299 8.98 6.35024 8.99023 6.40137C8.99675 6.43389 9 6.46695 9 6.5V9.5C9 9.77614 8.77614 10 8.5 10C8.22386 10 8 9.77614 8 9.5V7.70703L2.85352 12.8535C2.65825 13.0488 2.34175 13.0488 2.14648 12.8535C1.95122 12.6583 1.95122 12.3417 2.14648 12.1465L7.29297 7H5.5C5.22386 7 5 6.77614 5 6.5C5 6.22386 5.22386 6 5.5 6H8.5ZM12 2C12.5523 2 13 2.44772 13 3V12C13 12.5523 12.5523 13 12 13H8.5C8.22386 13 8 12.7761 8 12.5C8 12.2239 8.22386 12 8.5 12H12V3H3V6.5C3 6.77614 2.77614 7 2.5 7C2.22386 7 2 6.77614 2 6.5V3C2 2.44772 2.44772 2 3 2H12Z",
5354 fill: "currentColor",
5355 })
5356 }
5357
5358 const WIDTH: Option<&'static str> = Some("15");
5359 const HEIGHT: Option<&'static str> = Some("15");
5360 const FILL: Option<&'static str> = Some("none");
5361 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5362
5363}
5364
5365#[derive(Default, Copy, Clone, PartialEq, Eq)]
5366pub struct Overline;
5367
5368impl IconShape for Overline {
5369 fn child_elements(&self) -> Element {
5370 rsx!(path {
5371 d: "M10.5003 3.75038C10.7763 3.75054 11.0003 3.97434 11.0003 4.25038V9.55019C11.0001 11.4829 9.43304 13.05 7.50031 13.0502C5.56744 13.0502 4.00051 11.483 4.00031 9.55019V4.25038C4.00031 3.97424 4.22416 3.75038 4.50031 3.75038C4.77631 3.75054 5.00031 3.97434 5.00031 4.25038V9.55019C5.00051 10.9307 6.11972 12.0502 7.50031 12.0502C8.88075 12.05 10.0001 10.9306 10.0003 9.55019V4.25038C10.0003 3.97424 10.2242 3.75038 10.5003 3.75038ZM11.5814 1.10878C11.7632 1.14644 11.9007 1.30741 11.9007 1.50038C11.9005 1.69323 11.7631 1.85441 11.5814 1.89198L11.5003 1.90077H3.50031C3.27952 1.90077 3.10013 1.72112 3.09991 1.50038C3.09991 1.27947 3.27939 1.09999 3.50031 1.09999H11.5003L11.5814 1.10878Z",
5372 fill: "currentColor",
5373 })
5374 }
5375
5376 const WIDTH: Option<&'static str> = Some("15");
5377 const HEIGHT: Option<&'static str> = Some("15");
5378 const FILL: Option<&'static str> = Some("none");
5379 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5380
5381}
5382
5383#[derive(Default, Copy, Clone, PartialEq, Eq)]
5384pub struct Padding;
5385
5386impl IconShape for Padding {
5387 fn child_elements(&self) -> Element {
5388 rsx!(path {
5389 d: "M12.333 1.00977C13.2693 1.105 14 1.89595 14 2.85742V12.1426L13.9902 12.333C13.9014 13.2068 13.2068 13.9014 12.333 13.9902L12.1426 14H2.85742L2.66699 13.9902C1.79318 13.9014 1.09864 13.2068 1.00977 12.333L1 12.1426V2.85742C1 1.89595 1.73065 1.105 2.66699 1.00977L2.85742 1H12.1426L12.333 1.00977ZM2.85742 2C2.38403 2 2 2.38404 2 2.85742V12.1426C2 12.616 2.38404 13 2.85742 13H12.1426C12.616 13 13 12.616 13 12.1426V2.85742C13 2.38403 12.616 2 12.1426 2H2.85742ZM4.5 10C4.77605 10.0001 4.99993 10.224 5 10.5C5 10.7761 4.77609 10.9999 4.5 11C4.22386 11 4 10.7761 4 10.5C4.00007 10.2239 4.2239 10 4.5 10ZM7.5 10C7.77605 10.0001 7.99993 10.224 8 10.5C8 10.7761 7.77609 10.9999 7.5 11C7.22386 11 7 10.7761 7 10.5C7.00007 10.2239 7.2239 10 7.5 10ZM10.5 10C10.776 10.0001 10.9999 10.224 11 10.5C11 10.7761 10.7761 10.9999 10.5 11C10.2239 11 10 10.7761 10 10.5C10.0001 10.2239 10.2239 10 10.5 10ZM4.5 7C4.77605 7.00007 4.99993 7.22395 5 7.5C5 7.7761 4.77609 7.99993 4.5 8C4.22386 8 4 7.77614 4 7.5C4.00007 7.22391 4.2239 7 4.5 7ZM10.5 7C10.776 7.00007 10.9999 7.22395 11 7.5C11 7.7761 10.7761 7.99993 10.5 8C10.2239 8 10 7.77614 10 7.5C10.0001 7.22391 10.2239 7 10.5 7ZM4.5 4C4.77605 4.00007 4.99993 4.22395 5 4.5C5 4.7761 4.77609 4.99993 4.5 5C4.22386 5 4 4.77614 4 4.5C4.00007 4.22391 4.2239 4 4.5 4ZM7.5 4C7.77605 4.00007 7.99993 4.22395 8 4.5C8 4.7761 7.77609 4.99993 7.5 5C7.22386 5 7 4.77614 7 4.5C7.00007 4.22391 7.2239 4 7.5 4ZM10.5 4C10.776 4.00007 10.9999 4.22395 11 4.5C11 4.7761 10.7761 4.99993 10.5 5C10.2239 5 10 4.77614 10 4.5C10.0001 4.22391 10.2239 4 10.5 4Z",
5390 fill: "currentColor",
5391 })
5392 }
5393
5394 const WIDTH: Option<&'static str> = Some("15");
5395 const HEIGHT: Option<&'static str> = Some("15");
5396 const FILL: Option<&'static str> = Some("none");
5397 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5398
5399}
5400
5401#[derive(Default, Copy, Clone, PartialEq, Eq)]
5402pub struct PanelBottom;
5403
5404impl IconShape for PanelBottom {
5405 fn child_elements(&self) -> Element {
5406 rsx!(mask {
5407 fill: "currentColor",
5408 id: "a",
5409 }
5410path {
5411 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM0.984375 9V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V9H0.984375ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V8H14.0156V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H1.5Z",
5412 }
5413path {
5414 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM0.984375 9V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V9H0.984375ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V8H14.0156V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H1.5Z",
5415 fill: "currentColor",
5416 }
5417path {
5418 d: "M13.6533 2.00781L13.7793 0.767315L13.7481 0.764148L13.7168 0.762553L13.6533 2.00781ZM15 3.5H16.2469H15ZM15 11.5L16.2453 11.5635L16.2469 11.5317V11.5H15ZM14.9922 11.6533L16.2327 11.7793L16.2359 11.7481L16.2374 11.7168L14.9922 11.6533ZM13.6533 12.9922L13.7168 14.2374L13.7481 14.2359L13.7793 14.2327L13.6533 12.9922ZM13.5 13V14.2469H13.5317L13.5635 14.2453L13.5 13ZM1.5 13L1.43655 14.2453L1.46825 14.2469H1.5V13ZM1.34668 12.9922L1.22073 14.2327L1.25192 14.2359L1.28323 14.2374L1.34668 12.9922ZM0.0078125 11.6533L-1.23745 11.7168L-1.23585 11.7481L-1.23269 11.7793L0.0078125 11.6533ZM0 11.5H-1.24688V11.5317L-1.24526 11.5635L0 11.5ZM1.34668 2.00781L1.28323 0.762553L1.25192 0.764148L1.22073 0.767315L1.34668 2.00781ZM1.5 2V0.753125H1.46825L1.43655 0.75474L1.5 2ZM13.5 2L13.5635 0.75474L13.5317 0.753125H13.5V2ZM0.984375 9V7.75313H-0.2625V9H0.984375ZM0.984375 11.5H-0.2625H0.984375ZM1.5 12.0156L1.5 13.2625H1.5V12.0156ZM13.5 12.0156V13.2625V12.0156ZM14.0156 9H15.2625V7.75313H14.0156V9ZM1.5 2.98438V1.7375V2.98438ZM0.984375 8H-0.2625V9.24687H0.984375V8ZM14.0156 8V9.24687H15.2625V8H14.0156ZM14.0156 3.5H15.2625V3.5L14.0156 3.5ZM13.5 2.98438L13.5 1.7375H13.5V2.98438ZM13.6533 2.00781L13.5274 3.24831C13.6538 3.26114 13.7531 3.36979 13.7531 3.5H15H16.2469C16.2469 2.07688 15.1657 0.908077 13.7793 0.767315L13.6533 2.00781ZM15 3.5H13.7531V11.5H15H16.2469V3.5H15ZM15 11.5L13.7547 11.4365L13.7469 11.5899L14.9922 11.6533L16.2374 11.7168L16.2453 11.5635L15 11.5ZM14.9922 11.6533L13.7517 11.5274C13.7398 11.6444 13.6444 11.7398 13.5274 11.7517L13.6533 12.9922L13.7793 14.2327C15.0743 14.1012 16.1012 13.0743 16.2327 11.7793L14.9922 11.6533ZM13.6533 12.9922L13.5899 11.7469L13.4365 11.7547L13.5 13L13.5635 14.2453L13.7168 14.2374L13.6533 12.9922ZM13.5 13V11.7531H1.5V13V14.2469H13.5V13ZM1.5 13L1.56345 11.7547L1.41013 11.7469L1.34668 12.9922L1.28323 14.2374L1.43655 14.2453L1.5 13ZM1.34668 12.9922L1.47263 11.7517C1.35564 11.7398 1.26019 11.6444 1.24831 11.5274L0.0078125 11.6533L-1.23269 11.7793C-1.10121 13.0743 -0.0742617 14.1012 1.22073 14.2327L1.34668 12.9922ZM0.0078125 11.6533L1.25307 11.5899L1.24526 11.4365L0 11.5L-1.24526 11.5635L-1.23745 11.7168L0.0078125 11.6533ZM0 11.5H1.24688V3.5H0H-1.24688V11.5H0ZM0 3.5H1.24688C1.24688 3.36979 1.34623 3.26114 1.47263 3.24831L1.34668 2.00781L1.22073 0.767315C-0.165678 0.908076 -1.24688 2.07688 -1.24688 3.5H0ZM1.34668 2.00781L1.41013 3.25307L1.56345 3.24526L1.5 2L1.43655 0.75474L1.28323 0.762553L1.34668 2.00781ZM1.5 2V3.24688H13.5V2V0.753125H1.5V2ZM13.5 2L13.4365 3.24526L13.5899 3.25307L13.6533 2.00781L13.7168 0.762553L13.5635 0.75474L13.5 2ZM0.984375 9H-0.2625V11.5H0.984375H2.23125V9H0.984375ZM0.984375 11.5H-0.2625C-0.2625 12.4734 0.526598 13.2625 1.5 13.2625L1.5 12.0156L1.5 10.7688C1.90386 10.7688 2.23125 11.0961 2.23125 11.5H0.984375ZM1.5 12.0156V13.2625H13.5V12.0156V10.7688H1.5V12.0156ZM13.5 12.0156V13.2625C14.4734 13.2625 15.2625 12.4734 15.2625 11.5H14.0156H12.7688C12.7688 11.0961 13.0961 10.7688 13.5 10.7688V12.0156ZM14.0156 11.5H15.2625V9H14.0156H12.7688V11.5H14.0156ZM14.0156 9V7.75313H0.984375V9V10.2469H14.0156V9ZM1.5 2.98438V1.7375C0.526598 1.7375 -0.2625 2.5266 -0.2625 3.5H0.984375H2.23125C2.23125 3.90386 1.90386 4.23125 1.5 4.23125V2.98438ZM0.984375 3.5H-0.2625V8H0.984375H2.23125V3.5H0.984375ZM0.984375 8V9.24687H14.0156V8V6.75313H0.984375V8ZM14.0156 8H15.2625V3.5H14.0156H12.7688V8H14.0156ZM14.0156 3.5L15.2625 3.5C15.2625 2.5266 14.4734 1.7375 13.5 1.7375L13.5 2.98438L13.5 4.23125C13.0961 4.23125 12.7688 3.90386 12.7688 3.5L14.0156 3.5ZM13.5 2.98438V1.7375H1.5V2.98438V4.23125H13.5V2.98438Z",
5419 fill: "currentColor",
5420 mask: "url(#a)",
5421 })
5422 }
5423
5424 const WIDTH: Option<&'static str> = Some("15");
5425 const HEIGHT: Option<&'static str> = Some("15");
5426 const FILL: Option<&'static str> = Some("none");
5427 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5428
5429}
5430
5431#[derive(Default, Copy, Clone, PartialEq, Eq)]
5432pub struct PanelBottomMinimized;
5433
5434impl IconShape for PanelBottomMinimized {
5435 fn child_elements(&self) -> Element {
5436 rsx!(mask {
5437 fill: "currentColor",
5438 id: "a",
5439 }
5440path {
5441 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H1.5ZM12.5 9C12.7761 9 13 9.22386 13 9.5C13 9.77614 12.7761 10 12.5 10H2.5C2.22386 10 2 9.77614 2 9.5C2 9.22386 2.22386 9 2.5 9H12.5Z",
5442 }
5443path {
5444 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H1.5ZM12.5 9C12.7761 9 13 9.22386 13 9.5C13 9.77614 12.7761 10 12.5 10H2.5C2.22386 10 2 9.77614 2 9.5C2 9.22386 2.22386 9 2.5 9H12.5Z",
5445 fill: "currentColor",
5446 }
5447path {
5448 d: "M13.6533 2.00781L13.7793 0.767315L13.7481 0.764148L13.7168 0.762553L13.6533 2.00781ZM15 3.5H16.2469H15ZM15 11.5L16.2453 11.5635L16.2469 11.5317V11.5H15ZM14.9922 11.6533L16.2327 11.7793L16.2359 11.7481L16.2374 11.7168L14.9922 11.6533ZM13.6533 12.9922L13.7168 14.2374L13.7481 14.2359L13.7793 14.2327L13.6533 12.9922ZM13.5 13V14.2469H13.5317L13.5635 14.2453L13.5 13ZM1.5 13L1.43655 14.2453L1.46825 14.2469H1.5V13ZM1.34668 12.9922L1.22073 14.2327L1.25192 14.2359L1.28323 14.2374L1.34668 12.9922ZM0.0078125 11.6533L-1.23745 11.7168L-1.23585 11.7481L-1.23269 11.7793L0.0078125 11.6533ZM0 11.5H-1.24688V11.5317L-1.24526 11.5635L0 11.5ZM1.34668 2.00781L1.28323 0.762553L1.25192 0.764148L1.22073 0.767315L1.34668 2.00781ZM1.5 2V0.753125H1.46825L1.43655 0.75474L1.5 2ZM13.5 2L13.5635 0.75474L13.5317 0.753125H13.5V2ZM1.5 2.98438V1.7375V2.98438ZM0.984375 11.5H-0.2625H0.984375ZM1.5 12.0156L1.5 13.2625H1.5V12.0156ZM13.5 12.0156V13.2625V12.0156ZM14.0156 3.5H15.2625V3.5L14.0156 3.5ZM13.5 2.98438L13.5 1.7375H13.5V2.98438ZM12.5 9V7.75313V9ZM12.5 10V11.2469V10ZM2.5 10L2.5 11.2469H2.5V10ZM2.5 9V7.75312V7.75313V9ZM13.6533 2.00781L13.5274 3.24831C13.6538 3.26114 13.7531 3.36979 13.7531 3.5H15H16.2469C16.2469 2.07688 15.1657 0.908077 13.7793 0.767315L13.6533 2.00781ZM15 3.5H13.7531V11.5H15H16.2469V3.5H15ZM15 11.5L13.7547 11.4365L13.7469 11.5899L14.9922 11.6533L16.2374 11.7168L16.2453 11.5635L15 11.5ZM14.9922 11.6533L13.7517 11.5274C13.7398 11.6444 13.6444 11.7398 13.5274 11.7517L13.6533 12.9922L13.7793 14.2327C15.0743 14.1012 16.1012 13.0743 16.2327 11.7793L14.9922 11.6533ZM13.6533 12.9922L13.5899 11.7469L13.4365 11.7547L13.5 13L13.5635 14.2453L13.7168 14.2374L13.6533 12.9922ZM13.5 13V11.7531H1.5V13V14.2469H13.5V13ZM1.5 13L1.56345 11.7547L1.41013 11.7469L1.34668 12.9922L1.28323 14.2374L1.43655 14.2453L1.5 13ZM1.34668 12.9922L1.47263 11.7517C1.35564 11.7398 1.26019 11.6444 1.24831 11.5274L0.0078125 11.6533L-1.23269 11.7793C-1.10121 13.0743 -0.0742617 14.1012 1.22073 14.2327L1.34668 12.9922ZM0.0078125 11.6533L1.25307 11.5899L1.24526 11.4365L0 11.5L-1.24526 11.5635L-1.23745 11.7168L0.0078125 11.6533ZM0 11.5H1.24688V3.5H0H-1.24688V11.5H0ZM0 3.5H1.24688C1.24688 3.36979 1.34623 3.26114 1.47263 3.24831L1.34668 2.00781L1.22073 0.767315C-0.165678 0.908076 -1.24688 2.07688 -1.24688 3.5H0ZM1.34668 2.00781L1.41013 3.25307L1.56345 3.24526L1.5 2L1.43655 0.75474L1.28323 0.762553L1.34668 2.00781ZM1.5 2V3.24688H13.5V2V0.753125H1.5V2ZM13.5 2L13.4365 3.24526L13.5899 3.25307L13.6533 2.00781L13.7168 0.762553L13.5635 0.75474L13.5 2ZM1.5 2.98438V1.7375C0.526598 1.7375 -0.2625 2.5266 -0.2625 3.5H0.984375H2.23125C2.23125 3.90386 1.90386 4.23125 1.5 4.23125V2.98438ZM0.984375 3.5H-0.2625V11.5H0.984375H2.23125V3.5H0.984375ZM0.984375 11.5H-0.2625C-0.2625 12.4734 0.526598 13.2625 1.5 13.2625L1.5 12.0156L1.5 10.7688C1.90386 10.7688 2.23125 11.0961 2.23125 11.5H0.984375ZM1.5 12.0156V13.2625H13.5V12.0156V10.7688H1.5V12.0156ZM13.5 12.0156V13.2625C14.4734 13.2625 15.2625 12.4734 15.2625 11.5H14.0156H12.7688C12.7688 11.0961 13.0961 10.7688 13.5 10.7688V12.0156ZM14.0156 11.5H15.2625V3.5H14.0156H12.7688V11.5H14.0156ZM14.0156 3.5L15.2625 3.5C15.2625 2.5266 14.4734 1.7375 13.5 1.7375L13.5 2.98438L13.5 4.23125C13.0961 4.23125 12.7688 3.90386 12.7688 3.5L14.0156 3.5ZM13.5 2.98438V1.7375H1.5V2.98438V4.23125H13.5V2.98438ZM12.5 9V10.2469C12.0875 10.2469 11.7531 9.91249 11.7531 9.5H13H14.2469C14.2469 8.53523 13.4648 7.75313 12.5 7.75313V9ZM13 9.5H11.7531C11.7531 9.08751 12.0875 8.75313 12.5 8.75313V10V11.2469C13.4648 11.2469 14.2469 10.4648 14.2469 9.5H13ZM12.5 10V8.75313H2.5V10V11.2469H12.5V10ZM2.5 10L2.5 8.75313C2.91249 8.75313 3.24688 9.08751 3.24688 9.5H2H0.753125C0.753125 10.4648 1.53523 11.2469 2.5 11.2469L2.5 10ZM2 9.5H3.24688C3.24688 9.91249 2.91249 10.2469 2.5 10.2469V9V7.75313C1.53523 7.75313 0.753125 8.53523 0.753125 9.5H2ZM2.5 9V10.2469H12.5V9V7.75313H2.5V9Z",
5449 fill: "currentColor",
5450 mask: "url(#a)",
5451 })
5452 }
5453
5454 const WIDTH: Option<&'static str> = Some("15");
5455 const HEIGHT: Option<&'static str> = Some("15");
5456 const FILL: Option<&'static str> = Some("none");
5457 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5458
5459}
5460
5461#[derive(Default, Copy, Clone, PartialEq, Eq)]
5462pub struct PanelLeft;
5463
5464impl IconShape for PanelLeft {
5465 fn child_elements(&self) -> Element {
5466 rsx!(mask {
5467 fill: "currentColor",
5468 id: "a",
5469 }
5470path {
5471 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H4V2.98438H1.5ZM5 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H5V12.0156Z",
5472 }
5473path {
5474 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H4V2.98438H1.5ZM5 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H5V12.0156Z",
5475 fill: "currentColor",
5476 }
5477path {
5478 d: "M13.6533 2.00781L13.7793 0.767315L13.7481 0.764148L13.7168 0.762553L13.6533 2.00781ZM15 3.5H16.2469H15ZM15 11.5L16.2453 11.5635L16.2469 11.5317V11.5H15ZM14.9922 11.6533L16.2327 11.7793L16.2359 11.7481L16.2374 11.7168L14.9922 11.6533ZM13.6533 12.9922L13.7168 14.2374L13.7481 14.2359L13.7793 14.2327L13.6533 12.9922ZM13.5 13V14.2469H13.5317L13.5635 14.2453L13.5 13ZM1.5 13L1.43655 14.2453L1.46825 14.2469H1.5V13ZM1.34668 12.9922L1.22073 14.2327L1.25192 14.2359L1.28323 14.2374L1.34668 12.9922ZM0.0078125 11.6533L-1.23745 11.7168L-1.23585 11.7481L-1.23269 11.7793L0.0078125 11.6533ZM0 11.5H-1.24688V11.5317L-1.24526 11.5635L0 11.5ZM1.34668 2.00781L1.28323 0.762553L1.25192 0.764148L1.22073 0.767315L1.34668 2.00781ZM1.5 2V0.753125H1.46825L1.43655 0.75474L1.5 2ZM13.5 2L13.5635 0.75474L13.5317 0.753125H13.5V2ZM1.5 2.98438V1.7375V2.98438ZM0.984375 11.5H-0.2625H0.984375ZM1.5 12.0156L1.5 13.2625H1.5V12.0156ZM4 12.0156V13.2625H5.24687V12.0156H4ZM4 2.98438H5.24687V1.7375H4V2.98438ZM5 12.0156H3.75312V13.2625H5V12.0156ZM13.5 12.0156V13.2625V12.0156ZM14.0156 3.5H15.2625V3.5L14.0156 3.5ZM13.5 2.98438L13.5 1.7375H13.5V2.98438ZM5 2.98438V1.7375H3.75312V2.98438H5ZM13.6533 2.00781L13.5274 3.24831C13.6538 3.26114 13.7531 3.36979 13.7531 3.5H15H16.2469C16.2469 2.07688 15.1657 0.908077 13.7793 0.767315L13.6533 2.00781ZM15 3.5H13.7531V11.5H15H16.2469V3.5H15ZM15 11.5L13.7547 11.4365L13.7469 11.5899L14.9922 11.6533L16.2374 11.7168L16.2453 11.5635L15 11.5ZM14.9922 11.6533L13.7517 11.5274C13.7398 11.6444 13.6444 11.7398 13.5274 11.7517L13.6533 12.9922L13.7793 14.2327C15.0743 14.1012 16.1012 13.0743 16.2327 11.7793L14.9922 11.6533ZM13.6533 12.9922L13.5899 11.7469L13.4365 11.7547L13.5 13L13.5635 14.2453L13.7168 14.2374L13.6533 12.9922ZM13.5 13V11.7531H1.5V13V14.2469H13.5V13ZM1.5 13L1.56345 11.7547L1.41013 11.7469L1.34668 12.9922L1.28323 14.2374L1.43655 14.2453L1.5 13ZM1.34668 12.9922L1.47263 11.7517C1.35564 11.7398 1.26019 11.6444 1.24831 11.5274L0.0078125 11.6533L-1.23269 11.7793C-1.10121 13.0743 -0.0742617 14.1012 1.22073 14.2327L1.34668 12.9922ZM0.0078125 11.6533L1.25307 11.5899L1.24526 11.4365L0 11.5L-1.24526 11.5635L-1.23745 11.7168L0.0078125 11.6533ZM0 11.5H1.24688V3.5H0H-1.24688V11.5H0ZM0 3.5H1.24688C1.24688 3.36979 1.34623 3.26114 1.47263 3.24831L1.34668 2.00781L1.22073 0.767315C-0.165678 0.908076 -1.24688 2.07688 -1.24688 3.5H0ZM1.34668 2.00781L1.41013 3.25307L1.56345 3.24526L1.5 2L1.43655 0.75474L1.28323 0.762553L1.34668 2.00781ZM1.5 2V3.24688H13.5V2V0.753125H1.5V2ZM13.5 2L13.4365 3.24526L13.5899 3.25307L13.6533 2.00781L13.7168 0.762553L13.5635 0.75474L13.5 2ZM1.5 2.98438V1.7375C0.526598 1.7375 -0.2625 2.5266 -0.2625 3.5H0.984375H2.23125C2.23125 3.90386 1.90386 4.23125 1.5 4.23125V2.98438ZM0.984375 3.5H-0.2625V11.5H0.984375H2.23125V3.5H0.984375ZM0.984375 11.5H-0.2625C-0.2625 12.4734 0.526598 13.2625 1.5 13.2625L1.5 12.0156L1.5 10.7688C1.90386 10.7688 2.23125 11.0961 2.23125 11.5H0.984375ZM1.5 12.0156V13.2625H4V12.0156V10.7688H1.5V12.0156ZM4 12.0156H5.24687V2.98438H4H2.75312V12.0156H4ZM4 2.98438V1.7375H1.5V2.98438V4.23125H4V2.98438ZM5 12.0156V13.2625H13.5V12.0156V10.7688H5V12.0156ZM13.5 12.0156V13.2625C14.4734 13.2625 15.2625 12.4734 15.2625 11.5H14.0156H12.7688C12.7688 11.0961 13.0961 10.7688 13.5 10.7688V12.0156ZM14.0156 11.5H15.2625V3.5H14.0156H12.7688V11.5H14.0156ZM14.0156 3.5L15.2625 3.5C15.2625 2.5266 14.4734 1.7375 13.5 1.7375L13.5 2.98438L13.5 4.23125C13.0961 4.23125 12.7688 3.90386 12.7688 3.5L14.0156 3.5ZM13.5 2.98438V1.7375H5V2.98438V4.23125H13.5V2.98438ZM5 2.98438H3.75312V12.0156H5H6.24687V2.98438H5Z",
5479 fill: "currentColor",
5480 mask: "url(#a)",
5481 })
5482 }
5483
5484 const WIDTH: Option<&'static str> = Some("15");
5485 const HEIGHT: Option<&'static str> = Some("15");
5486 const FILL: Option<&'static str> = Some("none");
5487 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5488
5489}
5490
5491#[derive(Default, Copy, Clone, PartialEq, Eq)]
5492pub struct PanelLeftMinimized;
5493
5494impl IconShape for PanelLeftMinimized {
5495 fn child_elements(&self) -> Element {
5496 rsx!(mask {
5497 fill: "currentColor",
5498 id: "a",
5499 }
5500path {
5501 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H1.5ZM3.5 4C3.77614 4 4 4.22386 4 4.5V10.5C4 10.7761 3.77614 11 3.5 11C3.22386 11 3 10.7761 3 10.5V4.5C3 4.22386 3.22386 4 3.5 4Z",
5502 }
5503path {
5504 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H1.5ZM3.5 4C3.77614 4 4 4.22386 4 4.5V10.5C4 10.7761 3.77614 11 3.5 11C3.22386 11 3 10.7761 3 10.5V4.5C3 4.22386 3.22386 4 3.5 4Z",
5505 fill: "currentColor",
5506 }
5507path {
5508 d: "M13.6533 2.00781L13.7793 0.767315L13.7481 0.764148L13.7168 0.762553L13.6533 2.00781ZM15 3.5H16.2469H15ZM15 11.5L16.2453 11.5635L16.2469 11.5317V11.5H15ZM14.9922 11.6533L16.2327 11.7793L16.2359 11.7481L16.2374 11.7168L14.9922 11.6533ZM13.6533 12.9922L13.7168 14.2374L13.7481 14.2359L13.7793 14.2327L13.6533 12.9922ZM13.5 13V14.2469H13.5317L13.5635 14.2453L13.5 13ZM1.5 13L1.43655 14.2453L1.46825 14.2469H1.5V13ZM1.34668 12.9922L1.22073 14.2327L1.25192 14.2359L1.28323 14.2374L1.34668 12.9922ZM0.0078125 11.6533L-1.23745 11.7168L-1.23585 11.7481L-1.23269 11.7793L0.0078125 11.6533ZM0 11.5H-1.24688V11.5317L-1.24526 11.5635L0 11.5ZM1.34668 2.00781L1.28323 0.762553L1.25192 0.764148L1.22073 0.767315L1.34668 2.00781ZM1.5 2V0.753125H1.46825L1.43655 0.75474L1.5 2ZM13.5 2L13.5635 0.75474L13.5317 0.753125H13.5V2ZM1.5 2.98438V1.7375V2.98438ZM0.984375 11.5H-0.2625H0.984375ZM1.5 12.0156L1.5 13.2625H1.5V12.0156ZM13.5 12.0156V13.2625V12.0156ZM14.0156 3.5H15.2625V3.5L14.0156 3.5ZM13.5 2.98438L13.5 1.7375H13.5V2.98438ZM4 4.5H5.24688H5.24687H4ZM4 10.5H5.24687H4ZM3 10.5H1.75312H3ZM3 4.5L1.75312 4.5V4.5H3ZM13.6533 2.00781L13.5274 3.24831C13.6538 3.26114 13.7531 3.36979 13.7531 3.5H15H16.2469C16.2469 2.07688 15.1657 0.908077 13.7793 0.767315L13.6533 2.00781ZM15 3.5H13.7531V11.5H15H16.2469V3.5H15ZM15 11.5L13.7547 11.4365L13.7469 11.5899L14.9922 11.6533L16.2374 11.7168L16.2453 11.5635L15 11.5ZM14.9922 11.6533L13.7517 11.5274C13.7398 11.6444 13.6444 11.7398 13.5274 11.7517L13.6533 12.9922L13.7793 14.2327C15.0743 14.1012 16.1012 13.0743 16.2327 11.7793L14.9922 11.6533ZM13.6533 12.9922L13.5899 11.7469L13.4365 11.7547L13.5 13L13.5635 14.2453L13.7168 14.2374L13.6533 12.9922ZM13.5 13V11.7531H1.5V13V14.2469H13.5V13ZM1.5 13L1.56345 11.7547L1.41013 11.7469L1.34668 12.9922L1.28323 14.2374L1.43655 14.2453L1.5 13ZM1.34668 12.9922L1.47263 11.7517C1.35564 11.7398 1.26019 11.6444 1.24831 11.5274L0.0078125 11.6533L-1.23269 11.7793C-1.10121 13.0743 -0.0742617 14.1012 1.22073 14.2327L1.34668 12.9922ZM0.0078125 11.6533L1.25307 11.5899L1.24526 11.4365L0 11.5L-1.24526 11.5635L-1.23745 11.7168L0.0078125 11.6533ZM0 11.5H1.24688V3.5H0H-1.24688V11.5H0ZM0 3.5H1.24688C1.24688 3.36979 1.34623 3.26114 1.47263 3.24831L1.34668 2.00781L1.22073 0.767315C-0.165678 0.908076 -1.24688 2.07688 -1.24688 3.5H0ZM1.34668 2.00781L1.41013 3.25307L1.56345 3.24526L1.5 2L1.43655 0.75474L1.28323 0.762553L1.34668 2.00781ZM1.5 2V3.24688H13.5V2V0.753125H1.5V2ZM13.5 2L13.4365 3.24526L13.5899 3.25307L13.6533 2.00781L13.7168 0.762553L13.5635 0.75474L13.5 2ZM1.5 2.98438V1.7375C0.526598 1.7375 -0.2625 2.5266 -0.2625 3.5H0.984375H2.23125C2.23125 3.90386 1.90386 4.23125 1.5 4.23125V2.98438ZM0.984375 3.5H-0.2625V11.5H0.984375H2.23125V3.5H0.984375ZM0.984375 11.5H-0.2625C-0.2625 12.4734 0.526598 13.2625 1.5 13.2625L1.5 12.0156L1.5 10.7688C1.90386 10.7688 2.23125 11.0961 2.23125 11.5H0.984375ZM1.5 12.0156V13.2625H13.5V12.0156V10.7688H1.5V12.0156ZM13.5 12.0156V13.2625C14.4734 13.2625 15.2625 12.4734 15.2625 11.5H14.0156H12.7688C12.7688 11.0961 13.0961 10.7688 13.5 10.7688V12.0156ZM14.0156 11.5H15.2625V3.5H14.0156H12.7688V11.5H14.0156ZM14.0156 3.5L15.2625 3.5C15.2625 2.5266 14.4734 1.7375 13.5 1.7375L13.5 2.98438L13.5 4.23125C13.0961 4.23125 12.7688 3.90386 12.7688 3.5L14.0156 3.5ZM13.5 2.98438V1.7375H1.5V2.98438V4.23125H13.5V2.98438ZM3.5 4V5.24688C3.08751 5.24688 2.75312 4.91249 2.75312 4.5H4H5.24687C5.24687 3.53523 4.46477 2.75312 3.5 2.75312V4ZM4 4.5H2.75312V10.5H4H5.24687V4.5H4ZM4 10.5H2.75312C2.75313 10.0875 3.08751 9.75313 3.5 9.75313V11V12.2469C4.46477 12.2469 5.24687 11.4648 5.24687 10.5H4ZM3.5 11V9.75313C3.91249 9.75313 4.24687 10.0875 4.24687 10.5H3H1.75312C1.75312 11.4648 2.53523 12.2469 3.5 12.2469V11ZM3 10.5H4.24687V4.5H3H1.75312V10.5H3ZM3 4.5L4.24687 4.5C4.24687 4.91249 3.91249 5.24688 3.5 5.24688V4V2.75312C2.53523 2.75312 1.75313 3.53523 1.75312 4.5L3 4.5Z",
5509 fill: "currentColor",
5510 mask: "url(#a)",
5511 })
5512 }
5513
5514 const WIDTH: Option<&'static str> = Some("15");
5515 const HEIGHT: Option<&'static str> = Some("15");
5516 const FILL: Option<&'static str> = Some("none");
5517 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5518
5519}
5520
5521#[derive(Default, Copy, Clone, PartialEq, Eq)]
5522pub struct PanelRight;
5523
5524impl IconShape for PanelRight {
5525 fn child_elements(&self) -> Element {
5526 rsx!(mask {
5527 fill: "currentColor",
5528 id: "a",
5529 }
5530path {
5531 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H10V2.98438H1.5ZM11 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H11V12.0156Z",
5532 }
5533path {
5534 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H10V2.98438H1.5ZM11 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H11V12.0156Z",
5535 fill: "currentColor",
5536 }
5537path {
5538 d: "M13.6533 2.00781L13.7793 0.767315L13.7481 0.764148L13.7168 0.762553L13.6533 2.00781ZM15 3.5H16.2469H15ZM15 11.5L16.2453 11.5635L16.2469 11.5317V11.5H15ZM14.9922 11.6533L16.2327 11.7793L16.2359 11.7481L16.2374 11.7168L14.9922 11.6533ZM13.6533 12.9922L13.7168 14.2374L13.7481 14.2359L13.7793 14.2327L13.6533 12.9922ZM13.5 13V14.2469H13.5317L13.5635 14.2453L13.5 13ZM1.5 13L1.43655 14.2453L1.46825 14.2469H1.5V13ZM1.34668 12.9922L1.22073 14.2327L1.25192 14.2359L1.28323 14.2374L1.34668 12.9922ZM0.0078125 11.6533L-1.23745 11.7168L-1.23585 11.7481L-1.23269 11.7793L0.0078125 11.6533ZM0 11.5H-1.24688V11.5317L-1.24526 11.5635L0 11.5ZM1.34668 2.00781L1.28323 0.762553L1.25192 0.764148L1.22073 0.767315L1.34668 2.00781ZM1.5 2V0.753125H1.46825L1.43655 0.75474L1.5 2ZM13.5 2L13.5635 0.75474L13.5317 0.753125H13.5V2ZM1.5 2.98438V1.7375V2.98438ZM0.984375 11.5H-0.2625H0.984375ZM1.5 12.0156L1.5 13.2625H1.5V12.0156ZM10 12.0156V13.2625H11.2469V12.0156H10ZM10 2.98438H11.2469V1.7375H10V2.98438ZM11 12.0156H9.75313V13.2625H11V12.0156ZM13.5 12.0156V13.2625V12.0156ZM14.0156 3.5H15.2625V3.5L14.0156 3.5ZM13.5 2.98438L13.5 1.7375H13.5V2.98438ZM11 2.98438V1.7375H9.75313V2.98438H11ZM13.6533 2.00781L13.5274 3.24831C13.6538 3.26114 13.7531 3.36979 13.7531 3.5H15H16.2469C16.2469 2.07688 15.1657 0.908077 13.7793 0.767315L13.6533 2.00781ZM15 3.5H13.7531V11.5H15H16.2469V3.5H15ZM15 11.5L13.7547 11.4365L13.7469 11.5899L14.9922 11.6533L16.2374 11.7168L16.2453 11.5635L15 11.5ZM14.9922 11.6533L13.7517 11.5274C13.7398 11.6444 13.6444 11.7398 13.5274 11.7517L13.6533 12.9922L13.7793 14.2327C15.0743 14.1012 16.1012 13.0743 16.2327 11.7793L14.9922 11.6533ZM13.6533 12.9922L13.5899 11.7469L13.4365 11.7547L13.5 13L13.5635 14.2453L13.7168 14.2374L13.6533 12.9922ZM13.5 13V11.7531H1.5V13V14.2469H13.5V13ZM1.5 13L1.56345 11.7547L1.41013 11.7469L1.34668 12.9922L1.28323 14.2374L1.43655 14.2453L1.5 13ZM1.34668 12.9922L1.47263 11.7517C1.35564 11.7398 1.26019 11.6444 1.24831 11.5274L0.0078125 11.6533L-1.23269 11.7793C-1.10121 13.0743 -0.0742617 14.1012 1.22073 14.2327L1.34668 12.9922ZM0.0078125 11.6533L1.25307 11.5899L1.24526 11.4365L0 11.5L-1.24526 11.5635L-1.23745 11.7168L0.0078125 11.6533ZM0 11.5H1.24688V3.5H0H-1.24688V11.5H0ZM0 3.5H1.24688C1.24688 3.36979 1.34623 3.26114 1.47263 3.24831L1.34668 2.00781L1.22073 0.767315C-0.165678 0.908076 -1.24688 2.07688 -1.24688 3.5H0ZM1.34668 2.00781L1.41013 3.25307L1.56345 3.24526L1.5 2L1.43655 0.75474L1.28323 0.762553L1.34668 2.00781ZM1.5 2V3.24688H13.5V2V0.753125H1.5V2ZM13.5 2L13.4365 3.24526L13.5899 3.25307L13.6533 2.00781L13.7168 0.762553L13.5635 0.75474L13.5 2ZM1.5 2.98438V1.7375C0.526598 1.7375 -0.2625 2.5266 -0.2625 3.5H0.984375H2.23125C2.23125 3.90386 1.90386 4.23125 1.5 4.23125V2.98438ZM0.984375 3.5H-0.2625V11.5H0.984375H2.23125V3.5H0.984375ZM0.984375 11.5H-0.2625C-0.2625 12.4734 0.526598 13.2625 1.5 13.2625L1.5 12.0156L1.5 10.7688C1.90386 10.7688 2.23125 11.0961 2.23125 11.5H0.984375ZM1.5 12.0156V13.2625H10V12.0156V10.7688H1.5V12.0156ZM10 12.0156H11.2469V2.98438H10H8.75313V12.0156H10ZM10 2.98438V1.7375H1.5V2.98438V4.23125H10V2.98438ZM11 12.0156V13.2625H13.5V12.0156V10.7688H11V12.0156ZM13.5 12.0156V13.2625C14.4734 13.2625 15.2625 12.4734 15.2625 11.5H14.0156H12.7688C12.7688 11.0961 13.0961 10.7688 13.5 10.7688V12.0156ZM14.0156 11.5H15.2625V3.5H14.0156H12.7688V11.5H14.0156ZM14.0156 3.5L15.2625 3.5C15.2625 2.5266 14.4734 1.7375 13.5 1.7375L13.5 2.98438L13.5 4.23125C13.0961 4.23125 12.7688 3.90386 12.7688 3.5L14.0156 3.5ZM13.5 2.98438V1.7375H11V2.98438V4.23125H13.5V2.98438ZM11 2.98438H9.75313V12.0156H11H12.2469V2.98438H11Z",
5539 fill: "currentColor",
5540 mask: "url(#a)",
5541 })
5542 }
5543
5544 const WIDTH: Option<&'static str> = Some("15");
5545 const HEIGHT: Option<&'static str> = Some("15");
5546 const FILL: Option<&'static str> = Some("none");
5547 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5548
5549}
5550
5551#[derive(Default, Copy, Clone, PartialEq, Eq)]
5552pub struct PanelRightMinimized;
5553
5554impl IconShape for PanelRightMinimized {
5555 fn child_elements(&self) -> Element {
5556 rsx!(mask {
5557 fill: "currentColor",
5558 id: "a",
5559 }
5560path {
5561 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H1.5ZM11.5 4C11.7761 4 12 4.22386 12 4.5V10.5C12 10.7761 11.7761 11 11.5 11C11.2239 11 11 10.7761 11 10.5V4.5C11 4.22386 11.2239 4 11.5 4Z",
5562 }
5563path {
5564 d: "M13.6533 2.00781C14.4097 2.08461 15 2.72334 15 3.5V11.5L14.9922 11.6533C14.9205 12.3593 14.3593 12.9205 13.6533 12.9922L13.5 13H1.5L1.34668 12.9922C0.64069 12.9205 0.0794913 12.3593 0.0078125 11.6533L0 11.5V3.5C0 2.72334 0.590277 2.08461 1.34668 2.00781L1.5 2H13.5L13.6533 2.00781ZM1.5 2.98438C1.21523 2.98438 0.984375 3.21523 0.984375 3.5V11.5C0.984375 11.7848 1.21523 12.0156 1.5 12.0156H13.5C13.7848 12.0156 14.0156 11.7848 14.0156 11.5V3.5C14.0156 3.21523 13.7848 2.98438 13.5 2.98438H1.5ZM11.5 4C11.7761 4 12 4.22386 12 4.5V10.5C12 10.7761 11.7761 11 11.5 11C11.2239 11 11 10.7761 11 10.5V4.5C11 4.22386 11.2239 4 11.5 4Z",
5565 fill: "currentColor",
5566 }
5567path {
5568 d: "M13.6533 2.00781L13.7793 0.767315L13.7481 0.764148L13.7168 0.762553L13.6533 2.00781ZM15 3.5H16.2469H15ZM15 11.5L16.2453 11.5635L16.2469 11.5317V11.5H15ZM14.9922 11.6533L16.2327 11.7793L16.2359 11.7481L16.2374 11.7168L14.9922 11.6533ZM13.6533 12.9922L13.7168 14.2374L13.7481 14.2359L13.7793 14.2327L13.6533 12.9922ZM13.5 13V14.2469H13.5317L13.5635 14.2453L13.5 13ZM1.5 13L1.43655 14.2453L1.46825 14.2469H1.5V13ZM1.34668 12.9922L1.22073 14.2327L1.25192 14.2359L1.28323 14.2374L1.34668 12.9922ZM0.0078125 11.6533L-1.23745 11.7168L-1.23585 11.7481L-1.23269 11.7793L0.0078125 11.6533ZM0 11.5H-1.24688V11.5317L-1.24526 11.5635L0 11.5ZM1.34668 2.00781L1.28323 0.762553L1.25192 0.764148L1.22073 0.767315L1.34668 2.00781ZM1.5 2V0.753125H1.46825L1.43655 0.75474L1.5 2ZM13.5 2L13.5635 0.75474L13.5317 0.753125H13.5V2ZM1.5 2.98438V1.7375V2.98438ZM0.984375 11.5H-0.2625H0.984375ZM1.5 12.0156L1.5 13.2625H1.5V12.0156ZM13.5 12.0156V13.2625V12.0156ZM14.0156 3.5H15.2625V3.5L14.0156 3.5ZM13.5 2.98438L13.5 1.7375H13.5V2.98438ZM12 4.5H13.2469H12ZM12 10.5H13.2469H12ZM11 10.5H9.75313H11ZM11 4.5L9.75313 4.5V4.5H11ZM13.6533 2.00781L13.5274 3.24831C13.6538 3.26114 13.7531 3.36979 13.7531 3.5H15H16.2469C16.2469 2.07688 15.1657 0.908077 13.7793 0.767315L13.6533 2.00781ZM15 3.5H13.7531V11.5H15H16.2469V3.5H15ZM15 11.5L13.7547 11.4365L13.7469 11.5899L14.9922 11.6533L16.2374 11.7168L16.2453 11.5635L15 11.5ZM14.9922 11.6533L13.7517 11.5274C13.7398 11.6444 13.6444 11.7398 13.5274 11.7517L13.6533 12.9922L13.7793 14.2327C15.0743 14.1012 16.1012 13.0743 16.2327 11.7793L14.9922 11.6533ZM13.6533 12.9922L13.5899 11.7469L13.4365 11.7547L13.5 13L13.5635 14.2453L13.7168 14.2374L13.6533 12.9922ZM13.5 13V11.7531H1.5V13V14.2469H13.5V13ZM1.5 13L1.56345 11.7547L1.41013 11.7469L1.34668 12.9922L1.28323 14.2374L1.43655 14.2453L1.5 13ZM1.34668 12.9922L1.47263 11.7517C1.35564 11.7398 1.26019 11.6444 1.24831 11.5274L0.0078125 11.6533L-1.23269 11.7793C-1.10121 13.0743 -0.0742617 14.1012 1.22073 14.2327L1.34668 12.9922ZM0.0078125 11.6533L1.25307 11.5899L1.24526 11.4365L0 11.5L-1.24526 11.5635L-1.23745 11.7168L0.0078125 11.6533ZM0 11.5H1.24688V3.5H0H-1.24688V11.5H0ZM0 3.5H1.24688C1.24688 3.36979 1.34623 3.26114 1.47263 3.24831L1.34668 2.00781L1.22073 0.767315C-0.165678 0.908076 -1.24688 2.07688 -1.24688 3.5H0ZM1.34668 2.00781L1.41013 3.25307L1.56345 3.24526L1.5 2L1.43655 0.75474L1.28323 0.762553L1.34668 2.00781ZM1.5 2V3.24688H13.5V2V0.753125H1.5V2ZM13.5 2L13.4365 3.24526L13.5899 3.25307L13.6533 2.00781L13.7168 0.762553L13.5635 0.75474L13.5 2ZM1.5 2.98438V1.7375C0.526598 1.7375 -0.2625 2.5266 -0.2625 3.5H0.984375H2.23125C2.23125 3.90386 1.90386 4.23125 1.5 4.23125V2.98438ZM0.984375 3.5H-0.2625V11.5H0.984375H2.23125V3.5H0.984375ZM0.984375 11.5H-0.2625C-0.2625 12.4734 0.526598 13.2625 1.5 13.2625L1.5 12.0156L1.5 10.7688C1.90386 10.7688 2.23125 11.0961 2.23125 11.5H0.984375ZM1.5 12.0156V13.2625H13.5V12.0156V10.7688H1.5V12.0156ZM13.5 12.0156V13.2625C14.4734 13.2625 15.2625 12.4734 15.2625 11.5H14.0156H12.7688C12.7688 11.0961 13.0961 10.7688 13.5 10.7688V12.0156ZM14.0156 11.5H15.2625V3.5H14.0156H12.7688V11.5H14.0156ZM14.0156 3.5L15.2625 3.5C15.2625 2.5266 14.4734 1.7375 13.5 1.7375L13.5 2.98438L13.5 4.23125C13.0961 4.23125 12.7688 3.90386 12.7688 3.5L14.0156 3.5ZM13.5 2.98438V1.7375H1.5V2.98438V4.23125H13.5V2.98438ZM11.5 4V5.24688C11.0875 5.24688 10.7531 4.91249 10.7531 4.5H12H13.2469C13.2469 3.53523 12.4648 2.75312 11.5 2.75312V4ZM12 4.5H10.7531V10.5H12H13.2469V4.5H12ZM12 10.5H10.7531C10.7531 10.0875 11.0875 9.75313 11.5 9.75313V11V12.2469C12.4648 12.2469 13.2469 11.4648 13.2469 10.5H12ZM11.5 11V9.75313C11.9125 9.75313 12.2469 10.0875 12.2469 10.5H11H9.75313C9.75313 11.4648 10.5352 12.2469 11.5 12.2469V11ZM11 10.5H12.2469V4.5H11H9.75313V10.5H11ZM11 4.5L12.2469 4.5C12.2469 4.91249 11.9125 5.24688 11.5 5.24688V4V2.75312C10.5352 2.75312 9.75313 3.53523 9.75313 4.5L11 4.5Z",
5569 fill: "currentColor",
5570 mask: "url(#a)",
5571 })
5572 }
5573
5574 const WIDTH: Option<&'static str> = Some("15");
5575 const HEIGHT: Option<&'static str> = Some("15");
5576 const FILL: Option<&'static str> = Some("none");
5577 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5578
5579}
5580
5581#[derive(Default, Copy, Clone, PartialEq, Eq)]
5582pub struct PaperPlane;
5583
5584impl IconShape for PaperPlane {
5585 fn child_elements(&self) -> Element {
5586 rsx!(path {
5587 d: "M0.627945 1.166C0.772731 1.00471 1.00504 0.954914 1.20314 1.04295L14.7031 7.04295C14.8837 7.1232 15 7.3024 15 7.49998C15 7.69758 14.8837 7.87676 14.7031 7.95702L1.20314 13.957C1.00503 14.0451 0.772733 13.9953 0.627945 13.834C0.483193 13.6724 0.459056 13.4354 0.568375 13.248L3.92091 7.49998L0.568375 1.75194C0.459065 1.56453 0.483186 1.3276 0.627945 1.166ZM4.84474 7.09959H9.00002L9.08107 7.10838C9.2631 7.14586 9.40039 7.30686 9.40041 7.49998C9.40041 7.69311 9.26311 7.8541 9.08107 7.89159L9.00002 7.90037H4.84474L2.21193 12.4131L13.2686 7.49998L2.21193 2.58592L4.84474 7.09959Z",
5588 fill: "currentColor",
5589 })
5590 }
5591
5592 const WIDTH: Option<&'static str> = Some("15");
5593 const HEIGHT: Option<&'static str> = Some("15");
5594 const FILL: Option<&'static str> = Some("none");
5595 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5596
5597}
5598
5599#[derive(Default, Copy, Clone, PartialEq, Eq)]
5600pub struct Pause;
5601
5602impl IconShape for Pause {
5603 fn child_elements(&self) -> Element {
5604 rsx!(path {
5605 d: "M5.49982 2.19999C5.80351 2.19999 6.04952 2.44613 6.04962 2.74979V12.2498C6.04962 12.5536 5.80357 12.7996 5.49982 12.7996C5.19615 12.7995 4.95001 12.5535 4.95001 12.2498V2.74979C4.95012 2.44619 5.19622 2.20009 5.49982 2.19999ZM9.49982 2.19999C9.80351 2.19999 10.0495 2.44613 10.0496 2.74979V12.2498C10.0496 12.5536 9.80357 12.7996 9.49982 12.7996C9.19615 12.7995 8.95001 12.5535 8.95001 12.2498V2.74979C8.95012 2.44619 9.19622 2.20009 9.49982 2.19999Z",
5606 fill: "currentColor",
5607 })
5608 }
5609
5610 const WIDTH: Option<&'static str> = Some("15");
5611 const HEIGHT: Option<&'static str> = Some("15");
5612 const FILL: Option<&'static str> = Some("none");
5613 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5614
5615}
5616
5617#[derive(Default, Copy, Clone, PartialEq, Eq)]
5618pub struct Pencil1;
5619
5620impl IconShape for Pencil1 {
5621 fn child_elements(&self) -> Element {
5622 rsx!(path {
5623 d: "M11.2246 1.08204C11.4187 0.953875 11.6826 0.975633 11.8535 1.14649L13.8535 3.14649L13.9179 3.22462C14.0461 3.41869 14.0244 3.68266 13.8535 3.85352L6.42186 11.2852C6.35442 11.3526 6.27771 11.4105 6.19432 11.4561L6.10838 11.4971L2.69725 12.96C2.50933 13.0405 2.29103 12.9981 2.14647 12.8535C2.0019 12.709 1.95949 12.4907 2.04002 12.3027L3.50291 8.89161L3.54393 8.80567C3.58951 8.72228 3.6474 8.64556 3.71483 8.57813L11.1465 1.14649L11.2246 1.08204ZM4.42186 9.28516L3.78025 10.7803L4.21775 11.2178L5.71483 10.5781L12.7929 3.50001L11.5 2.20704L4.42186 9.28516Z",
5624 fill: "currentColor",
5625 })
5626 }
5627
5628 const WIDTH: Option<&'static str> = Some("15");
5629 const HEIGHT: Option<&'static str> = Some("15");
5630 const FILL: Option<&'static str> = Some("none");
5631 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5632
5633}
5634
5635#[derive(Default, Copy, Clone, PartialEq, Eq)]
5636pub struct Pencil2;
5637
5638impl IconShape for Pencil2 {
5639 fn child_elements(&self) -> Element {
5640 rsx!(path {
5641 d: "M8.99989 3.00009H4.90033C4.47205 3.00009 4.18007 3.00026 3.95503 3.01864C3.7361 3.03656 3.624 3.06964 3.54586 3.10946C3.35789 3.2053 3.20518 3.35801 3.10934 3.54598C3.06952 3.62413 3.03643 3.73623 3.01852 3.95516C3.00013 4.1802 2.99996 4.47217 2.99996 4.90046V11.0996C2.99996 11.5279 3.00013 11.8199 3.01852 12.0449C3.03643 12.2638 3.06952 12.3759 3.10934 12.4541L3.19137 12.5879C3.28362 12.7147 3.4048 12.8187 3.54586 12.8906L3.61226 12.9189C3.68699 12.9457 3.79086 12.968 3.95503 12.9814C4.18007 12.9998 4.47205 13 4.90033 13H11.0995C11.5278 13 11.8197 12.9998 12.0448 12.9814C12.2637 12.9635 12.3758 12.9304 12.4539 12.8906L12.5877 12.8086C12.7146 12.7163 12.8185 12.5951 12.8905 12.4541L12.9188 12.3877C12.9455 12.3129 12.9679 12.2091 12.9813 12.0449C12.9997 11.8199 12.9998 11.5279 12.9998 11.0996V7.00004L13.9998 6.00005V11.0996C13.9998 11.5114 13.9999 11.8507 13.9774 12.126C13.9602 12.3366 13.9282 12.5345 13.8612 12.7226L13.7821 12.9082C13.6143 13.2374 13.359 13.5129 13.0457 13.705L12.908 13.7822C12.6654 13.9058 12.4068 13.9545 12.1258 13.9775C11.8506 14 11.5113 14 11.0995 14H4.90033C4.48855 14 4.14918 14 3.87398 13.9775C3.66329 13.9603 3.46543 13.9283 3.2773 13.8613L3.09176 13.7822C2.76253 13.6144 2.48704 13.3591 2.29489 13.0459L2.21775 12.9082C2.09412 12.6655 2.0454 12.407 2.02244 12.126C1.99995 11.8507 1.99998 11.5114 1.99998 11.0996V4.90046C1.99998 4.48867 1.99995 4.14931 2.02244 3.8741C2.0454 3.59309 2.09412 3.33452 2.21775 3.09189C2.40948 2.71564 2.71551 2.40961 3.09176 2.21787C3.3344 2.09424 3.59297 2.04553 3.87398 2.02256C4.14918 2.00008 4.48855 2.0001 4.90033 2.0001H9.99988L8.99989 3.00009ZM12.2245 1.08214C12.4185 0.954079 12.6825 0.975863 12.8534 1.1466L14.8533 3.14657L14.9178 3.2247C15.0459 3.41873 15.0241 3.68273 14.8533 3.8536L10.911 7.79593C10.8351 7.87182 10.7472 7.93539 10.6512 7.98343L6.72355 9.94727C6.53106 10.0435 6.29858 10.0057 6.14641 9.85352C5.99432 9.70134 5.95644 9.46883 6.05266 9.27638L8.0165 5.34869C8.06454 5.25275 8.12813 5.16481 8.204 5.08893L12.1463 1.1466L12.2245 1.08214ZM8.91102 5.79595L7.87197 7.8721L8.12685 8.12698L10.204 7.08891L13.7928 3.50008L12.4998 2.20713L8.91102 5.79595Z",
5642 fill: "currentColor",
5643 })
5644 }
5645
5646 const WIDTH: Option<&'static str> = Some("15");
5647 const HEIGHT: Option<&'static str> = Some("15");
5648 const FILL: Option<&'static str> = Some("none");
5649 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5650
5651}
5652
5653#[derive(Default, Copy, Clone, PartialEq, Eq)]
5654pub struct People;
5655
5656impl IconShape for People {
5657 fn child_elements(&self) -> Element {
5658 rsx!(path {
5659 d: "M5 8.90039C6.43913 8.90046 7.6804 9.15211 8.5752 9.75488C9.50225 10.3797 10 11.3432 10 12.6006C9.99965 12.8763 9.77567 13.1003 9.5 13.1006C9.22426 13.1004 9.00035 12.8763 9 12.6006C9.00002 11.643 8.64164 11.0053 8.0166 10.584C7.35911 10.1411 6.3499 9.90046 5 9.90039C3.65022 9.90044 2.6409 10.1412 1.9834 10.584C1.35846 11.0053 1 11.643 1 12.6006C0.999652 12.8763 0.775703 13.1003 0.5 13.1006C0.224252 13.1004 0.000348561 12.8763 0 12.6006C0 11.3434 0.49706 10.3797 1.42383 9.75488C2.31864 9.15205 3.56076 8.90044 5 8.90039ZM9.97461 8.90039C11.4139 8.9004 12.6549 9.15204 13.5498 9.75488C14.4771 10.3797 14.9746 11.343 14.9746 12.6006C14.9743 12.8764 14.7505 13.1006 14.4746 13.1006C14.1989 13.1004 13.975 12.8763 13.9746 12.6006C13.9746 11.6428 13.6165 11.0053 12.9912 10.584C12.4734 10.2352 11.7376 10.0138 10.7891 9.93457C10.5558 9.55417 10.2666 9.20728 9.91992 8.90137C9.93812 8.90129 9.95635 8.90039 9.97461 8.90039ZM5.00098 1.84961C6.74004 1.8502 8.15018 3.26085 8.15039 5C8.15018 6.73915 6.74004 8.14882 5.00098 8.14941C3.26141 8.14941 1.8508 6.73951 1.85059 5C1.8508 3.26048 3.26141 1.84961 5.00098 1.84961ZM9.97559 1.84961C11.7149 1.84994 13.1248 3.26069 13.125 5C13.1248 6.73931 11.7149 8.14908 9.97559 8.14941C9.45224 8.14941 8.95974 8.01975 8.52539 7.79395C8.73332 7.53194 8.91351 7.24709 9.05957 6.94238C9.33776 7.07372 9.64758 7.14941 9.97559 7.14941C11.1626 7.14908 12.1248 6.18703 12.125 5C12.1248 3.81297 11.1626 2.84994 9.97559 2.84961C9.64775 2.84961 9.33765 2.92435 9.05957 3.05566C8.91343 2.75109 8.73336 2.46598 8.52539 2.2041C8.95962 1.97833 9.45244 1.84961 9.97559 1.84961ZM5.00098 2.84961C3.81369 2.84961 2.8508 3.81277 2.85059 5C2.8508 6.18723 3.8137 7.14941 5.00098 7.14941C6.18775 7.14882 7.15018 6.18686 7.15039 5C7.15018 3.81313 6.18775 2.8502 5.00098 2.84961Z",
5660 fill: "currentColor",
5661 })
5662 }
5663
5664 const WIDTH: Option<&'static str> = Some("15");
5665 const HEIGHT: Option<&'static str> = Some("15");
5666 const FILL: Option<&'static str> = Some("none");
5667 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5668
5669}
5670
5671#[derive(Default, Copy, Clone, PartialEq, Eq)]
5672pub struct Person;
5673
5674impl IconShape for Person {
5675 fn child_elements(&self) -> Element {
5676 rsx!(path {
5677 d: "M7.50061 0.875C9.50223 0.87533 11.1254 2.49835 11.1256 4.5C11.1254 6.15524 10.0147 7.54948 8.49866 7.9834C9.69596 8.12806 10.7226 8.55058 11.4957 9.3125C12.4775 10.2802 12.9743 11.7208 12.9742 13.6006C12.9739 13.8626 12.7617 14.0752 12.4996 14.0752C12.2377 14.075 12.0254 13.8625 12.025 13.6006C12.0251 11.8806 11.5718 10.7206 10.8287 9.98828C10.0843 9.25473 8.97269 8.87501 7.49963 8.875C6.02676 8.87507 4.91492 9.25482 4.17053 9.98828C3.42772 10.7206 2.97424 11.8809 2.97424 13.6006C2.9739 13.8626 2.76176 14.0752 2.49963 14.0752C2.23769 14.075 2.02537 13.8625 2.02502 13.6006C2.02502 11.7211 2.52208 10.2802 3.50354 9.3125C4.27606 8.55116 5.30254 8.12935 6.49866 7.98438C4.98407 7.5496 3.87578 6.15428 3.87561 4.5C3.87582 2.49815 5.49871 0.875 7.50061 0.875ZM7.50061 1.82422C6.02338 1.82422 4.82504 3.02282 4.82483 4.5C4.82504 5.97718 6.02338 7.1748 7.50061 7.1748C8.97756 7.17447 10.1752 5.97698 10.1754 4.5C10.1752 3.02302 8.97756 1.82455 7.50061 1.82422Z",
5678 fill: "currentColor",
5679 })
5680 }
5681
5682 const WIDTH: Option<&'static str> = Some("15");
5683 const HEIGHT: Option<&'static str> = Some("15");
5684 const FILL: Option<&'static str> = Some("none");
5685 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5686
5687}
5688
5689#[derive(Default, Copy, Clone, PartialEq, Eq)]
5690pub struct PieChart;
5691
5692impl IconShape for PieChart {
5693 fn child_elements(&self) -> Element {
5694 rsx!(path {
5695 d: "M7.5004 0.850006C11.1729 0.850217 14.1498 3.82765 14.1498 7.5004C14.1498 11.1732 11.1729 14.1506 7.5004 14.1508C3.82767 14.1508 0.850006 11.1733 0.850006 7.5004C0.850024 3.82752 3.82768 0.850006 7.5004 0.850006ZM7.5004 1.85001C4.38003 1.85001 1.85002 4.37974 1.85001 7.5004C1.85001 10.6211 4.38002 13.1508 7.5004 13.1508C10.6206 13.1506 13.1498 10.6209 13.1498 7.5004C13.1498 4.37987 10.6206 1.85022 7.5004 1.85001ZM7.5004 3.10001C9.93026 3.10022 11.9008 5.07026 11.9008 7.5004C11.9008 7.66946 11.89 7.83629 11.8715 8.0004H7.0004V3.12833C7.16438 3.10979 7.33146 3.10001 7.5004 3.10001Z",
5696 fill: "currentColor",
5697 })
5698 }
5699
5700 const WIDTH: Option<&'static str> = Some("15");
5701 const HEIGHT: Option<&'static str> = Some("15");
5702 const FILL: Option<&'static str> = Some("none");
5703 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5704
5705}
5706
5707#[derive(Default, Copy, Clone, PartialEq, Eq)]
5708pub struct Pilcrow;
5709
5710impl IconShape for Pilcrow {
5711 fn child_elements(&self) -> Element {
5712 rsx!(path {
5713 clip_rule: "evenodd",
5714 d: "M3 5.5C3 7.983 4.99169 9 7 9V12.5C7 12.7761 7.22386 13 7.5 13C7.77614 13 8 12.7761 8 12.5V9V3.0998H9V12.5C9 12.7761 9.22386 13 9.5 13C9.77614 13 10 12.7761 10 12.5V3.0998H11.5L11.6113 3.08906C11.8617 3.03762 12.0498 2.81564 12.0498 2.55C12.0498 2.28436 11.8617 2.06238 11.6113 2.01094L11.5 2.0002H9.51411C9.50942 2.00007 9.50472 2 9.5 2C9.49528 2 9.49058 2.00007 9.48589 2.0002H8V2H7.5H7C4.99169 2 3 3.017 3 5.5Z",
5715 fill: "currentColor",
5716 fill_rule: "evenodd",
5717 })
5718 }
5719
5720 const WIDTH: Option<&'static str> = Some("15");
5721 const HEIGHT: Option<&'static str> = Some("15");
5722 const FILL: Option<&'static str> = Some("none");
5723 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5724
5725}
5726
5727#[derive(Default, Copy, Clone, PartialEq, Eq)]
5728pub struct PinBottom;
5729
5730impl IconShape for PinBottom {
5731 fn child_elements(&self) -> Element {
5732 rsx!(path {
5733 d: "M7.7478 10.8757C7.59795 10.9748 7.40156 10.9749 7.25171 10.8757L7.1814 10.8181L3.9314 7.56811C3.75592 7.39236 3.75575 7.10704 3.9314 6.9314C4.10705 6.75584 4.39239 6.75595 4.56812 6.9314L7.04956 9.41284L7.04956 1.49976C7.04969 1.25139 7.25138 1.04965 7.49976 1.04956C7.74821 1.04956 7.94983 1.25133 7.94995 1.49976L7.94995 9.41284L10.4314 6.9314L10.5017 6.87378C10.6763 6.75837 10.9143 6.77781 11.0681 6.9314C11.2219 7.08519 11.2411 7.32313 11.1257 7.4978L11.0681 7.56811L7.81812 10.8181L7.7478 10.8757ZM1.49976 13.95C1.25132 13.9498 1.04956 13.7482 1.04956 13.4998C1.04967 13.2514 1.25138 13.0497 1.49976 13.0496L13.4998 13.0496C13.7482 13.0496 13.9498 13.2513 13.95 13.4998C13.95 13.7483 13.7483 13.95 13.4998 13.95L1.49976 13.95Z",
5734 fill: "currentColor",
5735 })
5736 }
5737
5738 const WIDTH: Option<&'static str> = Some("15");
5739 const HEIGHT: Option<&'static str> = Some("15");
5740 const FILL: Option<&'static str> = Some("none");
5741 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5742
5743}
5744
5745#[derive(Default, Copy, Clone, PartialEq, Eq)]
5746pub struct PinLeft;
5747
5748impl IconShape for PinLeft {
5749 fn child_elements(&self) -> Element {
5750 rsx!(path {
5751 d: "M5.12427 7.7478C5.02515 7.59795 5.02515 7.40156 5.12427 7.25171L5.18189 7.1814L8.43189 3.9314C8.60764 3.75592 8.89296 3.75575 9.0686 3.9314C9.24416 4.10705 9.24405 4.39239 9.0686 4.56812L6.58716 7.04956L14.5002 7.04956C14.7486 7.04969 14.9503 7.25138 14.9504 7.49976C14.9504 7.74821 14.7487 7.94983 14.5002 7.94995L6.58716 7.94995L9.0686 10.4314L9.12622 10.5017C9.24163 10.6763 9.22219 10.9143 9.0686 11.0681C8.91481 11.2219 8.67687 11.2411 8.5022 11.1257L8.43189 11.0681L5.18189 7.81812L5.12427 7.7478ZM2.05005 1.49976C2.05016 1.25132 2.25178 1.04956 2.50025 1.04956C2.74862 1.04967 2.95034 1.25138 2.95044 1.49976L2.95044 13.4998C2.95044 13.7482 2.74868 13.9498 2.50024 13.95C2.25172 13.95 2.05005 13.7483 2.05005 13.4998L2.05005 1.49976Z",
5752 fill: "currentColor",
5753 })
5754 }
5755
5756 const WIDTH: Option<&'static str> = Some("15");
5757 const HEIGHT: Option<&'static str> = Some("15");
5758 const FILL: Option<&'static str> = Some("none");
5759 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5760
5761}
5762
5763#[derive(Default, Copy, Clone, PartialEq, Eq)]
5764pub struct PinRight;
5765
5766impl IconShape for PinRight {
5767 fn child_elements(&self) -> Element {
5768 rsx!(path {
5769 d: "M9.87573 7.2522C9.97485 7.40205 9.97485 7.59844 9.87573 7.74829L9.81811 7.8186L6.56811 11.0686C6.39236 11.2441 6.10705 11.2443 5.9314 11.0686C5.75584 10.8929 5.75595 10.6076 5.9314 10.4319L8.41284 7.95044L0.499756 7.95044C0.251389 7.95031 0.0496518 7.74862 0.0495603 7.50024C0.0495603 7.25179 0.251333 7.05017 0.499756 7.05005L8.41284 7.05005L5.9314 4.5686L5.87378 4.49829C5.75837 4.3237 5.77781 4.08572 5.9314 3.93188C6.08519 3.77809 6.32313 3.75888 6.4978 3.87427L6.56812 3.93188L9.81811 7.18188L9.87573 7.2522ZM12.95 13.5002C12.9498 13.7487 12.7482 13.9504 12.4998 13.9504C12.2514 13.9503 12.0497 13.7486 12.0496 13.5002L12.0496 1.50024C12.0496 1.25178 12.2513 1.05015 12.4998 1.05005C12.7483 1.05005 12.95 1.25172 12.95 1.50024L12.95 13.5002Z",
5770 fill: "currentColor",
5771 })
5772 }
5773
5774 const WIDTH: Option<&'static str> = Some("15");
5775 const HEIGHT: Option<&'static str> = Some("15");
5776 const FILL: Option<&'static str> = Some("none");
5777 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5778
5779}
5780
5781#[derive(Default, Copy, Clone, PartialEq, Eq)]
5782pub struct PinTop;
5783
5784impl IconShape for PinTop {
5785 fn child_elements(&self) -> Element {
5786 rsx!(path {
5787 d: "M7.2522 4.12427C7.40205 4.02515 7.59844 4.02515 7.74829 4.12427L7.8186 4.18188L11.0686 7.43188C11.2441 7.60764 11.2443 7.89295 11.0686 8.0686C10.8929 8.24416 10.6076 8.24405 10.4319 8.0686L7.95044 5.58716V13.5002C7.95032 13.7486 7.74862 13.9503 7.50024 13.9504C7.25179 13.9504 7.05017 13.7487 7.05005 13.5002V5.58716L4.5686 8.0686L4.49829 8.12622C4.3237 8.24163 4.08572 8.22219 3.93188 8.0686C3.77809 7.91481 3.75888 7.67687 3.87427 7.5022L3.93188 7.43188L7.18188 4.18188L7.2522 4.12427ZM13.5002 1.05005C13.7487 1.05015 13.9504 1.25178 13.9504 1.50024C13.9503 1.74862 13.7486 1.95033 13.5002 1.95044H1.50024C1.25178 1.95044 1.05015 1.74868 1.05005 1.50024C1.05005 1.25172 1.25172 1.05005 1.50024 1.05005H13.5002Z",
5788 fill: "currentColor",
5789 })
5790 }
5791
5792 const WIDTH: Option<&'static str> = Some("15");
5793 const HEIGHT: Option<&'static str> = Some("15");
5794 const FILL: Option<&'static str> = Some("none");
5795 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5796
5797}
5798
5799#[derive(Default, Copy, Clone, PartialEq, Eq)]
5800pub struct Play;
5801
5802impl IconShape for Play {
5803 fn child_elements(&self) -> Element {
5804 rsx!(path {
5805 d: "M3.24219 2.32213C3.39223 2.23169 3.57845 2.22573 3.7334 2.30748L12.7334 7.05748C12.8974 7.14403 13 7.31443 13 7.49986C13 7.68529 12.8974 7.85569 12.7334 7.94224L3.7334 12.6922C3.57845 12.774 3.39223 12.768 3.24219 12.6776C3.09211 12.5871 3 12.4251 3 12.2499V2.74986C3 2.57461 3.09211 2.41261 3.24219 2.32213ZM4 11.4198L11.4277 7.49986L4 3.57896V11.4198Z",
5806 fill: "currentColor",
5807 })
5808 }
5809
5810 const WIDTH: Option<&'static str> = Some("15");
5811 const HEIGHT: Option<&'static str> = Some("15");
5812 const FILL: Option<&'static str> = Some("none");
5813 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5814
5815}
5816
5817#[derive(Default, Copy, Clone, PartialEq, Eq)]
5818pub struct Plus;
5819
5820impl IconShape for Plus {
5821 fn child_elements(&self) -> Element {
5822 rsx!(path {
5823 d: "M7.5 2.25C7.77614 2.25 8 2.47386 8 2.75V7H12.25C12.5261 7 12.75 7.22386 12.75 7.5C12.75 7.77614 12.5261 8 12.25 8H8V12.25C8 12.5261 7.77614 12.75 7.5 12.75C7.22386 12.75 7 12.5261 7 12.25V8H2.75C2.47386 8 2.25 7.77614 2.25 7.5C2.25 7.22386 2.47386 7 2.75 7H7V2.75C7 2.47386 7.22386 2.25 7.5 2.25Z",
5824 fill: "currentColor",
5825 })
5826 }
5827
5828 const WIDTH: Option<&'static str> = Some("15");
5829 const HEIGHT: Option<&'static str> = Some("15");
5830 const FILL: Option<&'static str> = Some("none");
5831 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5832
5833}
5834
5835#[derive(Default, Copy, Clone, PartialEq, Eq)]
5836pub struct PlusCircled;
5837
5838impl IconShape for PlusCircled {
5839 fn child_elements(&self) -> Element {
5840 rsx!(path {
5841 d: "M7.49915 0.876907C11.1566 0.876907 14.1218 3.84164 14.1222 7.49898C14.1222 11.1566 11.1568 14.122 7.49915 14.122C3.84181 14.1216 0.877075 11.1564 0.877075 7.49898C0.877487 3.8419 3.84206 0.877318 7.49915 0.876907ZM7.49915 1.82613C4.36673 1.82654 1.82671 4.36657 1.82629 7.49898C1.82629 10.6317 4.36648 13.1714 7.49915 13.1718C10.6321 13.1718 13.172 10.632 13.172 7.49898C13.1716 4.36631 10.6319 1.82613 7.49915 1.82613ZM7.50012 3.99995C7.7762 4 8.00009 4.22387 8.00012 4.49995V6.99995H10.5001C10.7762 7 11.0001 7.22387 11.0001 7.49995C11.0001 7.77607 10.7762 7.9999 10.5001 7.99995H8.00012V10.5C8.00012 10.7761 7.77622 10.9999 7.50012 11C7.22398 11 7.00012 10.7761 7.00012 10.5V7.99995H4.50012C4.22398 7.99995 4.00012 7.7761 4.00012 7.49995C4.00015 7.22384 4.224 6.99995 4.50012 6.99995H7.00012V4.49995C7.00015 4.22384 7.224 3.99995 7.50012 3.99995Z",
5842 fill: "currentColor",
5843 })
5844 }
5845
5846 const WIDTH: Option<&'static str> = Some("15");
5847 const HEIGHT: Option<&'static str> = Some("15");
5848 const FILL: Option<&'static str> = Some("none");
5849 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5850
5851}
5852
5853#[derive(Default, Copy, Clone, PartialEq, Eq)]
5854pub struct QuestionMark;
5855
5856impl IconShape for QuestionMark {
5857 fn child_elements(&self) -> Element {
5858 rsx!(path {
5859 d: "M7.50024 11.6071C7.98326 11.6072 8.37501 11.9991 8.37524 12.4821C8.37524 12.9653 7.9834 13.357 7.50024 13.3571C7.01699 13.3571 6.62524 12.9653 6.62524 12.4821C6.62547 11.999 7.01714 11.6071 7.50024 11.6071ZM7.50024 0.77504C9.21883 0.775142 11.0754 2.12786 11.0754 4.10023C11.0754 5.75307 10.1328 6.57417 9.38208 7.23988C8.62999 7.90686 8.07544 8.41581 8.07544 9.50063C8.07511 9.81785 7.81752 10.0747 7.50024 10.0748C7.18288 10.0748 6.92538 9.81791 6.92505 9.50063C6.92505 7.85828 7.87058 7.04271 8.61841 6.37953C9.36764 5.7151 9.92498 5.19868 9.92505 4.10023C9.92505 2.91132 8.74295 1.92553 7.50024 1.92543C6.25747 1.92543 5.07544 2.91126 5.07544 4.10023C5.07533 4.41764 4.81765 4.67532 4.50024 4.67543C4.18275 4.67543 3.92516 4.4177 3.92505 4.10023C3.92505 2.12779 5.7816 0.77504 7.50024 0.77504Z",
5860 fill: "currentColor",
5861 })
5862 }
5863
5864 const WIDTH: Option<&'static str> = Some("15");
5865 const HEIGHT: Option<&'static str> = Some("15");
5866 const FILL: Option<&'static str> = Some("none");
5867 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5868
5869}
5870
5871#[derive(Default, Copy, Clone, PartialEq, Eq)]
5872pub struct QuestionMarkCircled;
5873
5874impl IconShape for QuestionMarkCircled {
5875 fn child_elements(&self) -> Element {
5876 rsx!(path {
5877 d: "M7.49915 0.876907C11.1566 0.876907 14.1218 3.84164 14.1222 7.49898C14.1222 11.1566 11.1568 14.122 7.49915 14.122C3.84181 14.1216 0.877075 11.1564 0.877075 7.49898C0.877487 3.8419 3.84206 0.877319 7.49915 0.876907ZM7.49915 1.82613C4.36674 1.82654 1.82671 4.36657 1.82629 7.49898C1.82629 10.6317 4.36648 13.1714 7.49915 13.1718C10.6321 13.1718 13.172 10.632 13.172 7.49898C13.1716 4.36631 10.6319 1.82613 7.49915 1.82613ZM7.50012 9.74995C7.91423 9.75006 8.25009 10.0858 8.25012 10.5C8.25012 10.9141 7.91425 11.2498 7.50012 11.25C7.08591 11.25 6.75012 10.9142 6.75012 10.5C6.75015 10.0858 7.08593 9.74995 7.50012 9.74995ZM7.50012 3.82515C8.93513 3.82519 10.0499 4.9279 10.0499 6.24995C10.0499 7.35371 9.31972 7.89011 8.78528 8.2148C8.48593 8.39664 8.30488 8.48614 8.15051 8.6064C8.08554 8.65705 8.05977 8.68922 8.0509 8.70308L8.04895 8.70406C8.04674 9.00589 7.80247 9.24991 7.50012 9.24995C7.19643 9.24995 6.95042 9.00382 6.95032 8.70015C6.95034 8.23216 7.2324 7.92706 7.47473 7.73824C7.6953 7.56644 8.01457 7.39708 8.21497 7.27534C8.6804 6.99257 8.95032 6.74107 8.95032 6.24995C8.95028 5.57211 8.36497 4.9248 7.50012 4.92476C6.63522 4.92476 6.04996 5.57208 6.04993 6.24995C6.04993 6.55368 5.80384 6.79971 5.50012 6.79976C5.19637 6.79976 4.95032 6.55371 4.95032 6.24995C4.95035 4.92787 6.06507 3.82515 7.50012 3.82515Z",
5878 fill: "currentColor",
5879 })
5880 }
5881
5882 const WIDTH: Option<&'static str> = Some("15");
5883 const HEIGHT: Option<&'static str> = Some("15");
5884 const FILL: Option<&'static str> = Some("none");
5885 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5886
5887}
5888
5889#[derive(Default, Copy, Clone, PartialEq, Eq)]
5890pub struct Quote;
5891
5892impl IconShape for Quote {
5893 fn child_elements(&self) -> Element {
5894 rsx!(path {
5895 clip_rule: "evenodd",
5896 d: "M9.42503 3.44136C10.0561 3.23654 10.7837 3.2402 11.3792 3.54623C12.7532 4.25224 13.3477 6.07191 12.7946 8C12.5465 8.8649 12.1102 9.70472 11.1861 10.5524C10.262 11.4 8.98034 11.9 8.38571 11.9C8.17269 11.9 8 11.7321 8 11.525C8 11.3179 8.17644 11.15 8.38571 11.15C9.06497 11.15 9.67189 10.7804 10.3906 10.236C10.9406 9.8193 11.3701 9.28633 11.608 8.82191C12.0628 7.93367 12.0782 6.68174 11.3433 6.34901C10.9904 6.73455 10.5295 6.95946 9.97725 6.95946C8.7773 6.95946 8.0701 5.99412 8.10051 5.12009C8.12957 4.28474 8.66032 3.68954 9.42503 3.44136ZM3.42503 3.44136C4.05614 3.23654 4.78366 3.2402 5.37923 3.54623C6.7532 4.25224 7.34766 6.07191 6.79462 8C6.54654 8.8649 6.11019 9.70472 5.1861 10.5524C4.26201 11.4 2.98034 11.9 2.38571 11.9C2.17269 11.9 2 11.7321 2 11.525C2 11.3179 2.17644 11.15 2.38571 11.15C3.06497 11.15 3.67189 10.7804 4.39058 10.236C4.94065 9.8193 5.37014 9.28633 5.60797 8.82191C6.06282 7.93367 6.07821 6.68174 5.3433 6.34901C4.99037 6.73455 4.52948 6.95946 3.97725 6.95946C2.7773 6.95946 2.0701 5.99412 2.10051 5.12009C2.12957 4.28474 2.66032 3.68954 3.42503 3.44136Z",
5897 fill: "currentColor",
5898 fill_rule: "evenodd",
5899 })
5900 }
5901
5902 const WIDTH: Option<&'static str> = Some("15");
5903 const HEIGHT: Option<&'static str> = Some("15");
5904 const FILL: Option<&'static str> = Some("none");
5905 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5906
5907}
5908
5909#[derive(Default, Copy, Clone, PartialEq, Eq)]
5910pub struct Radiobutton;
5911
5912impl IconShape for Radiobutton {
5913 fn child_elements(&self) -> Element {
5914 rsx!(path {
5915 d: "M7.49908 0.87706C11.1565 0.87706 14.1217 3.84179 14.1221 7.49913C14.1221 11.1568 11.1567 14.1222 7.49908 14.1222C3.84175 14.1218 0.877014 11.1565 0.877014 7.49913C0.877426 3.84205 3.842 0.877471 7.49908 0.87706ZM7.49908 1.82628C4.36667 1.82669 1.82664 4.36672 1.82623 7.49913C1.82623 10.6319 4.36642 13.1716 7.49908 13.172C10.6321 13.172 13.1719 10.6321 13.1719 7.49913C13.1715 4.36647 10.6318 1.82628 7.49908 1.82628ZM7.50006 5.50011C8.6046 5.50014 9.50006 6.39556 9.50006 7.50011C9.50001 8.60461 8.60457 9.50007 7.50006 9.50011C6.39552 9.50011 5.50011 8.60463 5.50006 7.50011C5.50006 6.39554 6.39549 5.50011 7.50006 5.50011Z",
5916 fill: "currentColor",
5917 })
5918 }
5919
5920 const WIDTH: Option<&'static str> = Some("15");
5921 const HEIGHT: Option<&'static str> = Some("15");
5922 const FILL: Option<&'static str> = Some("none");
5923 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5924
5925}
5926
5927#[derive(Default, Copy, Clone, PartialEq, Eq)]
5928pub struct Reader;
5929
5930impl IconShape for Reader {
5931 fn child_elements(&self) -> Element {
5932 rsx!(path {
5933 d: "M10.7998 1C11.1175 1 11.3914 0.999318 11.6143 1.02051C11.8445 1.04243 12.0723 1.09085 12.2842 1.22071L12.4287 1.32227C12.5674 1.43161 12.6865 1.56449 12.7793 1.71582L12.8623 1.87793C12.9317 2.04202 12.9631 2.21314 12.9795 2.38574C13.0007 2.60863 13 2.88254 13 3.2002V11.7998C13 12.1175 13.0007 12.3914 12.9795 12.6143C12.9631 12.7869 12.9317 12.958 12.8623 13.1221L12.7793 13.2842C12.6865 13.4355 12.5674 13.5684 12.4287 13.6777L12.2842 13.7793C12.0723 13.9092 11.8445 13.9576 11.6143 13.9795C11.3914 14.0007 11.1175 14 10.7998 14H4.2002C3.88254 14 3.60863 14.0007 3.38574 13.9795C3.21314 13.9631 3.04202 13.9317 2.87793 13.8623L2.71582 13.7793C2.56449 13.6865 2.43161 13.5674 2.32227 13.4287L2.22071 13.2842C2.09085 13.0723 2.04243 12.8445 2.02051 12.6143C1.99932 12.3914 2 12.1175 2 11.7998V3.2002C2 2.88254 1.99932 2.60863 2.02051 2.38574C2.04243 2.15553 2.09085 1.92772 2.22071 1.71582L2.32227 1.57129C2.43161 1.43264 2.56449 1.31347 2.71582 1.22071L2.87793 1.1377C3.04202 1.06828 3.21314 1.03694 3.38574 1.02051C3.60863 0.999318 3.88254 1 4.2002 1H10.7998ZM4.2002 2C3.86317 2 3.64504 2.00096 3.48047 2.0166C3.4021 2.02407 3.34877 2.03364 3.31153 2.04395L3.23828 2.07324C3.2047 2.09384 3.17415 2.11882 3.14649 2.14649L3.07324 2.23828C3.05581 2.26673 3.03155 2.32358 3.0166 2.48047C3.00096 2.64504 3 2.86317 3 3.2002V11.7998C3 12.1368 3.00096 12.355 3.0166 12.5195C3.03155 12.6764 3.05581 12.7333 3.07324 12.7617L3.14649 12.8535C3.17415 12.8812 3.2047 12.9062 3.23828 12.9268L3.31153 12.9561C3.34877 12.9664 3.4021 12.9759 3.48047 12.9834C3.64504 12.999 3.86317 13 4.2002 13H10.7998C11.1368 13 11.355 12.999 11.5195 12.9834C11.6764 12.9685 11.7333 12.9442 11.7617 12.9268L11.8535 12.8535C11.8812 12.8259 11.9062 12.7953 11.9268 12.7617L11.9561 12.6885C11.9664 12.6512 11.9759 12.5979 11.9834 12.5195C11.999 12.355 12 12.1368 12 11.7998V3.2002C12 2.86317 11.999 2.64504 11.9834 2.48047C11.9759 2.4021 11.9664 2.34877 11.9561 2.31153L11.9268 2.23828C11.9062 2.2047 11.8812 2.17415 11.8535 2.14649L11.7617 2.07324C11.7333 2.05581 11.6764 2.03155 11.5195 2.0166C11.355 2.00096 11.1368 2 10.7998 2H4.2002ZM8 10C8.27614 10 8.5 10.2239 8.5 10.5C8.5 10.7761 8.27614 11 8 11H5C4.72386 11 4.5 10.7761 4.5 10.5C4.5 10.2239 4.72386 10 5 10H8ZM10 7C10.2761 7 10.5 7.22386 10.5 7.5C10.5 7.77614 10.2761 8 10 8H5C4.72386 8 4.5 7.77614 4.5 7.5C4.5 7.22386 4.72386 7 5 7H10ZM10.1006 4.00977C10.3286 4.05629 10.5 4.25829 10.5 4.5C10.5 4.74172 10.3286 4.94371 10.1006 4.99024L10 5H5C4.72386 5 4.5 4.77614 4.5 4.5C4.5 4.22386 4.72386 4 5 4H10L10.1006 4.00977Z",
5934 fill: "currentColor",
5935 })
5936 }
5937
5938 const WIDTH: Option<&'static str> = Some("15");
5939 const HEIGHT: Option<&'static str> = Some("15");
5940 const FILL: Option<&'static str> = Some("none");
5941 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5942
5943}
5944
5945#[derive(Default, Copy, Clone, PartialEq, Eq)]
5946pub struct Reload;
5947
5948impl IconShape for Reload {
5949 fn child_elements(&self) -> Element {
5950 rsx!(path {
5951 d: "M7.50037 0.850006C10.6644 0.850189 12.2943 3.06869 12.9994 4.31094L13.0004 4.31192V2.5004C13.0004 2.22425 13.2242 2.0004 13.5004 2.0004C13.7763 2.00059 14.0004 2.22438 14.0004 2.5004V5.5004C14.0002 5.77625 13.7762 6.0002 13.5004 6.0004H10.5004C10.2243 6.0004 10.0006 5.77637 10.0004 5.5004C10.0004 5.22425 10.2242 5.0004 10.5004 5.0004H12.2328L12.1215 4.79239C11.4802 3.66597 10.1107 1.85019 7.50037 1.85001C4.06019 1.85001 1.84998 4.665 1.84998 7.5004C1.85018 10.3357 4.06034 13.1498 7.50037 13.1498C9.16525 13.1497 10.5296 12.496 11.5013 11.5072L11.6927 11.3031C12.126 10.8159 12.4715 10.2575 12.7172 9.66055L12.765 9.57071C12.8948 9.37795 13.1462 9.2963 13.3695 9.38809C13.6248 9.49314 13.7468 9.78515 13.642 10.0404L13.5111 10.3373C13.2362 10.9247 12.877 11.4767 12.4398 11.9682L12.2142 12.2084C11.062 13.3807 9.44396 14.1497 7.50037 14.1498C3.43771 14.1498 0.850179 10.8149 0.849976 7.5004C0.849976 4.1858 3.43755 0.850006 7.50037 0.850006Z",
5952 fill: "currentColor",
5953 })
5954 }
5955
5956 const WIDTH: Option<&'static str> = Some("15");
5957 const HEIGHT: Option<&'static str> = Some("15");
5958 const FILL: Option<&'static str> = Some("none");
5959 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5960
5961}
5962
5963#[derive(Default, Copy, Clone, PartialEq, Eq)]
5964pub struct Reset;
5965
5966impl IconShape for Reset {
5967 fn child_elements(&self) -> Element {
5968 rsx!(path {
5969 d: "M4.22457 2.08224C4.41865 1.95407 4.68261 1.97583 4.85348 2.14669C5.02434 2.31756 5.0461 2.58152 4.91793 2.7756L4.85348 2.85372L3.70699 4.00021H8.99996C11.4852 4.00021 13.5 6.01493 13.5 8.50021C13.5 10.9855 11.4852 13.0002 8.99996 13.0002H4.99996C4.72382 13.0002 4.49996 12.7764 4.49996 12.5002C4.49996 12.2241 4.72382 12.0002 4.99996 12.0002H8.99996C10.933 12.0002 12.5 10.4332 12.5 8.50021C12.5 6.56721 10.933 5.00021 8.99996 5.00021H3.70699L4.85348 6.14669L4.91793 6.22482C5.0461 6.4189 5.02434 6.68286 4.85348 6.85372C4.68261 7.02459 4.41865 7.04634 4.22457 6.91818L4.14645 6.85372L2.14645 4.85372C1.95118 4.65846 1.95118 4.34195 2.14645 4.14669L4.14645 2.14669L4.22457 2.08224Z",
5970 fill: "currentColor",
5971 })
5972 }
5973
5974 const WIDTH: Option<&'static str> = Some("15");
5975 const HEIGHT: Option<&'static str> = Some("15");
5976 const FILL: Option<&'static str> = Some("none");
5977 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5978
5979}
5980
5981#[derive(Default, Copy, Clone, PartialEq, Eq)]
5982pub struct Resume;
5983
5984impl IconShape for Resume {
5985 fn child_elements(&self) -> Element {
5986 rsx!(path {
5987 d: "M2.49976 2.19995C2.80345 2.19995 3.04946 2.44609 3.04956 2.74976V12.2498C3.04956 12.5535 2.80351 12.7996 2.49976 12.7996C2.19609 12.7995 1.94995 12.5534 1.94995 12.2498V2.74976C1.95006 2.44615 2.19615 2.20006 2.49976 2.19995ZM5.24194 2.32202C5.39191 2.23163 5.57825 2.22575 5.73315 2.30737L14.7332 7.05737C14.8971 7.1439 14.9997 7.3144 14.9998 7.49976C14.9998 7.68519 14.8971 7.85559 14.7332 7.94214L5.73315 12.6921C5.57822 12.7738 5.39196 12.7679 5.24194 12.6775C5.092 12.587 4.99976 12.4249 4.99976 12.2498V2.74976C4.99982 2.57461 5.09196 2.41248 5.24194 2.32202ZM5.99976 11.4197L13.4275 7.49976L5.99976 3.57886V11.4197Z",
5988 fill: "currentColor",
5989 })
5990 }
5991
5992 const WIDTH: Option<&'static str> = Some("15");
5993 const HEIGHT: Option<&'static str> = Some("15");
5994 const FILL: Option<&'static str> = Some("none");
5995 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
5996
5997}
5998
5999#[derive(Default, Copy, Clone, PartialEq, Eq)]
6000pub struct Rocket;
6001
6002impl IconShape for Rocket {
6003 fn child_elements(&self) -> Element {
6004 rsx!(path {
6005 d: "M4.64642 12.6465C4.84166 12.4513 5.1582 12.4513 5.35345 12.6465C5.54869 12.8417 5.54865 13.1583 5.35345 13.3535L4.35345 14.3535C4.15819 14.5488 3.84168 14.5488 3.64642 14.3535C3.45121 14.1583 3.45117 13.8417 3.64642 13.6465L4.64642 12.6465ZM10.4101 0.811541C11.0375 0.721911 11.6611 0.710766 12.204 0.79201C12.732 0.871073 13.2551 1.04818 13.6034 1.3965C13.9518 1.74487 14.1289 2.26794 14.2079 2.79592C14.2892 3.33885 14.2781 3.96237 14.1884 4.58986C14.0114 5.8289 13.5086 7.19833 12.6533 8.05373L12.0302 8.67678L12.495 11.9297C12.5172 12.0854 12.4646 12.2423 12.3534 12.3535L10.3534 14.3535C10.2446 14.4624 10.0912 14.5149 9.93841 14.4961C9.78591 14.4772 9.65039 14.3895 9.57122 14.2578L8.40032 12.3067L7.85345 12.8535C7.65819 13.0488 7.34168 13.0488 7.14642 12.8535L5.64642 11.3535C5.45121 11.1583 5.45117 10.8417 5.64642 10.6465C5.84167 10.4513 6.15821 10.4513 6.35345 10.6465L7.49993 11.793L11.9462 7.3467C12.5908 6.70213 13.0387 5.57162 13.1992 4.44826C13.2782 3.89464 13.2827 3.37066 13.2187 2.94338C13.1524 2.50125 13.023 2.23011 12.8964 2.10353C12.7698 1.97696 12.4987 1.8475 12.0566 1.78127C11.6293 1.71728 11.1053 1.72269 10.5517 1.80178C9.49859 1.95225 8.43956 2.3548 7.78021 2.93556L7.65325 3.05373L3.20696 7.50002L4.35345 8.6465C4.54869 8.84175 4.54865 9.15827 4.35345 9.35353C4.15819 9.54879 3.84168 9.5488 3.64642 9.35353L2.14642 7.85353C2.05269 7.75977 1.99993 7.63259 1.99993 7.50002C1.99997 7.36746 2.05268 7.24024 2.14642 7.1465L2.69329 6.59963L0.743096 5.42873C0.611161 5.34957 0.522733 5.21423 0.503839 5.06154C0.485026 4.90873 0.537545 4.75537 0.646417 4.6465L2.64642 2.6465C2.75759 2.53537 2.91462 2.48281 3.07024 2.5049L6.32317 2.96974L6.94622 2.3467C7.80158 1.49137 9.17108 0.988597 10.4101 0.811541ZM3.14642 11.1465C3.34166 10.9513 3.6582 10.9513 3.85345 11.1465C4.04869 11.3417 4.04866 11.6583 3.85345 11.8535L1.85345 13.8535C1.65818 14.0488 1.34168 14.0488 1.14642 13.8535C0.951212 13.6583 0.951171 13.3417 1.14642 13.1465L3.14642 11.1465ZM9.12982 11.5781L10.0995 13.1934L11.4697 11.8233L11.1464 9.56056L9.12982 11.5781ZM1.64642 9.6465C1.84166 9.45131 2.1582 9.45132 2.35345 9.6465C2.54869 9.84175 2.54865 10.1583 2.35345 10.3535L1.35345 11.3535C1.15819 11.5488 0.841679 11.5488 0.646417 11.3535C0.451214 11.1583 0.451174 10.8417 0.646417 10.6465L1.64642 9.6465ZM9.49993 4.25099C10.1896 4.25101 10.7489 4.81038 10.749 5.50002C10.749 6.18971 10.1896 6.74902 9.49993 6.74904C8.81023 6.74904 8.25091 6.18972 8.25091 5.50002C8.25097 4.81037 8.81027 4.25099 9.49993 4.25099ZM1.80657 4.90041L3.42278 5.87013L5.43939 3.85353L3.17669 3.53029L1.80657 4.90041Z",
6006 fill: "currentColor",
6007 })
6008 }
6009
6010 const WIDTH: Option<&'static str> = Some("15");
6011 const HEIGHT: Option<&'static str> = Some("15");
6012 const FILL: Option<&'static str> = Some("none");
6013 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6014
6015}
6016
6017#[derive(Default, Copy, Clone, PartialEq, Eq)]
6018pub struct RotateCounterClockwise;
6019
6020impl IconShape for RotateCounterClockwise {
6021 fn child_elements(&self) -> Element {
6022 rsx!(path {
6023 d: "M9.65332 4.00808C10.4097 4.08488 11 4.72361 11 5.50027V12.5003L10.9922 12.6536C10.9205 13.3596 10.3593 13.9208 9.65332 13.9925L9.5 14.0003H2.5L2.34668 13.9925C1.64071 13.9208 1.07952 13.3596 1.00781 12.6536L1 12.5003V5.50027C1 4.72361 1.59028 4.08488 2.34668 4.00808L2.5 4.00027H9.5L9.65332 4.00808ZM2.5 5.00027C2.22386 5.00027 2 5.22413 2 5.50027V12.5003C2.00003 12.7764 2.22388 13.0003 2.5 13.0003H9.5C9.77612 13.0003 9.99997 12.7764 10 12.5003V5.50027C10 5.22413 9.77614 5.00027 9.5 5.00027H2.5ZM7.59668 0.0637466C7.76077 -0.0636113 7.99965 0.0533557 8 0.261012V1.00027L8.37988 1.00418C10.2476 1.04836 11.6658 1.43172 12.6172 2.38308C13.632 3.39793 14 4.94411 14 7.00027C14 7.27638 13.7761 7.50027 13.5 7.50027C13.2239 7.50027 13 7.27638 13 7.00027C13 5.01892 12.6359 3.81588 11.9102 3.09011C11.2297 2.40969 10.1298 2.04681 8.3623 2.00418L8 2.00027V2.73953C7.99971 2.94726 7.76079 3.06422 7.59668 2.93679L6.00391 1.69754C5.87524 1.59744 5.87523 1.40309 6.00391 1.303L7.59668 0.0637466Z",
6024 fill: "currentColor",
6025 })
6026 }
6027
6028 const WIDTH: Option<&'static str> = Some("15");
6029 const HEIGHT: Option<&'static str> = Some("15");
6030 const FILL: Option<&'static str> = Some("none");
6031 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6032
6033}
6034
6035#[derive(Default, Copy, Clone, PartialEq, Eq)]
6036pub struct RowSpacing;
6037
6038impl IconShape for RowSpacing {
6039 fn child_elements(&self) -> Element {
6040 rsx!(path {
6041 d: "M7.49994 9.05003C7.74839 9.05003 7.95 9.25181 7.95013 9.50022V12.9133L9.18158 11.6819C9.35732 11.5061 9.64256 11.5061 9.8183 11.6819C9.99403 11.8576 9.99403 12.1428 9.8183 12.3186L7.8183 14.3186C7.73392 14.4029 7.6192 14.4504 7.49994 14.4504C7.41033 14.4504 7.32336 14.4233 7.24994 14.3742L7.18158 14.3186L5.18158 12.3186L5.12396 12.2483C5.0085 12.0736 5.02791 11.8357 5.18158 11.6819C5.33541 11.528 5.5733 11.5088 5.74799 11.6242L5.8183 11.6819L7.04974 12.9133V9.50022C7.04988 9.25187 7.25158 9.05013 7.49994 9.05003ZM13.6005 7.00999C13.8285 7.05652 13.9999 7.25851 13.9999 7.50022C13.9999 7.74193 13.8285 7.94393 13.6005 7.99046L13.4999 8.00022H1.49994C1.2238 8.00022 0.999946 7.77636 0.999939 7.50022C0.999939 7.22408 1.2238 7.00022 1.49994 7.00022H13.4999L13.6005 7.00999ZM7.25189 0.624246C7.42658 0.508733 7.66445 0.52802 7.8183 0.681864L9.8183 2.68186L9.87592 2.75218C9.99139 2.92686 9.97213 3.16475 9.8183 3.31858C9.66445 3.47225 9.42651 3.49167 9.25189 3.3762L9.18158 3.31858L7.95013 2.08714V5.50022C7.95003 5.74866 7.7484 5.95042 7.49994 5.95042C7.25156 5.95032 7.04985 5.7486 7.04974 5.50022V2.08714L5.8183 3.31858C5.64255 3.49413 5.35725 3.49425 5.18158 3.31858C5.00591 3.14291 5.00603 2.85761 5.18158 2.68186L7.18158 0.681864L7.25189 0.624246Z",
6042 fill: "currentColor",
6043 })
6044 }
6045
6046 const WIDTH: Option<&'static str> = Some("15");
6047 const HEIGHT: Option<&'static str> = Some("15");
6048 const FILL: Option<&'static str> = Some("none");
6049 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6050
6051}
6052
6053#[derive(Default, Copy, Clone, PartialEq, Eq)]
6054pub struct Rows;
6055
6056impl IconShape for Rows {
6057 fn child_elements(&self) -> Element {
6058 rsx!(path {
6059 d: "M14 12.8492L14 14.15L1 14.15L1 12.8492L14 12.8492ZM14 8.84921L14 10.15L1 10.15L1 8.84921L14 8.84921ZM14 4.84921L14 6.14999L1 6.14999L1 4.84921L14 4.84921ZM14 0.849213L14 2.14999L1 2.14999L1 0.849213L14 0.849213Z",
6060 fill: "currentColor",
6061 })
6062 }
6063
6064 const WIDTH: Option<&'static str> = Some("15");
6065 const HEIGHT: Option<&'static str> = Some("15");
6066 const FILL: Option<&'static str> = Some("none");
6067 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6068
6069}
6070
6071#[derive(Default, Copy, Clone, PartialEq, Eq)]
6072pub struct RulerHorizontal;
6073
6074impl IconShape for RulerHorizontal {
6075 fn child_elements(&self) -> Element {
6076 rsx!(path {
6077 d: "M14.6006 4.00977C14.8286 4.05629 15 4.25829 15 4.5V10.5C15 10.7761 14.7761 11 14.5 11H0.5C0.223858 11 0 10.7761 0 10.5V4.5L0.00976562 4.39941C0.056292 4.17145 0.258287 4 0.5 4H14.5L14.6006 4.00977ZM1 10H14V5H12.9248V6.5C12.9248 6.73472 12.7347 6.9248 12.5 6.9248C12.2653 6.9248 12.0752 6.73472 12.0752 6.5V5H10.9248V6.5C10.9248 6.73472 10.7347 6.9248 10.5 6.9248C10.2653 6.9248 10.0752 6.73472 10.0752 6.5V5H8.9248V7.5C8.9248 7.73472 8.73472 7.9248 8.5 7.9248C8.26528 7.9248 8.0752 7.73472 8.0752 7.5V5H6.9248V6.5C6.9248 6.73472 6.73472 6.9248 6.5 6.9248C6.26528 6.9248 6.0752 6.73472 6.0752 6.5V5H4.9248V6.5C4.9248 6.73472 4.73472 6.9248 4.5 6.9248C4.26528 6.9248 4.0752 6.73472 4.0752 6.5V5H2.9248V7.5C2.9248 7.73472 2.73472 7.9248 2.5 7.9248C2.26528 7.9248 2.0752 7.73472 2.0752 7.5V5H1V10Z",
6078 fill: "currentColor",
6079 })
6080 }
6081
6082 const WIDTH: Option<&'static str> = Some("15");
6083 const HEIGHT: Option<&'static str> = Some("15");
6084 const FILL: Option<&'static str> = Some("none");
6085 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6086
6087}
6088
6089#[derive(Default, Copy, Clone, PartialEq, Eq)]
6090pub struct RulerSquare;
6091
6092impl IconShape for RulerSquare {
6093 fn child_elements(&self) -> Element {
6094 rsx!(path {
6095 d: "M14.6006 0.00976562C14.8286 0.056292 15 0.258287 15 0.5V4.5C15 4.77614 14.7761 5 14.5 5H5V14.5C5 14.7761 4.77614 15 4.5 15H0.5C0.223858 15 0 14.7761 0 14.5V0.5L0.00976562 0.399414C0.056292 0.171447 0.258287 0 0.5 0H14.5L14.6006 0.00976562ZM1 4.9248V14H4V12.9248H2.75C2.51529 12.9248 2.3252 12.7347 2.3252 12.5C2.32521 12.2653 2.5153 12.0752 2.75 12.0752H4V10.9248H2.25C2.01529 10.9248 1.8252 10.7347 1.8252 10.5C1.82521 10.2653 2.0153 10.0752 2.25 10.0752H4V8.9248H2.75C2.51529 8.92479 2.32519 8.73471 2.3252 8.5C2.32521 8.2653 2.5153 8.07521 2.75 8.0752H4V6.9248H2.75C2.51528 6.9248 2.32519 6.73472 2.3252 6.5C2.3252 6.26528 2.51528 6.0752 2.75 6.0752H4V4.9248H1ZM1 4.0752H4.0752V1H1V4.0752ZM4.9248 4H6.0752V2.75C6.07523 2.51531 6.2653 2.3252 6.5 2.3252C6.7347 2.3252 6.92477 2.51531 6.9248 2.75V4H8.0752V2.75C8.07522 2.51531 8.2653 2.32521 8.5 2.3252C8.7347 2.3252 8.92478 2.5153 8.9248 2.75V4H10.0752V2.25C10.0752 2.01532 10.2653 1.82523 10.5 1.8252C10.7347 1.8252 10.9248 2.0153 10.9248 2.25V4H12.0752V2.75C12.0752 2.51533 12.2653 2.32523 12.5 2.3252C12.7347 2.3252 12.9248 2.5153 12.9248 2.75V4H14V1H4.9248V4Z",
6096 fill: "currentColor",
6097 })
6098 }
6099
6100 const WIDTH: Option<&'static str> = Some("15");
6101 const HEIGHT: Option<&'static str> = Some("15");
6102 const FILL: Option<&'static str> = Some("none");
6103 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6104
6105}
6106
6107#[derive(Default, Copy, Clone, PartialEq, Eq)]
6108pub struct Scissors;
6109
6110impl IconShape for Scissors {
6111 fn child_elements(&self) -> Element {
6112 rsx!(path {
6113 d: "M4.77552 9.59498C4.88703 9.87512 4.95032 10.1804 4.95032 10.5002C4.95011 11.8531 3.85302 12.9503 2.50015 12.9504C1.1472 12.9504 0.0501965 11.8531 0.0499872 10.5002C0.0499872 9.14716 1.14707 8.05007 2.50015 8.05007C3.17229 8.05012 3.78109 8.32067 4.22376 8.75905L6.42686 7.28739L6.67979 6.38017C6.75165 6.12313 6.92313 5.9055 7.15635 5.77569L10.2305 4.06477C11.4087 3.40911 12.7079 2.99869 14.0488 2.85775L15 2.75717L4.77552 9.59498ZM15 12.2405L14.0488 12.1399C12.7082 11.999 11.4095 11.5883 10.2315 10.9328L7.15635 9.22193C7.15236 9.21971 7.14856 9.21644 7.14463 9.21412L8.81062 8.09988L15 12.2405ZM2.50015 8.95045C1.64412 8.95045 0.950367 9.64421 0.950367 10.5002C0.950576 11.3561 1.64425 12.05 2.50015 12.05C3.35597 12.0499 4.04973 11.356 4.04994 10.5002C4.04994 9.64427 3.3561 8.95056 2.50015 8.95045ZM2.50015 2.03452C3.85314 2.03463 4.95032 3.13167 4.95032 4.48469C4.95029 4.80808 4.88549 5.11608 4.77161 5.39874L5.73742 6.04521L5.71593 6.1126L5.56262 6.66239L5.21008 6.89774L4.214 6.23271C3.77206 6.66606 3.16792 6.9348 2.50015 6.93485C1.14714 6.93485 0.0500929 5.83768 0.0499872 4.48469C0.0499872 3.13161 1.14707 2.03452 2.50015 2.03452ZM2.50015 2.9349C1.64412 2.9349 0.950367 3.62866 0.950367 4.48469C0.950472 5.34063 1.64419 6.03447 2.50015 6.03447C3.35603 6.03437 4.04983 5.34056 4.04994 4.48469C4.04994 3.62872 3.35609 2.93501 2.50015 2.9349Z",
6114 fill: "currentColor",
6115 })
6116 }
6117
6118 const WIDTH: Option<&'static str> = Some("15");
6119 const HEIGHT: Option<&'static str> = Some("15");
6120 const FILL: Option<&'static str> = Some("none");
6121 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6122
6123}
6124
6125#[derive(Default, Copy, Clone, PartialEq, Eq)]
6126pub struct Section;
6127
6128impl IconShape for Section {
6129 fn child_elements(&self) -> Element {
6130 rsx!(path {
6131 d: "M1.5 13C1.77614 13 2 13.2239 2 13.5C2 13.7761 1.77614 14 1.5 14C1.22386 14 1 13.7761 1 13.5C1 13.2239 1.22386 13 1.5 13ZM3.5 13C3.77614 13 4 13.2239 4 13.5C4 13.7761 3.77614 14 3.5 14C3.22386 14 3 13.7761 3 13.5C3 13.2239 3.22386 13 3.5 13ZM5.5 13C5.77614 13 6 13.2239 6 13.5C6 13.7761 5.77614 14 5.5 14C5.22386 14 5 13.7761 5 13.5C5 13.2239 5.22386 13 5.5 13ZM7.5 13C7.77614 13 8 13.2239 8 13.5C8 13.7761 7.77614 14 7.5 14C7.22386 14 7 13.7761 7 13.5C7 13.2239 7.22386 13 7.5 13ZM9.5 13C9.77614 13 10 13.2239 10 13.5C10 13.7761 9.77614 14 9.5 14C9.22386 14 9 13.7761 9 13.5C9 13.2239 9.22386 13 9.5 13ZM11.5 13C11.7761 13 12 13.2239 12 13.5C12 13.7761 11.7761 14 11.5 14C11.2239 14 11 13.7761 11 13.5C11 13.2239 11.2239 13 11.5 13ZM13.5 13C13.7761 13 14 13.2239 14 13.5C14 13.7761 13.7761 14 13.5 14C13.2239 14 13 13.7761 13 13.5C13 13.2239 13.2239 13 13.5 13ZM13.1025 4.00488C13.6067 4.05621 14 4.48232 14 5V10L13.9951 10.1025C13.9472 10.573 13.573 10.9472 13.1025 10.9951L13 11H2L1.89746 10.9951C1.42703 10.9472 1.05278 10.573 1.00488 10.1025L1 10V5C1 4.48232 1.39333 4.05621 1.89746 4.00488L2 4H13L13.1025 4.00488ZM2 10H13V5H2V10ZM1.5 1C1.77614 1 2 1.22386 2 1.5C2 1.77614 1.77614 2 1.5 2C1.22386 2 1 1.77614 1 1.5C1 1.22386 1.22386 1 1.5 1ZM3.5 1C3.77614 1 4 1.22386 4 1.5C4 1.77614 3.77614 2 3.5 2C3.22386 2 3 1.77614 3 1.5C3 1.22386 3.22386 1 3.5 1ZM5.5 1C5.77614 1 6 1.22386 6 1.5C6 1.77614 5.77614 2 5.5 2C5.22386 2 5 1.77614 5 1.5C5 1.22386 5.22386 1 5.5 1ZM7.5 1C7.77614 1 8 1.22386 8 1.5C8 1.77614 7.77614 2 7.5 2C7.22386 2 7 1.77614 7 1.5C7 1.22386 7.22386 1 7.5 1ZM9.5 1C9.77614 1 10 1.22386 10 1.5C10 1.77614 9.77614 2 9.5 2C9.22386 2 9 1.77614 9 1.5C9 1.22386 9.22386 1 9.5 1ZM11.5 1C11.7761 1 12 1.22386 12 1.5C12 1.77614 11.7761 2 11.5 2C11.2239 2 11 1.77614 11 1.5C11 1.22386 11.2239 1 11.5 1ZM13.5 1C13.7761 1 14 1.22386 14 1.5C14 1.77614 13.7761 2 13.5 2C13.2239 2 13 1.77614 13 1.5C13 1.22386 13.2239 1 13.5 1Z",
6132 fill: "currentColor",
6133 })
6134 }
6135
6136 const WIDTH: Option<&'static str> = Some("15");
6137 const HEIGHT: Option<&'static str> = Some("15");
6138 const FILL: Option<&'static str> = Some("none");
6139 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6140
6141}
6142
6143#[derive(Default, Copy, Clone, PartialEq, Eq)]
6144pub struct Server;
6145
6146impl IconShape for Server {
6147 fn child_elements(&self) -> Element {
6148 rsx!(path {
6149 d: "M12.6533 8.00781C13.4097 8.08461 14 8.72334 14 9.5V11.5L13.9922 11.6533C13.9205 12.3593 13.3593 12.9205 12.6533 12.9922L12.5 13H2.5L2.34668 12.9922C1.64069 12.9205 1.07949 12.3593 1.00781 11.6533L1 11.5V9.5C1 8.72334 1.59028 8.08461 2.34668 8.00781L2.5 8H12.5L12.6533 8.00781ZM2.5 9C2.22386 9 2 9.22386 2 9.5V11.5C2 11.7761 2.22386 12 2.5 12H12.5C12.7761 12 13 11.7761 13 11.5V9.5C13 9.22386 12.7761 9 12.5 9H2.5ZM3.5 10C3.77614 10 4 10.2239 4 10.5C4 10.7761 3.77614 11 3.5 11C3.22386 11 3 10.7761 3 10.5C3 10.2239 3.22386 10 3.5 10ZM12.6533 2.00781C13.4097 2.08461 14 2.72334 14 3.5V5.5L13.9922 5.65332C13.9205 6.35931 13.3593 6.92051 12.6533 6.99219L12.5 7H2.5L2.34668 6.99219C1.64069 6.92051 1.07949 6.35931 1.00781 5.65332L1 5.5V3.5C1 2.72334 1.59028 2.08461 2.34668 2.00781L2.5 2H12.5L12.6533 2.00781ZM2.5 3C2.22386 3 2 3.22386 2 3.5V5.5C2 5.77614 2.22386 6 2.5 6H12.5C12.7761 6 13 5.77614 13 5.5V3.5C13 3.22386 12.7761 3 12.5 3H2.5ZM3.5 4C3.77614 4 4 4.22386 4 4.5C4 4.77614 3.77614 5 3.5 5C3.22386 5 3 4.77614 3 4.5C3 4.22386 3.22386 4 3.5 4Z",
6150 fill: "currentColor",
6151 })
6152 }
6153
6154 const WIDTH: Option<&'static str> = Some("15");
6155 const HEIGHT: Option<&'static str> = Some("15");
6156 const FILL: Option<&'static str> = Some("none");
6157 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6158
6159}
6160
6161#[derive(Default, Copy, Clone, PartialEq, Eq)]
6162pub struct SewingPin;
6163
6164impl IconShape for SewingPin {
6165 fn child_elements(&self) -> Element {
6166 rsx!(path {
6167 d: "M7.5 1C8.88071 1 10 2.11929 10 3.5C10 4.70943 9.14105 5.71753 8 5.94922V13.5C8 13.7761 7.77614 14 7.5 14C7.22386 14 7 13.7761 7 13.5V5.94922C5.85895 5.71753 5 4.70943 5 3.5C5 2.11929 6.11929 1 7.5 1ZM7.5 2C6.67157 2 6 2.67157 6 3.5C6 4.32843 6.67157 5 7.5 5C8.32843 5 9 4.32843 9 3.5C9 2.67157 8.32843 2 7.5 2Z",
6168 fill: "currentColor",
6169 })
6170 }
6171
6172 const WIDTH: Option<&'static str> = Some("15");
6173 const HEIGHT: Option<&'static str> = Some("15");
6174 const FILL: Option<&'static str> = Some("none");
6175 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6176
6177}
6178
6179#[derive(Default, Copy, Clone, PartialEq, Eq)]
6180pub struct SewingPinFilled;
6181
6182impl IconShape for SewingPinFilled {
6183 fn child_elements(&self) -> Element {
6184 rsx!(path {
6185 d: "M7.5 1C8.88071 1 10 2.11929 10 3.5C10 4.70943 9.14105 5.71753 8 5.94922V13.5C8 13.7761 7.77614 14 7.5 14C7.22386 14 7 13.7761 7 13.5V5.94922C5.85895 5.71753 5 4.70943 5 3.5C5 2.11929 6.11929 1 7.5 1Z",
6186 fill: "currentColor",
6187 })
6188 }
6189
6190 const WIDTH: Option<&'static str> = Some("15");
6191 const HEIGHT: Option<&'static str> = Some("15");
6192 const FILL: Option<&'static str> = Some("none");
6193 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6194
6195}
6196
6197#[derive(Default, Copy, Clone, PartialEq, Eq)]
6198pub struct Shadow;
6199
6200impl IconShape for Shadow {
6201 fn child_elements(&self) -> Element {
6202 rsx!(path {
6203 clip_rule: "evenodd",
6204 d: "M6.78293 13.376C8.73901 9.95282 8.73901 5.04717 6.78293 1.62403L7.21705 1.37596C9.26097 4.95282 9.26097 10.0472 7.21705 13.624L6.78293 13.376Z",
6205 fill: "currentColor",
6206 fill_rule: "evenodd",
6207 opacity: ".05",
6208 }
6209path {
6210 clip_rule: "evenodd",
6211 d: "M7.28207 13.4775C9.23932 9.99523 9.23932 5.00475 7.28207 1.52248L7.71794 1.2775C9.7607 4.9119 9.7607 10.0881 7.71794 13.7225L7.28207 13.4775Z",
6212 fill: "currentColor",
6213 fill_rule: "evenodd",
6214 opacity: ".1",
6215 }
6216path {
6217 clip_rule: "evenodd",
6218 d: "M7.82098 13.5064C9.72502 9.99522 9.72636 5.01409 7.82492 1.50082L8.26465 1.26283C10.2465 4.92465 10.2451 10.085 8.26052 13.7448L7.82098 13.5064Z",
6219 fill: "currentColor",
6220 fill_rule: "evenodd",
6221 opacity: ".15",
6222 }
6223path {
6224 clip_rule: "evenodd",
6225 d: "M8.41284 13.429C10.1952 9.92841 10.1957 5.07535 8.41435 1.574L8.85999 1.34727C10.7139 4.99111 10.7133 10.0128 8.85841 13.6558L8.41284 13.429Z",
6226 fill: "currentColor",
6227 fill_rule: "evenodd",
6228 opacity: ".2",
6229 }
6230path {
6231 clip_rule: "evenodd",
6232 d: "M9.02438 13.2956C10.6566 9.8379 10.6585 5.17715 9.03002 1.71656L9.48242 1.50366C11.1744 5.09919 11.1725 9.91629 9.47654 13.5091L9.02438 13.2956Z",
6233 fill: "currentColor",
6234 fill_rule: "evenodd",
6235 opacity: ".25",
6236 }
6237path {
6238 clip_rule: "evenodd",
6239 d: "M9.66809 13.0655C11.1097 9.6957 11.1107 5.31209 9.67088 1.94094L10.1307 1.74455C11.6241 5.2412 11.6231 9.76682 10.1278 13.2622L9.66809 13.0655Z",
6240 fill: "currentColor",
6241 fill_rule: "evenodd",
6242 opacity: ".3",
6243 }
6244path {
6245 clip_rule: "evenodd",
6246 d: "M10.331 12.7456C11.5551 9.52073 11.5563 5.49103 10.3347 2.26444L10.8023 2.0874C12.0672 5.42815 12.0659 9.58394 10.7984 12.9231L10.331 12.7456Z",
6247 fill: "currentColor",
6248 fill_rule: "evenodd",
6249 opacity: ".35",
6250 }
6251path {
6252 clip_rule: "evenodd",
6253 d: "M11.0155 12.2986C11.9938 9.29744 11.9948 5.71296 11.0184 2.71067L11.4939 2.55603C12.503 5.6589 12.502 9.35178 11.4909 12.4535L11.0155 12.2986Z",
6254 fill: "currentColor",
6255 fill_rule: "evenodd",
6256 opacity: ".4",
6257 }
6258path {
6259 clip_rule: "evenodd",
6260 d: "M11.7214 11.668C12.4254 9.01301 12.4262 5.9969 11.7237 3.34114L12.2071 3.21327C12.9318 5.95291 12.931 9.05726 12.2047 11.7961L11.7214 11.668Z",
6261 fill: "currentColor",
6262 fill_rule: "evenodd",
6263 opacity: ".45",
6264 }
6265path {
6266 clip_rule: "evenodd",
6267 d: "M12.4432 10.752C12.8524 8.63761 12.8523 6.36088 12.4429 4.24659L12.9338 4.15154C13.3553 6.32859 13.3554 8.66984 12.9341 10.847L12.4432 10.752Z",
6268 fill: "currentColor",
6269 fill_rule: "evenodd",
6270 opacity: ".5",
6271 }
6272path {
6273 clip_rule: "evenodd",
6274 d: "M0.877045 7.49988C0.877045 3.84219 3.84219 0.877045 7.49988 0.877045C11.1575 0.877045 14.1227 3.84219 14.1227 7.49988C14.1227 11.1575 11.1575 14.1227 7.49988 14.1227C3.84219 14.1227 0.877045 11.1575 0.877045 7.49988ZM7.49988 1.82704C4.36686 1.82704 1.82704 4.36686 1.82704 7.49988C1.82704 10.6329 4.36686 13.1727 7.49988 13.1727C10.6329 13.1727 13.1727 10.6329 13.1727 7.49988C13.1727 4.36686 10.6329 1.82704 7.49988 1.82704Z",
6275 fill: "currentColor",
6276 fill_rule: "evenodd",
6277 })
6278 }
6279
6280 const WIDTH: Option<&'static str> = Some("15");
6281 const HEIGHT: Option<&'static str> = Some("15");
6282 const FILL: Option<&'static str> = Some("none");
6283 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6284
6285}
6286
6287#[derive(Default, Copy, Clone, PartialEq, Eq)]
6288pub struct ShadowInner;
6289
6290impl IconShape for ShadowInner {
6291 fn child_elements(&self) -> Element {
6292 rsx!(path {
6293 clip_rule: "evenodd",
6294 d: "M12.1619 3.85182C8.35817 4.88918 4.88936 8.358 3.85199 12.1617L3.3696 12.0301C4.45356 8.05564 8.05581 4.45339 12.0303 3.36943L12.1619 3.85182Z",
6295 fill: "currentColor",
6296 fill_rule: "evenodd",
6297 opacity: ".05",
6298 }
6299path {
6300 clip_rule: "evenodd",
6301 d: "M11.8807 3.42707C8.03441 4.50542 4.50561 8.03422 3.42726 11.8805L2.94582 11.7456C4.07129 7.73121 7.7314 4.0711 11.7458 2.94563L11.8807 3.42707Z",
6302 fill: "currentColor",
6303 fill_rule: "evenodd",
6304 opacity: ".1",
6305 }
6306path {
6307 clip_rule: "evenodd",
6308 d: "M11.5201 3.02556C7.69092 4.16199 4.16779 7.68323 3.02805 11.512L2.54883 11.3694C3.73676 7.37869 7.38659 3.73076 11.3778 2.54623L11.5201 3.02556Z",
6309 fill: "currentColor",
6310 fill_rule: "evenodd",
6311 opacity: ".15",
6312 }
6313path {
6314 clip_rule: "evenodd",
6315 d: "M11.0468 2.66169C7.31117 3.87664 3.87918 7.3079 2.66298 11.0434L2.18754 10.8886C3.45324 7.00109 7.00445 3.45062 10.8921 2.18621L11.0468 2.66169Z",
6316 fill: "currentColor",
6317 fill_rule: "evenodd",
6318 opacity: ".2",
6319 }
6320path {
6321 clip_rule: "evenodd",
6322 d: "M10.5201 2.32365C6.92091 3.61447 3.62391 6.90876 2.32845 10.5073L1.858 10.338C3.20398 6.59909 6.61155 3.19424 10.3513 1.85301L10.5201 2.32365Z",
6323 fill: "currentColor",
6324 fill_rule: "evenodd",
6325 opacity: ".25",
6326 }
6327path {
6328 clip_rule: "evenodd",
6329 d: "M9.90222 2.03122C6.50003 3.39465 3.39968 6.49367 2.03399 9.89551L1.56998 9.70924C2.98651 6.18076 6.18728 2.98133 9.71622 1.5671L9.90222 2.03122Z",
6330 fill: "currentColor",
6331 fill_rule: "evenodd",
6332 opacity: ".3",
6333 }
6334path {
6335 clip_rule: "evenodd",
6336 d: "M9.20727 1.78873C6.06136 3.20349 3.21103 6.05203 1.79331 9.19738L1.33747 8.99192C2.80536 5.73528 5.74485 2.7976 9.0022 1.33272L9.20727 1.78873Z",
6337 fill: "currentColor",
6338 fill_rule: "evenodd",
6339 opacity: ".35",
6340 }
6341path {
6342 clip_rule: "evenodd",
6343 d: "M8.40713 1.62085C5.59323 3.05117 3.05794 5.58509 1.62544 8.39847L1.17987 8.1716C2.66036 5.26397 5.27232 2.6534 8.18057 1.17513L8.40713 1.62085Z",
6344 fill: "currentColor",
6345 fill_rule: "evenodd",
6346 opacity: ".4",
6347 }
6348path {
6349 clip_rule: "evenodd",
6350 d: "M7.46207 1.56747C5.08689 2.94695 2.95362 5.07912 1.57249 7.45379L1.14028 7.20241C2.56503 4.75273 4.7607 2.55818 7.21096 1.1351L7.46207 1.56747Z",
6351 fill: "currentColor",
6352 fill_rule: "evenodd",
6353 opacity: ".45",
6354 }
6355path {
6356 clip_rule: "evenodd",
6357 d: "M6.30407 1.70487C4.51964 2.91063 2.90983 4.52061 1.7043 6.30513L1.28998 6.02524C2.5313 4.18773 4.18673 2.53214 6.02413 1.29059L6.30407 1.70487Z",
6358 fill: "currentColor",
6359 fill_rule: "evenodd",
6360 opacity: ".5",
6361 }
6362path {
6363 clip_rule: "evenodd",
6364 d: "M0.877075 7.49988C0.877075 3.84219 3.84222 0.877045 7.49991 0.877045C11.1576 0.877045 14.1227 3.84219 14.1227 7.49988C14.1227 11.1575 11.1576 14.1227 7.49991 14.1227C3.84222 14.1227 0.877075 11.1575 0.877075 7.49988ZM7.49991 1.82704C4.36689 1.82704 1.82708 4.36686 1.82708 7.49988C1.82708 10.6329 4.36689 13.1727 7.49991 13.1727C10.6329 13.1727 13.1727 10.6329 13.1727 7.49988C13.1727 4.36686 10.6329 1.82704 7.49991 1.82704Z",
6365 fill: "currentColor",
6366 fill_rule: "evenodd",
6367 })
6368 }
6369
6370 const WIDTH: Option<&'static str> = Some("15");
6371 const HEIGHT: Option<&'static str> = Some("15");
6372 const FILL: Option<&'static str> = Some("none");
6373 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6374
6375}
6376
6377#[derive(Default, Copy, Clone, PartialEq, Eq)]
6378pub struct ShadowNone;
6379
6380impl IconShape for ShadowNone {
6381 fn child_elements(&self) -> Element {
6382 rsx!(path {
6383 clip_rule: "evenodd",
6384 d: "M6.78293 13.376C8.73901 9.95282 8.73901 5.04717 6.78293 1.62403L7.21705 1.37596C9.26097 4.95282 9.26097 10.0472 7.21705 13.624L6.78293 13.376Z",
6385 fill: "currentColor",
6386 fill_rule: "evenodd",
6387 opacity: ".05",
6388 }
6389path {
6390 clip_rule: "evenodd",
6391 d: "M7.28207 13.4775C9.23932 9.99523 9.23932 5.00475 7.28207 1.52248L7.71794 1.2775C9.7607 4.9119 9.7607 10.0881 7.71794 13.7225L7.28207 13.4775Z",
6392 fill: "currentColor",
6393 fill_rule: "evenodd",
6394 opacity: ".1",
6395 }
6396path {
6397 clip_rule: "evenodd",
6398 d: "M7.82098 13.5064C9.72502 9.99522 9.72636 5.01409 7.82492 1.50082L8.26465 1.26283C10.2465 4.92465 10.2451 10.085 8.26052 13.7448L7.82098 13.5064Z",
6399 fill: "currentColor",
6400 fill_rule: "evenodd",
6401 opacity: ".15",
6402 }
6403path {
6404 clip_rule: "evenodd",
6405 d: "M8.41284 13.429C10.1952 9.92841 10.1957 5.07535 8.41435 1.574L8.85999 1.34727C10.7139 4.99111 10.7133 10.0128 8.85841 13.6558L8.41284 13.429Z",
6406 fill: "currentColor",
6407 fill_rule: "evenodd",
6408 opacity: ".2",
6409 }
6410path {
6411 clip_rule: "evenodd",
6412 d: "M9.02438 13.2956C10.6566 9.8379 10.6585 5.17715 9.03002 1.71656L9.48242 1.50366C11.1744 5.09919 11.1725 9.91629 9.47654 13.5091L9.02438 13.2956Z",
6413 fill: "currentColor",
6414 fill_rule: "evenodd",
6415 opacity: ".25",
6416 }
6417path {
6418 clip_rule: "evenodd",
6419 d: "M9.66809 13.0655C11.1097 9.6957 11.1107 5.31209 9.67088 1.94094L10.1307 1.74455C11.6241 5.2412 11.6231 9.76682 10.1278 13.2622L9.66809 13.0655Z",
6420 fill: "currentColor",
6421 fill_rule: "evenodd",
6422 opacity: ".3",
6423 }
6424path {
6425 clip_rule: "evenodd",
6426 d: "M10.331 12.7456C11.5551 9.52073 11.5563 5.49103 10.3347 2.26444L10.8023 2.0874C12.0672 5.42815 12.0659 9.58394 10.7984 12.9231L10.331 12.7456Z",
6427 fill: "currentColor",
6428 fill_rule: "evenodd",
6429 opacity: ".35",
6430 }
6431path {
6432 clip_rule: "evenodd",
6433 d: "M11.0155 12.2986C11.9938 9.29744 11.9948 5.71296 11.0184 2.71067L11.4939 2.55603C12.503 5.6589 12.502 9.35178 11.4909 12.4535L11.0155 12.2986Z",
6434 fill: "currentColor",
6435 fill_rule: "evenodd",
6436 opacity: ".4",
6437 }
6438path {
6439 clip_rule: "evenodd",
6440 d: "M11.7214 11.668C12.4254 9.01301 12.4262 5.9969 11.7237 3.34114L12.2071 3.21327C12.9318 5.95291 12.931 9.05726 12.2047 11.7961L11.7214 11.668Z",
6441 fill: "currentColor",
6442 fill_rule: "evenodd",
6443 opacity: ".45",
6444 }
6445path {
6446 clip_rule: "evenodd",
6447 d: "M12.4432 10.752C12.8524 8.63761 12.8523 6.36088 12.4429 4.24659L12.9338 4.15154C13.3553 6.32859 13.3554 8.66984 12.9341 10.847L12.4432 10.752Z",
6448 fill: "currentColor",
6449 fill_rule: "evenodd",
6450 opacity: ".5",
6451 }
6452path {
6453 d: "M7.49911 0.877045C9.14783 0.877045 10.6553 1.48093 11.8145 2.47763L12.6466 1.64658C12.8418 1.45131 13.1583 1.45131 13.3536 1.64658C13.5488 1.84185 13.5488 2.15838 13.3536 2.35361L12.5216 3.18466C13.5185 4.34363 14.122 5.85045 14.1222 7.49911C14.1222 11.1568 11.1568 14.1222 7.49911 14.1222C5.85045 14.122 4.34363 13.5185 3.18466 12.5216L2.35361 13.3536C2.15838 13.5488 1.84185 13.5488 1.64658 13.3536C1.45131 13.1583 1.45131 12.8418 1.64658 12.6466L2.47763 11.8145C1.48093 10.6553 0.877045 9.14783 0.877045 7.49911C0.877456 3.84203 3.84203 0.877456 7.49911 0.877045ZM3.85751 11.8487C4.84285 12.6747 6.11291 13.1718 7.49911 13.172C10.6321 13.172 13.172 10.6321 13.172 7.49911C13.1718 6.11291 12.6747 4.84285 11.8487 3.85751L3.85751 11.8487ZM7.49911 1.82626C4.3667 1.82667 1.82667 4.3667 1.82626 7.49911C1.82626 8.88557 2.32529 10.1553 3.15146 11.1407L11.1407 3.15146C10.1553 2.32529 8.88557 1.82626 7.49911 1.82626Z",
6454 fill: "currentColor",
6455 })
6456 }
6457
6458 const WIDTH: Option<&'static str> = Some("15");
6459 const HEIGHT: Option<&'static str> = Some("15");
6460 const FILL: Option<&'static str> = Some("none");
6461 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6462
6463}
6464
6465#[derive(Default, Copy, Clone, PartialEq, Eq)]
6466pub struct ShadowOuter;
6467
6468impl IconShape for ShadowOuter {
6469 fn child_elements(&self) -> Element {
6470 rsx!(path {
6471 clip_rule: "evenodd",
6472 d: "M12.1398 3.88617C13.8553 4.94159 15 6.83701 15 9.00001C15 12.3137 12.3137 15 8.99999 15C6.84348 15 4.95293 13.8621 3.89566 12.1552L4.32073 11.8919C5.29066 13.4578 7.02373 14.5 8.99999 14.5C12.0375 14.5 14.5 12.0375 14.5 9.00001C14.5 7.01781 13.4515 5.28027 11.8778 4.31203L12.1398 3.88617Z",
6473 fill: "currentColor",
6474 fill_rule: "evenodd",
6475 opacity: ".05",
6476 }
6477path {
6478 clip_rule: "evenodd",
6479 d: "M12.851 5.07321C13.8684 6.07106 14.5 7.46199 14.5 9C14.5 12.0375 12.0375 14.5 9.00001 14.5C7.46212 14.5 6.07129 13.8685 5.07346 12.8513L5.4304 12.5011C6.33807 13.4264 7.60183 14 9.00001 14C11.7614 14 14 11.7614 14 9C14 7.60171 13.4263 6.33786 12.5009 5.43017L12.851 5.07321Z",
6480 fill: "currentColor",
6481 fill_rule: "evenodd",
6482 opacity: ".2",
6483 }
6484path {
6485 clip_rule: "evenodd",
6486 d: "M13.3021 6.4507C13.7455 7.19736 14 8.06934 14 9C14 11.7614 11.7614 14 8.99999 14C8.04865 14 7.15865 13.7341 6.40115 13.2723L6.66139 12.8454C7.34272 13.2607 8.14303 13.5 8.99999 13.5C11.4852 13.5 13.5 11.4853 13.5 9C13.5 8.16163 13.271 7.37752 12.8722 6.70598L13.3021 6.4507Z",
6487 fill: "currentColor",
6488 fill_rule: "evenodd",
6489 opacity: ".35",
6490 }
6491path {
6492 clip_rule: "evenodd",
6493 d: "M13.3744 7.94022C13.4565 8.28031 13.5 8.63525 13.5 9.00001C13.5 11.4853 11.4852 13.5 8.99997 13.5C8.61098 13.5 8.23316 13.4506 7.87262 13.3576L7.99753 12.8734C8.31762 12.956 8.65347 13 8.99997 13C11.2091 13 13 11.2091 13 9.00001C13 8.67509 12.9613 8.35953 12.8884 8.05757L13.3744 7.94022Z",
6494 fill: "currentColor",
6495 fill_rule: "evenodd",
6496 opacity: ".5",
6497 }
6498path {
6499 clip_rule: "evenodd",
6500 d: "M12.9155 9.82134C12.5898 11.3813 11.3562 12.6072 9.79205 12.9215L9.69354 12.4313C11.0613 12.1565 12.1413 11.0834 12.4261 9.71916L12.9155 9.82134Z",
6501 fill: "currentColor",
6502 fill_rule: "evenodd",
6503 opacity: ".65",
6504 }
6505path {
6506 clip_rule: "evenodd",
6507 d: "M1.27707 7.50253C1.27707 4.06456 4.0641 1.27753 7.50207 1.27753C10.94 1.27753 13.7271 4.06456 13.7271 7.50253C13.7271 10.9405 10.94 13.7275 7.50207 13.7275C4.0641 13.7275 1.27707 10.9405 1.27707 7.50253ZM7.50207 2.22753C4.58877 2.22753 2.22707 4.58923 2.22707 7.50253C2.22707 10.4158 4.58877 12.7775 7.50207 12.7775C10.4153 12.7775 12.7771 10.4158 12.7771 7.50253C12.7771 4.58923 10.4153 2.22753 7.50207 2.22753Z",
6508 fill: "currentColor",
6509 fill_rule: "evenodd",
6510 })
6511 }
6512
6513 const WIDTH: Option<&'static str> = Some("15");
6514 const HEIGHT: Option<&'static str> = Some("15");
6515 const FILL: Option<&'static str> = Some("none");
6516 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6517
6518}
6519
6520#[derive(Default, Copy, Clone, PartialEq, Eq)]
6521pub struct Share1;
6522
6523impl IconShape for Share1 {
6524 fn child_elements(&self) -> Element {
6525 rsx!(path {
6526 d: "M1 7.50003C1 6.11932 2.11929 5.00003 3.5 5.00003C4.46036 5.00003 5.2922 5.54261 5.71094 6.33694L9.10449 4.21683C9.03664 3.98975 9 3.74917 9 3.50003C9 2.11932 10.1193 1.00003 11.5 1.00003C12.8807 1.00003 14 2.11932 14 3.50003C14 4.88074 12.8807 6.00003 11.5 6.00003C10.6915 6.00003 9.97456 5.61485 9.51758 5.01956L5.98437 7.22855C5.99401 7.31775 6 7.40826 6 7.50003C6 7.59213 5.99408 7.68297 5.98437 7.77249L9.51758 9.98148C9.97453 9.38583 10.6913 9.00003 11.5 9.00003C12.8807 9.00003 14 10.1193 14 11.5C14 12.8807 12.8807 14 11.5 14C10.1193 14 9 12.8807 9 11.5C9 11.2512 9.03681 11.011 9.10449 10.7842L5.71094 8.66409C5.29207 9.45801 4.46005 10 3.5 10C2.11929 10 1 8.88074 1 7.50003ZM10 3.50003C10 4.32846 10.6716 5.00003 11.5 5.00003C12.3284 5.00003 13 4.32846 13 3.50003C13 2.6716 12.3284 2.00003 11.5 2.00003C10.6716 2.00003 10 2.6716 10 3.50003ZM2 7.50003C2 8.32846 2.67157 9.00003 3.5 9.00003C4.32843 9.00003 5 8.32846 5 7.50003C5 6.6716 4.32843 6.00003 3.5 6.00003C2.67157 6.00003 2 6.6716 2 7.50003ZM11.5 13C12.3284 13 13 12.3285 13 11.5C13 10.6716 12.3284 10 11.5 10C10.6716 10 10 10.6716 10 11.5C10 12.3285 10.6716 13 11.5 13Z",
6527 fill: "currentColor",
6528 })
6529 }
6530
6531 const WIDTH: Option<&'static str> = Some("15");
6532 const HEIGHT: Option<&'static str> = Some("15");
6533 const FILL: Option<&'static str> = Some("none");
6534 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6535
6536}
6537
6538#[derive(Default, Copy, Clone, PartialEq, Eq)]
6539pub struct Share2;
6540
6541impl IconShape for Share2 {
6542 fn child_elements(&self) -> Element {
6543 rsx!(path {
6544 d: "M2 5.50006C2 4.67163 2.67157 4.00006 3.5 4.00006L4.75 4.00006C5.02614 4.00006 5.25 4.22392 5.25 4.50006C5.25 4.7762 5.02614 5.00006 4.75 5.00006L3.5 5.00006C3.22386 5.00006 3 5.22392 3 5.50006L3 11.5001C3 11.7762 3.22386 12.0001 3.5 12.0001L11.5 12.0001C11.7761 12.0001 12 11.7762 12 11.5001L12 5.50006C12 5.22392 11.7761 5.00006 11.5 5.00006L10.25 5.00006C9.97386 5.00006 9.75 4.7762 9.75 4.50006C9.75 4.22392 9.97386 4.00006 10.25 4.00006L11.5 4.00006C12.3284 4.00006 13 4.67163 13 5.50006L13 11.5001C13 12.3285 12.3284 13.0001 11.5 13.0001L3.5 13.0001C2.67157 13.0001 2 12.3285 2 11.5001L2 5.50006ZM4.93164 3.06842C4.77781 2.91459 4.75854 2.6767 4.87402 2.50201L4.93164 2.4317L7.18164 0.181701C7.26603 0.0973098 7.38065 0.0498655 7.5 0.0498655C7.61935 0.0498655 7.73397 0.0973098 7.81836 0.181701L10.0684 2.4317C10.2441 2.60744 10.2441 2.89269 10.0684 3.06842C9.89263 3.24412 9.60737 3.24412 9.43164 3.06842L8 1.63678L8 8.50006C7.99997 8.77618 7.77612 9.00006 7.5 9.00006C7.22388 9.00006 7.00003 8.77618 7 8.50006L7 1.63678L5.56836 3.06842L5.49805 3.12604C5.32337 3.24152 5.08548 3.22223 4.93164 3.06842Z",
6545 fill: "currentColor",
6546 })
6547 }
6548
6549 const WIDTH: Option<&'static str> = Some("15");
6550 const HEIGHT: Option<&'static str> = Some("15");
6551 const FILL: Option<&'static str> = Some("none");
6552 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6553
6554}
6555
6556#[derive(Default, Copy, Clone, PartialEq, Eq)]
6557pub struct Shuffle;
6558
6559impl IconShape for Shuffle {
6560 fn child_elements(&self) -> Element {
6561 rsx!(path {
6562 d: "M8.08984 8.12814C8.58453 8.79296 9.05295 9.39787 9.56543 9.88986C10.2892 10.5846 11.0465 11.0002 12 11.0002H12.793L11.6465 9.85372L11.582 9.7756C11.4539 9.58152 11.4756 9.31756 11.6465 9.14669C11.8173 8.97583 12.0813 8.95407 12.2754 9.08224L12.3535 9.14669L14.3535 11.1467C14.5488 11.342 14.5488 11.6585 14.3535 11.8537L12.3535 13.8537C12.1583 14.049 11.8417 14.049 11.6465 13.8537C11.4512 13.6585 11.4512 13.342 11.6465 13.1467L12.793 12.0002H12C10.7037 12.0002 9.7107 11.4156 8.87207 10.6106C8.37205 10.1305 7.90974 9.55042 7.45801 8.95138C7.64654 8.71441 7.8276 8.48007 8 8.25021C8.03055 8.20947 8.05987 8.16831 8.08984 8.12814ZM11.6465 1.14669C11.8173 0.975828 12.0813 0.954074 12.2754 1.08224L12.3535 1.14669L14.3535 3.14669L14.418 3.22482C14.5461 3.4189 14.5244 3.68286 14.3535 3.85372L12.3535 5.85372C12.1583 6.04899 11.8417 6.04899 11.6465 5.85372C11.4512 5.65846 11.4512 5.34195 11.6465 5.14669L12.793 4.00021H12C11.0465 4.00021 10.2892 4.41586 9.56543 5.11056C8.82263 5.82365 8.17078 6.7728 7.40039 7.80001C5.89165 9.81166 4.00963 12.0002 0.5 12.0002C0.223858 12.0002 0 11.7764 0 11.5002C0 11.2241 0.223858 11.0002 0.5 11.0002C3.49021 11.0002 5.10841 9.18863 6.59961 7.2004C7.329 6.22788 8.05261 5.17665 8.87207 4.38986C9.7107 3.58478 10.7037 3.00021 12 3.00021H12.793L11.6465 1.85372L11.582 1.7756C11.4539 1.58152 11.4756 1.31756 11.6465 1.14669ZM0.5 3.00021C3.35242 3.00021 5.1293 4.44621 6.50488 6.06759C6.3319 6.30165 6.16402 6.53151 6 6.75021C5.96377 6.79852 5.92681 6.846 5.89062 6.89376C4.57223 5.29373 3.0261 4.00021 0.5 4.00021C0.223858 4.00021 0 3.77635 0 3.50021C0 3.22406 0.223858 3.00021 0.5 3.00021Z",
6563 fill: "currentColor",
6564 })
6565 }
6566
6567 const WIDTH: Option<&'static str> = Some("15");
6568 const HEIGHT: Option<&'static str> = Some("15");
6569 const FILL: Option<&'static str> = Some("none");
6570 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6571
6572}
6573
6574#[derive(Default, Copy, Clone, PartialEq, Eq)]
6575pub struct Size;
6576
6577impl IconShape for Size {
6578 fn child_elements(&self) -> Element {
6579 rsx!(path {
6580 d: "M11.591 3.05881C11.7959 3.10085 11.9503 3.28294 11.9504 3.50021V7.49924L11.9406 7.59103C11.8985 7.79574 11.7173 7.94924 11.5002 7.94943C11.2828 7.94933 11.1007 7.79513 11.0588 7.59006L11.05 7.50021V4.58615L4.58711 11.049L7.5002 11.05L7.59102 11.0588C7.79571 11.1008 7.94905 11.2822 7.94942 11.4992C7.94942 11.7478 7.74775 11.9494 7.49922 11.9494H3.5002C3.38087 11.9494 3.26622 11.902 3.18184 11.8176C3.09763 11.7332 3.05 11.6184 3.05 11.4992V7.50021L3.05977 7.40939C3.1019 7.20457 3.28292 7.05004 3.5002 7.05002C3.71763 7.05014 3.89974 7.20431 3.9416 7.40939L3.95039 7.50021V10.4143L10.4143 3.95041H7.5002C7.25181 3.9504 7.05023 3.74855 7.05 3.50021C7.05012 3.25179 7.25175 3.05003 7.5002 3.05002H11.5002L11.591 3.05881Z",
6581 fill: "currentColor",
6582 })
6583 }
6584
6585 const WIDTH: Option<&'static str> = Some("15");
6586 const HEIGHT: Option<&'static str> = Some("15");
6587 const FILL: Option<&'static str> = Some("none");
6588 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6589
6590}
6591
6592#[derive(Default, Copy, Clone, PartialEq, Eq)]
6593pub struct SketchLogo;
6594
6595impl IconShape for SketchLogo {
6596 fn child_elements(&self) -> Element {
6597 rsx!(path {
6598 d: "M11.0371 1.17657L11.1143 1.19318C11.1892 1.21716 11.2555 1.26438 11.3027 1.32892L14.3027 5.42853C14.3086 5.43661 14.3132 5.44551 14.3184 5.45392C14.3214 5.45877 14.3244 5.46357 14.3271 5.46857C14.3337 5.48039 14.3395 5.49239 14.3447 5.5047C14.3485 5.5137 14.3524 5.5227 14.3555 5.53204C14.3588 5.54199 14.3608 5.55219 14.3633 5.56232C14.3655 5.57136 14.3676 5.58038 14.3691 5.58966C14.3717 5.60523 14.3725 5.62082 14.373 5.63654C14.3732 5.64109 14.375 5.64561 14.375 5.65021V5.66095C14.3727 5.74206 14.3444 5.82242 14.29 5.88849L7.79004 13.7879C7.71881 13.8745 7.61211 13.9246 7.5 13.9246C7.38789 13.9246 7.28119 13.8745 7.20996 13.7879L0.709961 5.88849C0.703834 5.88104 0.698828 5.87285 0.693359 5.86505C0.691075 5.8618 0.688706 5.85861 0.686523 5.85529C0.647859 5.79624 0.626901 5.72908 0.625 5.66095V5.65021C0.625 5.64562 0.625813 5.64108 0.625977 5.63654C0.626655 5.61819 0.628472 5.59998 0.631836 5.58185C0.632931 5.57591 0.634371 5.5701 0.635742 5.56427C0.639564 5.54805 0.644379 5.53213 0.650391 5.51642C0.652754 5.51025 0.654551 5.50387 0.657227 5.49786C0.664861 5.48069 0.674222 5.46421 0.68457 5.44806C0.687011 5.44426 0.688833 5.44005 0.691406 5.43634C0.693255 5.43367 0.69534 5.43116 0.697266 5.42853L3.69727 1.32892L3.75 1.27032C3.80869 1.21787 3.88325 1.18454 3.96289 1.17657L7.46289 0.826965H7.53711L11.0371 1.17657ZM5.15137 6.02521L7.49902 12.1082L9.84863 6.02521H5.15137ZM1.79395 6.02521L6.75684 12.0565L4.22363 6.0672L4.21094 6.02521H1.79395ZM10.7891 6.02521C10.7854 6.03921 10.7822 6.05349 10.7764 6.0672L8.24219 12.0555L13.2041 6.02521H10.7891ZM10.9219 5.27521H10.9248V5.24982L10.9219 5.27521ZM5.65918 5.27521H9.34082L7.5 2.18243L5.65918 5.27521ZM4.42871 1.88263L4.82422 5.20978L6.95605 1.6297L4.42871 1.88263ZM10.1748 5.20978L10.5703 1.88263L8.04297 1.6297L10.1748 5.20978ZM10.9336 5.1756H13.1875L11.249 2.52521L10.9336 5.1756ZM1.81152 5.1756H4.06641L3.75 2.52423L1.81152 5.1756Z",
6599 fill: "currentColor",
6600 })
6601 }
6602
6603 const WIDTH: Option<&'static str> = Some("15");
6604 const HEIGHT: Option<&'static str> = Some("15");
6605 const FILL: Option<&'static str> = Some("none");
6606 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6607
6608}
6609
6610#[derive(Default, Copy, Clone, PartialEq, Eq)]
6611pub struct Slash;
6612
6613impl IconShape for Slash {
6614 fn child_elements(&self) -> Element {
6615 rsx!(path {
6616 d: "M5.46033 14H4.10779L9.46521 1H10.8177L5.46033 14Z",
6617 fill: "currentColor",
6618 })
6619 }
6620
6621 const WIDTH: Option<&'static str> = Some("15");
6622 const HEIGHT: Option<&'static str> = Some("15");
6623 const FILL: Option<&'static str> = Some("none");
6624 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6625
6626}
6627
6628#[derive(Default, Copy, Clone, PartialEq, Eq)]
6629pub struct Slider;
6630
6631impl IconShape for Slider {
6632 fn child_elements(&self) -> Element {
6633 rsx!(path {
6634 d: "M8.78027 4.76407C10.0011 4.88786 10.9854 5.81016 11.2041 7.0004H14.5L14.6006 7.01016C14.8285 7.05672 15 7.25871 15 7.5004C14.9998 7.74193 14.8284 7.94413 14.6006 7.99063L14.5 8.0004H11.2031C10.9678 9.2802 9.84783 10.2502 8.5 10.2504L8.21875 10.2357C6.99829 10.1118 6.01467 9.19024 5.7959 8.0004H0.5C0.22399 8.0004 0.000214414 7.77636 0 7.5004C0 7.22425 0.223858 7.0004 0.5 7.0004H5.79688C6.03222 5.72027 7.15198 4.74959 8.5 4.74942L8.78027 4.76407ZM8.5 5.69962C7.50578 5.69981 6.69922 6.50613 6.69922 7.5004C6.69948 8.49444 7.50594 9.30001 8.5 9.3002C9.494 9.29994 10.2995 8.4944 10.2998 7.5004C10.2998 6.50617 9.49416 5.69988 8.5 5.69962Z",
6635 fill: "currentColor",
6636 })
6637 }
6638
6639 const WIDTH: Option<&'static str> = Some("15");
6640 const HEIGHT: Option<&'static str> = Some("15");
6641 const FILL: Option<&'static str> = Some("none");
6642 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6643
6644}
6645
6646#[derive(Default, Copy, Clone, PartialEq, Eq)]
6647pub struct SpaceBetweenHorizontally;
6648
6649impl IconShape for SpaceBetweenHorizontally {
6650 fn child_elements(&self) -> Element {
6651 rsx!(path {
6652 d: "M5.99995 7.99993C5.99995 8.55221 5.55224 8.99993 4.99996 8.99993L0.999992 8.99993L0.999991 13.4999C0.999991 13.776 0.776135 13.9999 0.499995 13.9999C0.223855 13.9999 -5.58458e-07 13.776 -5.46388e-07 13.4999L-2.18555e-08 1.49999C1.89755e-06 1.22385 0.223857 0.999991 0.499996 0.999991C0.776135 0.999991 0.99999 1.22385 0.999992 1.49999L0.999992 5.99995L4.99996 5.99995C5.55224 5.99995 5.99995 6.44766 5.99995 6.99994L5.99995 7.99993ZM9.99992 8.99993C9.44764 8.99993 8.99993 8.55221 8.99993 7.99993L8.99993 6.99994C8.99993 6.44766 9.44764 5.99995 9.99992 5.99995L13.9999 5.99995L13.9999 1.49999C13.9999 1.22385 14.2237 0.999992 14.4999 0.999992C14.776 0.999992 14.9999 1.22385 14.9999 1.49999L14.9999 13.4999C14.9999 13.776 14.776 13.9999 14.4999 13.9999C14.2237 13.9999 13.9999 13.776 13.9999 13.4999L13.9999 8.99993L9.99992 8.99993Z",
6653 fill: "currentColor",
6654 })
6655 }
6656
6657 const WIDTH: Option<&'static str> = Some("15");
6658 const HEIGHT: Option<&'static str> = Some("15");
6659 const FILL: Option<&'static str> = Some("none");
6660 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6661
6662}
6663
6664#[derive(Default, Copy, Clone, PartialEq, Eq)]
6665pub struct SpaceBetweenVertically;
6666
6667impl IconShape for SpaceBetweenVertically {
6668 fn child_elements(&self) -> Element {
6669 rsx!(path {
6670 d: "M13.4999 14C13.776 14 13.9999 14.2239 13.9999 14.5C13.9999 14.7761 13.776 15 13.4999 15H1.49988C1.22373 15 0.999877 14.7761 0.999877 14.5C0.999877 14.2239 1.22373 14 1.49988 14H5.99987V10C5.99987 9.44776 6.44764 9.00007 6.99987 9.00001H7.99987C8.55215 9.00001 8.99987 9.44772 8.99987 10V14H13.4999ZM13.4999 1.52588e-05C13.776 1.5452e-05 13.9999 0.223873 13.9999 0.500015C13.9999 0.776157 13.776 1.00001 13.4999 1.00001H8.99987V5.00001C8.99987 5.55229 8.55215 6.00001 7.99987 6.00001H6.99987C6.44764 5.99994 5.99987 5.55225 5.99987 5.00001V1.00001H1.49988C1.22373 1.00001 0.999877 0.776157 0.999877 0.500015C0.999877 0.223873 1.22373 1.52688e-05 1.49988 1.52588e-05H13.4999Z",
6671 fill: "currentColor",
6672 })
6673 }
6674
6675 const WIDTH: Option<&'static str> = Some("15");
6676 const HEIGHT: Option<&'static str> = Some("15");
6677 const FILL: Option<&'static str> = Some("none");
6678 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6679
6680}
6681
6682#[derive(Default, Copy, Clone, PartialEq, Eq)]
6683pub struct SpaceEvenlyHorizontally;
6684
6685impl IconShape for SpaceEvenlyHorizontally {
6686 fn child_elements(&self) -> Element {
6687 rsx!(path {
6688 d: "M0.999991 13.4999C0.999991 13.776 0.776135 13.9999 0.499995 13.9999C0.223855 13.9999 -5.58458e-07 13.776 -5.46388e-07 13.4999L-2.18555e-08 1.49999C1.89755e-06 1.22385 0.223857 0.999991 0.499996 0.999991C0.776135 0.999991 0.99999 1.22385 0.999992 1.49999L0.999991 13.4999ZM6.99994 7.99993C6.99994 8.55221 6.55223 8.99993 5.99995 8.99993L2.99998 8.99993C2.4477 8.99993 1.99998 8.55221 1.99998 7.99993L1.99998 6.99994C1.99998 6.44766 2.4477 5.99995 2.99998 5.99995L5.99995 5.99995C6.55223 5.99995 6.99994 6.44766 6.99994 6.99994L6.99994 7.99993ZM12.9999 7.99993C12.9999 8.55222 12.5522 8.99993 11.9999 8.99993L8.99993 8.99993C8.44765 8.99993 7.99993 8.55221 7.99993 7.99993L7.99993 6.99994C7.99993 6.44766 8.44765 5.99995 8.99993 5.99995L11.9999 5.99995C12.5522 5.99995 12.9999 6.44766 12.9999 6.99994L12.9999 7.99993ZM14.9999 13.4999C14.9999 13.776 14.776 13.9999 14.4999 13.9999C14.2237 13.9999 13.9999 13.776 13.9999 13.4999L13.9999 1.49999C13.9999 1.22385 14.2237 0.999992 14.4999 0.999992C14.776 0.999992 14.9999 1.22385 14.9999 1.49999L14.9999 13.4999Z",
6689 fill: "currentColor",
6690 })
6691 }
6692
6693 const WIDTH: Option<&'static str> = Some("15");
6694 const HEIGHT: Option<&'static str> = Some("15");
6695 const FILL: Option<&'static str> = Some("none");
6696 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6697
6698}
6699
6700#[derive(Default, Copy, Clone, PartialEq, Eq)]
6701pub struct SpaceEvenlyVertically;
6702
6703impl IconShape for SpaceEvenlyVertically {
6704 fn child_elements(&self) -> Element {
6705 rsx!(path {
6706 d: "M13.4999 14C13.776 14 13.9999 14.2239 13.9999 14.5C13.9999 14.7761 13.776 15 13.4999 15H1.49988C1.22373 15 0.999877 14.7761 0.999877 14.5C0.999877 14.2239 1.22373 14 1.49988 14H13.4999ZM7.99987 8.00001C8.55215 8.00001 8.99987 8.44772 8.99987 9.00001V12C8.99987 12.5523 8.55215 13 7.99987 13H6.99987C6.44764 12.9999 5.99987 12.5522 5.99987 12V9.00001C5.99987 8.44776 6.44764 8.00007 6.99987 8.00001H7.99987ZM7.99987 2.00001C8.55215 2.00001 8.99987 2.44773 8.99987 3.00001V6.00001C8.99987 6.55229 8.55215 7.00001 7.99987 7.00001H6.99987C6.44764 6.99994 5.99987 6.55225 5.99987 6.00001V3.00001C5.99987 2.44777 6.44764 2.00008 6.99987 2.00001H7.99987ZM13.4999 1.52588e-05C13.776 1.5452e-05 13.9999 0.223873 13.9999 0.500015C13.9999 0.776157 13.776 1.00001 13.4999 1.00001H1.49988C1.22373 1.00001 0.999877 0.776157 0.999877 0.500015C0.999877 0.223873 1.22373 1.52688e-05 1.49988 1.52588e-05H13.4999Z",
6707 fill: "currentColor",
6708 })
6709 }
6710
6711 const WIDTH: Option<&'static str> = Some("15");
6712 const HEIGHT: Option<&'static str> = Some("15");
6713 const FILL: Option<&'static str> = Some("none");
6714 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6715
6716}
6717
6718#[derive(Default, Copy, Clone, PartialEq, Eq)]
6719pub struct SpeakerLoud;
6720
6721impl IconShape for SpeakerLoud {
6722 fn child_elements(&self) -> Element {
6723 rsx!(path {
6724 d: "M7.00195 1.06561C7.14436 0.984293 7.3197 0.977587 7.46973 1.05096C7.64126 1.13486 7.75 1.30922 7.75 1.50018V13.5002C7.75 13.6911 7.64126 13.8655 7.46973 13.9494C7.29823 14.0333 7.09409 14.0119 6.94336 13.8947L3.22168 11.0002H1.5C0.723336 11.0002 0.0846095 10.4099 0.0078125 9.6535L0 9.50018V5.50018C1.61064e-06 4.67175 0.671574 4.00018 1.5 4.00018H3.22168L6.94336 1.10565L7.00195 1.06561ZM12.1152 1.38397C12.2838 1.24147 12.536 1.26242 12.6787 1.43084L12.9473 1.76287C15.5508 5.13386 15.5507 9.86645 12.9473 13.2375L12.6787 13.5695L12.6201 13.6262C12.4739 13.7409 12.2627 13.741 12.1152 13.6164C11.9679 13.4915 11.9324 13.2824 12.0215 13.1193L12.0684 13.0529L12.3135 12.7492C14.6948 9.66597 14.6955 5.33554 12.3145 2.25213L12.0684 1.94744L12.0225 1.88104C11.933 1.71785 11.9677 1.50896 12.1152 1.38397ZM3.7002 4.89471C3.61243 4.96297 3.50377 5.00018 3.39258 5.00018H1.5C1.22386 5.00018 1 5.22404 1 5.50018V9.50018L1.00977 9.60077C1.05629 9.82873 1.25829 10.0002 1.5 10.0002H3.39258L3.47559 10.007C3.55692 10.0207 3.63442 10.0545 3.7002 10.1056L6.75 12.4777V2.52166L3.7002 4.89471ZM10.2783 3.84784C10.4391 3.74098 10.6493 3.76591 10.7812 3.89666L10.833 3.95916L10.9629 4.16229C12.2548 6.27291 12.2112 8.96969 10.833 11.0412C10.7106 11.2248 10.4621 11.2747 10.2783 11.1525C10.0945 11.0302 10.0448 10.7817 10.167 10.5978C11.3724 8.78616 11.4094 6.42521 10.2793 4.57928L10.166 4.40252L10.1289 4.33123C10.059 4.15884 10.1174 3.9549 10.2783 3.84784Z",
6725 fill: "currentColor",
6726 })
6727 }
6728
6729 const WIDTH: Option<&'static str> = Some("15");
6730 const HEIGHT: Option<&'static str> = Some("15");
6731 const FILL: Option<&'static str> = Some("none");
6732 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6733
6734}
6735
6736#[derive(Default, Copy, Clone, PartialEq, Eq)]
6737pub struct SpeakerModerate;
6738
6739impl IconShape for SpeakerModerate {
6740 fn child_elements(&self) -> Element {
6741 rsx!(path {
6742 d: "M7.25879 1.06173C7.40141 0.983238 7.5754 0.978824 7.72363 1.05294C7.89302 1.13764 8 1.31082 8 1.50021V13.5002C8 13.6896 7.89302 13.8628 7.72363 13.9475C7.55436 14.0321 7.35167 14.014 7.2002 13.9006L3.33301 11.0002H1.5C0.723336 11.0002 0.0846097 10.4099 0.0078125 9.65353L0 9.50021V5.50021C1.61064e-06 4.67178 0.671574 4.00021 1.5 4.00021H3.33301L7.2002 1.09982L7.25879 1.06173ZM3.7998 4.9006C3.71332 4.96536 3.60805 5.00021 3.5 5.00021H1.5C1.22386 5.00021 1 5.22407 1 5.50021V9.50021L1.00977 9.60079C1.05629 9.82876 1.25829 10.0002 1.5 10.0002H3.5C3.60805 10.0002 3.71332 10.0351 3.7998 10.0998L7 12.4992V2.50021L3.7998 4.9006ZM10.2783 3.84786C10.4391 3.74101 10.6493 3.76594 10.7812 3.89669L10.833 3.95919L10.9629 4.16232C12.2548 6.27294 12.2112 8.96972 10.833 11.0412C10.7106 11.2248 10.4621 11.2747 10.2783 11.1526C10.0945 11.0302 10.0448 10.7818 10.167 10.5979C11.3724 8.78619 11.4094 6.42524 10.2793 4.57931L10.166 4.40255L10.1289 4.33126C10.059 4.15887 10.1174 3.95493 10.2783 3.84786Z",
6743 fill: "currentColor",
6744 })
6745 }
6746
6747 const WIDTH: Option<&'static str> = Some("15");
6748 const HEIGHT: Option<&'static str> = Some("15");
6749 const FILL: Option<&'static str> = Some("none");
6750 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6751
6752}
6753
6754#[derive(Default, Copy, Clone, PartialEq, Eq)]
6755pub struct SpeakerOff;
6756
6757impl IconShape for SpeakerOff {
6758 fn child_elements(&self) -> Element {
6759 rsx!(path {
6760 d: "M7.25867 1.06171C7.40129 0.983222 7.57527 0.978808 7.72351 1.05292C7.8929 1.13762 7.99987 1.3108 7.99987 1.50018V13.5C7.99987 13.6894 7.8929 13.8626 7.72351 13.9472C7.55423 14.0319 7.35155 14.0138 7.20008 13.9004L3.33295 11H1.49998C0.723325 11 0.0846083 10.4098 0.00781237 9.65337L0 9.50005V5.50012C1.61061e-06 4.67171 0.671563 4.00014 1.49998 4.00014H3.33295L7.20008 1.0998L7.25867 1.06171ZM3.79974 4.90052C3.71326 4.96528 3.608 5.00013 3.49994 5.00013H1.49998C1.22384 5.00013 0.999985 5.22398 0.999984 5.50012V9.50005L1.00975 9.60064C1.05627 9.8286 1.25827 10 1.49998 10H3.49994C3.608 10 3.71326 10.0349 3.79974 10.0997L6.99989 12.499V2.50017L3.79974 4.90052ZM14.1463 5.14661C14.3415 4.95135 14.658 4.95135 14.8533 5.14661C15.0485 5.34187 15.0485 5.65837 14.8533 5.85363L13.2068 7.50008L14.8533 9.14654L14.9177 9.22467C15.0459 9.41874 15.0241 9.6827 14.8533 9.85356C14.6824 10.0244 14.4185 10.0462 14.2244 9.91801L14.1463 9.85356L12.4998 8.2071L10.8533 9.85356C10.6581 10.0488 10.3416 10.0488 10.1463 9.85356C9.95106 9.6583 9.95106 9.3418 10.1463 9.14654L11.7928 7.50008L10.1463 5.85363L10.0819 5.7755C9.9537 5.58143 9.97546 5.31747 10.1463 5.14661C10.3172 4.97575 10.5811 4.95399 10.7752 5.08216L10.8533 5.14661L12.4998 6.79307L14.1463 5.14661Z",
6761 fill: "currentColor",
6762 })
6763 }
6764
6765 const WIDTH: Option<&'static str> = Some("15");
6766 const HEIGHT: Option<&'static str> = Some("15");
6767 const FILL: Option<&'static str> = Some("none");
6768 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6769
6770}
6771
6772#[derive(Default, Copy, Clone, PartialEq, Eq)]
6773pub struct SpeakerQuiet;
6774
6775impl IconShape for SpeakerQuiet {
6776 fn child_elements(&self) -> Element {
6777 rsx!(path {
6778 d: "M7.25879 1.06173C7.40141 0.983238 7.5754 0.978824 7.72363 1.05294C7.89302 1.13764 8 1.31082 8 1.50021V13.5002C8 13.6896 7.89302 13.8628 7.72363 13.9475C7.55436 14.0321 7.35167 14.014 7.2002 13.9006L3.33301 11.0002H1.5C0.723336 11.0002 0.0846097 10.4099 0.0078125 9.65353L0 9.50021V5.50021C1.61064e-06 4.67178 0.671574 4.00021 1.5 4.00021H3.33301L7.2002 1.09982L7.25879 1.06173ZM3.7998 4.9006C3.71332 4.96536 3.60805 5.00021 3.5 5.00021H1.5C1.22386 5.00021 1 5.22407 1 5.50021V9.50021L1.00977 9.60079C1.05629 9.82876 1.25829 10.0002 1.5 10.0002H3.5C3.60805 10.0002 3.71332 10.0351 3.7998 10.0998L7 12.4992V2.50021L3.7998 4.9006ZM9.52832 4.94357C9.68914 4.83682 9.89932 4.86253 10.0312 4.99337L10.084 5.05587L10.2559 5.3381C11.0078 6.67699 11.0078 8.32343 10.2559 9.66232L10.083 9.94454L10.0312 10.007C9.89921 10.1379 9.68914 10.1619 9.52832 10.0549C9.36795 9.94785 9.30943 9.74556 9.37891 9.57345L9.41699 9.50118L9.55762 9.26974C10.1728 8.17408 10.1738 6.82534 9.55859 5.7297L9.41602 5.49923L9.37891 5.42696C9.30932 5.25466 9.36755 5.05053 9.52832 4.94357Z",
6779 fill: "currentColor",
6780 })
6781 }
6782
6783 const WIDTH: Option<&'static str> = Some("15");
6784 const HEIGHT: Option<&'static str> = Some("15");
6785 const FILL: Option<&'static str> = Some("none");
6786 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6787
6788}
6789
6790#[derive(Default, Copy, Clone, PartialEq, Eq)]
6791pub struct Square;
6792
6793impl IconShape for Square {
6794 fn child_elements(&self) -> Element {
6795 rsx!(path {
6796 d: "M14 14H1V1H14V14ZM2 13H13V2H2V13Z",
6797 fill: "currentColor",
6798 })
6799 }
6800
6801 const WIDTH: Option<&'static str> = Some("15");
6802 const HEIGHT: Option<&'static str> = Some("15");
6803 const FILL: Option<&'static str> = Some("none");
6804 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6805
6806}
6807
6808#[derive(Default, Copy, Clone, PartialEq, Eq)]
6809pub struct Stack;
6810
6811impl IconShape for Stack {
6812 fn child_elements(&self) -> Element {
6813 rsx!(path {
6814 d: "M12.8378 8.27743C13.0576 8.20179 13.3077 8.28825 13.4306 8.49618C13.5531 8.70407 13.508 8.96425 13.3358 9.12021L13.2538 9.18075L7.75381 12.4308C7.59714 12.5231 7.40267 12.5231 7.246 12.4308L1.746 9.18075L1.66397 9.12021C1.49183 8.96425 1.44671 8.70405 1.56924 8.49618C1.69212 8.28825 1.94221 8.20183 2.16202 8.27743L2.25381 8.31942L7.49991 11.419L12.746 8.31942L12.8378 8.27743ZM7.30557 1.78915C7.45005 1.72821 7.6165 1.73849 7.75381 1.81942L13.2538 5.06942C13.4061 5.15938 13.4999 5.32326 13.4999 5.50009C13.4999 5.67692 13.4061 5.8408 13.2538 5.93075L7.75381 9.18075C7.59714 9.2731 7.40267 9.27312 7.246 9.18075L1.746 5.93075C1.5938 5.84079 1.49991 5.67689 1.49991 5.50009C1.49991 5.32328 1.5938 5.15939 1.746 5.06942L7.246 1.81942L7.30557 1.78915ZM2.98233 5.50009L7.49991 8.16903L12.0165 5.50009L7.49991 2.83017L2.98233 5.50009Z",
6815 fill: "currentColor",
6816 })
6817 }
6818
6819 const WIDTH: Option<&'static str> = Some("15");
6820 const HEIGHT: Option<&'static str> = Some("15");
6821 const FILL: Option<&'static str> = Some("none");
6822 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6823
6824}
6825
6826#[derive(Default, Copy, Clone, PartialEq, Eq)]
6827pub struct Star;
6828
6829impl IconShape for Star {
6830 fn child_elements(&self) -> Element {
6831 rsx!(path {
6832 d: "M7.22271 0.665773C7.32528 0.419686 7.67484 0.419669 7.77739 0.665773L9.41314 4.60034C9.4563 4.70405 9.55412 4.77481 9.66607 4.78394L13.9141 5.12476C14.1799 5.14619 14.2874 5.47752 14.085 5.65112L13.8555 5.84644L10.8487 8.42358C10.7636 8.49661 10.7263 8.61137 10.752 8.72046L11.6709 12.572L11.7413 12.866C11.7953 13.093 11.5857 13.2787 11.3799 13.2283L11.293 13.1912L11.0352 13.033L7.6563 10.9705C7.56036 10.9119 7.43975 10.9119 7.3438 10.9705L3.70708 13.1912L3.62017 13.2283C3.41445 13.2787 3.20484 13.093 3.25884 12.866L3.32818 12.572L4.2481 8.72046C4.2674 8.63858 4.25134 8.55322 4.20611 8.48511L4.15142 8.42358L0.91509 5.65112C0.712634 5.47752 0.820148 5.14618 1.08599 5.12476L1.38677 5.10034L5.33403 4.78394C5.41796 4.77708 5.49411 4.73573 5.54497 4.67163L5.58696 4.60034L7.22271 0.665773ZM6.50982 4.98413C6.34606 5.37782 6.00173 5.66244 5.59282 5.75366L5.41314 5.78101L2.84282 5.98608L4.80181 7.66382L4.93071 7.79077C5.16843 8.05995 5.28398 8.41668 5.25005 8.77417L5.22075 8.95288L4.62212 11.4597L6.82232 10.1169L6.98345 10.0339C7.31289 9.89117 7.68721 9.89116 8.01665 10.0339L8.17778 10.1169L10.377 11.4597L9.77935 8.95288C9.66641 8.47881 9.82817 7.98087 10.1983 7.66382L12.1563 5.98608L9.58696 5.78101C9.16189 5.74693 8.78445 5.50702 8.57134 5.14624L8.49028 4.98413L7.50005 2.60327L6.50982 4.98413Z",
6833 fill: "currentColor",
6834 })
6835 }
6836
6837 const WIDTH: Option<&'static str> = Some("15");
6838 const HEIGHT: Option<&'static str> = Some("15");
6839 const FILL: Option<&'static str> = Some("none");
6840 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6841
6842}
6843
6844#[derive(Default, Copy, Clone, PartialEq, Eq)]
6845pub struct StarFilled;
6846
6847impl IconShape for StarFilled {
6848 fn child_elements(&self) -> Element {
6849 rsx!(path {
6850 d: "M7.22257 0.665927C7.32508 0.419634 7.67476 0.419617 7.77726 0.665927L9.413 4.6005C9.45615 4.70425 9.55396 4.77497 9.66593 4.78409L13.914 5.12491C14.1799 5.14635 14.2875 5.47869 14.0849 5.65226L10.8485 8.42374C10.7632 8.49693 10.7258 8.61221 10.7519 8.72159L11.7411 12.8661C11.803 13.1256 11.5206 13.331 11.2929 13.1923L7.65616 10.9706C7.56022 10.9121 7.43961 10.9121 7.34366 10.9706L3.70694 13.1923C3.47926 13.3311 3.19681 13.1256 3.2587 12.8661L4.24796 8.72159C4.27405 8.61223 4.23661 8.49693 4.15128 8.42374L0.914951 5.65226C0.712311 5.47867 0.819914 5.1463 1.08585 5.12491L5.3339 4.78409C5.44584 4.77494 5.54368 4.70422 5.58683 4.6005L7.22257 0.665927Z",
6851 fill: "currentColor",
6852 })
6853 }
6854
6855 const WIDTH: Option<&'static str> = Some("15");
6856 const HEIGHT: Option<&'static str> = Some("15");
6857 const FILL: Option<&'static str> = Some("none");
6858 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6859
6860}
6861
6862#[derive(Default, Copy, Clone, PartialEq, Eq)]
6863pub struct StitchesLogo;
6864
6865impl IconShape for StitchesLogo {
6866 fn child_elements(&self) -> Element {
6867 rsx!(path {
6868 d: "M7.50037 0.849976C11.1729 0.850187 14.1498 3.8278 14.1498 7.50037C14.1496 11.1728 11.1728 14.1496 7.50037 14.1498C3.8278 14.1498 0.850187 11.1729 0.849976 7.50037C0.849976 3.82767 3.82767 0.849976 7.50037 0.849976ZM6.849 13.1107C7.06279 13.1353 7.28 13.1498 7.50037 13.1498C9.82469 13.1496 11.8197 11.7455 12.6869 9.73962L6.849 13.1107ZM7.82556 5.19861L11.3617 7.82068L11.4291 7.8822C11.5687 8.03804 11.5849 8.2759 11.4554 8.45056C11.4175 8.50156 11.3695 8.53992 11.3177 8.5697L11.3187 8.57166L9.87341 9.40466C9.87024 9.40677 9.86687 9.40851 9.86365 9.41052L8.41052 10.2484C8.39769 10.2573 8.38405 10.2644 8.37048 10.2719L4.68689 12.3988C4.96677 12.5599 5.26129 12.6981 5.56873 12.8099L13.0619 8.48376C13.118 8.16426 13.1498 7.83595 13.1498 7.50037C13.1498 5.80215 12.4001 4.27935 11.2142 3.24353L7.82556 5.19861ZM1.91248 6.65564C1.87116 6.9312 1.84998 7.2133 1.84998 7.50037C1.85009 9.23964 2.63716 10.7941 3.87341 11.8304L7.32361 9.83728L3.72498 7.26501L3.71814 7.25818C3.69841 7.24351 3.6798 7.22741 3.66248 7.20935L3.65662 7.20447L3.65466 7.20154C3.64687 7.193 3.64037 7.18342 3.63318 7.17419C3.62199 7.15989 3.61119 7.14561 3.60193 7.13025C3.60052 7.12792 3.59842 7.12578 3.59705 7.12341C3.59397 7.11809 3.59206 7.11221 3.58923 7.10681C3.58066 7.09047 3.57227 7.07417 3.5658 7.05701C3.56081 7.04378 3.55677 7.03042 3.5531 7.01697C3.55185 7.01239 3.5503 7.00791 3.54919 7.0033L3.53943 6.95447C3.53879 6.94929 3.53891 6.94403 3.53845 6.93884C3.53125 6.86033 3.5442 6.77964 3.57947 6.70544L3.62341 6.6322C3.62899 6.62459 3.63589 6.618 3.64197 6.61072C3.6553 6.59473 3.66892 6.57948 3.68396 6.5658C3.68925 6.56099 3.695 6.55671 3.70056 6.55212C3.71598 6.53939 3.73167 6.52739 3.74841 6.51697C3.75284 6.5142 3.75753 6.51081 3.76208 6.50818L10.4213 2.66248C10.149 2.49766 9.86075 2.3572 9.56091 2.23962L1.91248 6.65564ZM4.81482 6.93787L8.18005 9.34314L8.80603 8.98279L5.50916 6.53748L4.81482 6.93787ZM6.35779 6.04724L9.65564 8.49158L10.2738 8.13416L6.97693 5.68884L6.35779 6.04724ZM7.50037 1.84998C5.11309 1.84998 3.07211 3.33108 2.24451 5.42419L8.32947 1.9115C8.05882 1.87167 7.78208 1.84999 7.50037 1.84998Z",
6869 fill: "currentColor",
6870 })
6871 }
6872
6873 const WIDTH: Option<&'static str> = Some("15");
6874 const HEIGHT: Option<&'static str> = Some("15");
6875 const FILL: Option<&'static str> = Some("none");
6876 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6877
6878}
6879
6880#[derive(Default, Copy, Clone, PartialEq, Eq)]
6881pub struct Stop;
6882
6883impl IconShape for Stop {
6884 fn child_elements(&self) -> Element {
6885 rsx!(path {
6886 d: "M12 2C12.5523 2 13 2.44772 13 3V12C13 12.5523 12.5523 13 12 13H3C2.44772 13 2 12.5523 2 12V3C2 2.44772 2.44772 2 3 2H12ZM3 12H12V3H3V12Z",
6887 fill: "currentColor",
6888 })
6889 }
6890
6891 const WIDTH: Option<&'static str> = Some("15");
6892 const HEIGHT: Option<&'static str> = Some("15");
6893 const FILL: Option<&'static str> = Some("none");
6894 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6895
6896}
6897
6898#[derive(Default, Copy, Clone, PartialEq, Eq)]
6899pub struct Stopwatch;
6900
6901impl IconShape for Stopwatch {
6902 fn child_elements(&self) -> Element {
6903 rsx!(path {
6904 d: "M9.00037 0C9.27633 0.000211196 9.50037 0.223988 9.50037 0.5C9.50037 0.776012 9.27633 0.999789 9.00037 1H8.00037V2.12109C9.09904 2.2061 10.1194 2.56775 10.9926 3.1377C11.0122 3.11025 11.0334 3.08326 11.058 3.05859L11.5267 3.52734C11.5276 3.52808 11.5288 3.52856 11.5297 3.5293L11.5004 3.5L11.058 3.05859L11.8588 2.25781C12.1028 2.01426 12.4986 2.014 12.7426 2.25781C12.9863 2.50188 12.9864 2.89859 12.7426 3.14258L11.9662 3.91797C13.1585 5.08042 13.8997 6.70335 13.8998 8.5C13.8996 12.0343 11.0347 14.8992 7.50037 14.8994C3.96587 14.8994 1.10019 12.0344 1.09998 8.5C1.10016 5.13385 3.69958 2.37627 7.00037 2.12109V1H6.00037C5.72422 1 5.50037 0.776142 5.50037 0.5C5.50037 0.223858 5.72422 0 6.00037 0H9.00037ZM7.50037 3.09961C4.51815 3.09961 2.10017 5.51783 2.09998 8.5C2.10019 11.4822 4.51816 13.8994 7.50037 13.8994C10.4824 13.8992 12.8996 11.482 12.8998 8.5C12.8996 5.51796 10.4824 3.09982 7.50037 3.09961ZM7.50037 4C7.77633 4.00021 8.00037 4.22399 8.00037 4.5V9.5C8.00037 9.77601 7.77633 9.99979 7.50037 10C7.22422 10 7.00037 9.77614 7.00037 9.5V4.5C7.00037 4.22386 7.22422 4 7.50037 4Z",
6905 fill: "currentColor",
6906 })
6907 }
6908
6909 const WIDTH: Option<&'static str> = Some("15");
6910 const HEIGHT: Option<&'static str> = Some("15");
6911 const FILL: Option<&'static str> = Some("none");
6912 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6913
6914}
6915
6916#[derive(Default, Copy, Clone, PartialEq, Eq)]
6917pub struct StretchHorizontally;
6918
6919impl IconShape for StretchHorizontally {
6920 fn child_elements(&self) -> Element {
6921 rsx!(path {
6922 d: "M0.999992 8.99993L0.999991 13.4999C0.999991 13.776 0.776135 13.9999 0.499995 13.9999C0.223855 13.9999 -5.58458e-07 13.776 -5.46388e-07 13.4999L-2.18555e-08 1.49999C1.89755e-06 1.22385 0.223857 0.999991 0.499996 0.999991C0.776135 0.999991 0.99999 1.22385 0.999992 1.49999L0.999992 5.99995L13.9999 5.99995L13.9999 1.49999C13.9999 1.22385 14.2237 0.999992 14.4999 0.999992C14.776 0.999992 14.9999 1.22385 14.9999 1.49999L14.9999 13.4999C14.9999 13.776 14.776 13.9999 14.4999 13.9999C14.2237 13.9999 13.9999 13.776 13.9999 13.4999L13.9999 8.99993L0.999992 8.99993Z",
6923 fill: "currentColor",
6924 })
6925 }
6926
6927 const WIDTH: Option<&'static str> = Some("15");
6928 const HEIGHT: Option<&'static str> = Some("15");
6929 const FILL: Option<&'static str> = Some("none");
6930 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6931
6932}
6933
6934#[derive(Default, Copy, Clone, PartialEq, Eq)]
6935pub struct StretchVertically;
6936
6937impl IconShape for StretchVertically {
6938 fn child_elements(&self) -> Element {
6939 rsx!(path {
6940 d: "M13.4999 14C13.776 14 13.9999 14.2239 13.9999 14.5C13.9999 14.7761 13.776 15 13.4999 15H1.49988C1.22373 15 0.999877 14.7761 0.999877 14.5C0.999877 14.2239 1.22373 14 1.49988 14H5.99987V1.00001H1.49988C1.22373 1.00001 0.999877 0.776157 0.999877 0.500015C0.999877 0.223873 1.22373 1.52688e-05 1.49988 1.52588e-05H13.4999C13.776 1.5452e-05 13.9999 0.223873 13.9999 0.500015C13.9999 0.776157 13.776 1.00001 13.4999 1.00001H8.99987V14H13.4999Z",
6941 fill: "currentColor",
6942 })
6943 }
6944
6945 const WIDTH: Option<&'static str> = Some("15");
6946 const HEIGHT: Option<&'static str> = Some("15");
6947 const FILL: Option<&'static str> = Some("none");
6948 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6949
6950}
6951
6952#[derive(Default, Copy, Clone, PartialEq, Eq)]
6953pub struct Strikethrough;
6954
6955impl IconShape for Strikethrough {
6956 fn child_elements(&self) -> Element {
6957 rsx!(path {
6958 d: "M10.5003 2.75C10.7763 2.75018 11.0003 2.97397 11.0003 3.25V7.09961H12.5003L12.5814 7.1084C12.7632 7.14602 12.9007 7.30701 12.9007 7.5C12.9007 7.693 12.7632 7.85397 12.5814 7.8916L12.5003 7.90039H11.0003V8.5498C11.0003 10.4827 9.43315 12.0496 7.50031 12.0498C5.56731 12.0498 4.00031 10.4828 4.00031 8.5498V7.90039H2.50031C2.27939 7.90039 2.09991 7.72091 2.09991 7.5C2.09993 7.2791 2.2794 7.09961 2.50031 7.09961H4.00031V3.25C4.00031 2.97386 4.22416 2.75 4.50031 2.75C4.77629 2.75018 5.00031 2.97397 5.00031 3.25V7.09961H10.0003V3.25C10.0003 2.97386 10.2242 2.75 10.5003 2.75ZM5.00031 7.90039V8.5498C5.00031 9.93052 6.11959 11.0498 7.50031 11.0498C8.88086 11.0496 10.0003 9.9304 10.0003 8.5498V7.90039H5.00031Z",
6959 fill: "currentColor",
6960 })
6961 }
6962
6963 const WIDTH: Option<&'static str> = Some("15");
6964 const HEIGHT: Option<&'static str> = Some("15");
6965 const FILL: Option<&'static str> = Some("none");
6966 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6967
6968}
6969
6970#[derive(Default, Copy, Clone, PartialEq, Eq)]
6971pub struct Sun;
6972
6973impl IconShape for Sun {
6974 fn child_elements(&self) -> Element {
6975 rsx!(path {
6976 d: "M7.5 12C7.77614 12 8 12.2239 8 12.5V14.5C8 14.7761 7.77614 15 7.5 15C7.22386 15 7 14.7761 7 14.5V12.5C7 12.2239 7.22386 12 7.5 12ZM3.61133 10.6816C3.80662 10.4868 4.12322 10.4865 4.31836 10.6816C4.5135 10.8768 4.51324 11.1934 4.31836 11.3887L2.90332 12.8037C2.70802 12.9985 2.3914 12.9988 2.19629 12.8037C2.00118 12.6086 2.00147 12.292 2.19629 12.0967L3.61133 10.6816ZM10.6816 10.6816C10.8768 10.4865 11.1934 10.4868 11.3887 10.6816L12.8037 12.0967C12.9985 12.292 12.9988 12.6086 12.8037 12.8037C12.6086 12.9988 12.292 12.9985 12.0967 12.8037L10.6816 11.3887C10.4868 11.1934 10.4865 10.8768 10.6816 10.6816ZM7.5 4.5C9.15685 4.5 10.5 5.84315 10.5 7.5C10.5 9.15685 9.15685 10.5 7.5 10.5C5.84315 10.5 4.5 9.15685 4.5 7.5C4.5 5.84315 5.84315 4.5 7.5 4.5ZM7.5 5.5C6.39543 5.5 5.5 6.39543 5.5 7.5C5.5 8.60457 6.39543 9.5 7.5 9.5C8.60457 9.5 9.5 8.60457 9.5 7.5C9.5 6.39543 8.60457 5.5 7.5 5.5ZM2.5 7C2.77614 7 3 7.22386 3 7.5C3 7.77614 2.77614 8 2.5 8H0.5C0.223858 8 0 7.77614 0 7.5C0 7.22386 0.223858 7 0.5 7H2.5ZM14.5 7C14.7761 7 15 7.22386 15 7.5C15 7.77614 14.7761 8 14.5 8H12.5C12.2239 8 12 7.77614 12 7.5C12 7.22386 12.2239 7 12.5 7H14.5ZM2.19629 2.19629C2.3914 2.00118 2.70802 2.00147 2.90332 2.19629L4.31836 3.61133C4.51324 3.80662 4.5135 4.12322 4.31836 4.31836C4.12322 4.5135 3.80662 4.51324 3.61133 4.31836L2.19629 2.90332C2.00147 2.70802 2.00118 2.3914 2.19629 2.19629ZM12.0967 2.19629C12.292 2.00147 12.6086 2.00118 12.8037 2.19629C12.9988 2.3914 12.9985 2.70802 12.8037 2.90332L11.3887 4.31836C11.1934 4.51324 10.8768 4.5135 10.6816 4.31836C10.4865 4.12322 10.4868 3.80662 10.6816 3.61133L12.0967 2.19629ZM7.5 0C7.77614 0 8 0.223858 8 0.5V2.5C8 2.77614 7.77614 3 7.5 3C7.22386 3 7 2.77614 7 2.5V0.5C7 0.223858 7.22386 0 7.5 0Z",
6977 fill: "currentColor",
6978 })
6979 }
6980
6981 const WIDTH: Option<&'static str> = Some("15");
6982 const HEIGHT: Option<&'static str> = Some("15");
6983 const FILL: Option<&'static str> = Some("none");
6984 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
6985
6986}
6987
6988#[derive(Default, Copy, Clone, PartialEq, Eq)]
6989pub struct Switch;
6990
6991impl IconShape for Switch {
6992 fn child_elements(&self) -> Element {
6993 rsx!(path {
6994 d: "M10.7314 3.00586C10.8806 3.01342 11.0279 3.02807 11.1729 3.0498C11.2013 3.05407 11.2295 3.05965 11.2578 3.06445C11.3726 3.08392 11.486 3.10678 11.5977 3.13477L11.625 3.1416C11.6673 3.15249 11.7092 3.16468 11.751 3.17676C11.7715 3.18268 11.7921 3.18813 11.8125 3.19434C11.843 3.20361 11.8731 3.21373 11.9033 3.22363C12.0136 3.2598 12.1222 3.29948 12.2285 3.34375C12.2627 3.35799 12.2963 3.37361 12.3301 3.38867C12.3604 3.40221 12.3909 3.4155 12.4209 3.42969C12.4637 3.44994 12.5058 3.47162 12.5479 3.49316C12.5681 3.50352 12.5883 3.51376 12.6084 3.52441C12.637 3.53961 12.6651 3.5555 12.6934 3.57129C12.7947 3.62799 12.8939 3.68784 12.9902 3.75195C13.0136 3.76752 13.0365 3.78381 13.0596 3.7998C13.092 3.8223 13.1244 3.84484 13.1562 3.86816C13.1919 3.89427 13.2269 3.92113 13.2617 3.94824C13.2791 3.96177 13.2963 3.97548 13.3135 3.98926C13.347 4.01619 13.3803 4.04342 13.4131 4.07129C13.4384 4.09282 13.4634 4.11464 13.4883 4.13672C13.5126 4.15832 13.5367 4.18004 13.5605 4.20215C13.594 4.23317 13.6267 4.26486 13.6592 4.29688C13.6736 4.3111 13.6879 4.32542 13.7021 4.33984C13.7373 4.37541 13.7718 4.41153 13.8057 4.44824C13.8218 4.46568 13.8377 4.48328 13.8535 4.50098C13.884 4.53503 13.9139 4.56952 13.9434 4.60449C13.9606 4.62499 13.9782 4.6452 13.9951 4.66602C14.0207 4.69751 14.0456 4.72953 14.0703 4.76172C14.0918 4.78975 14.1129 4.81813 14.1338 4.84668C14.1489 4.86739 14.1639 4.88821 14.1787 4.90918C14.2023 4.94267 14.2253 4.97659 14.248 5.01074C14.2722 5.04704 14.2952 5.08406 14.3184 5.12109C14.3332 5.14491 14.3488 5.16827 14.3633 5.19238C14.3793 5.21915 14.3947 5.24631 14.4102 5.27344C14.4297 5.30772 14.4491 5.34212 14.4678 5.37695C14.4878 5.41439 14.5073 5.45217 14.5264 5.49023C14.5405 5.51847 14.5548 5.54662 14.5684 5.5752C14.5833 5.60677 14.5971 5.63892 14.6113 5.6709C14.6278 5.70776 14.6437 5.74485 14.6592 5.78223C14.666 5.79881 14.673 5.81535 14.6797 5.83203C14.6975 5.87656 14.7141 5.92158 14.7305 5.9668C14.745 6.00692 14.759 6.04725 14.7725 6.08789C14.7833 6.1207 14.7946 6.15339 14.8047 6.18652C14.8144 6.21852 14.823 6.2509 14.832 6.2832C14.8419 6.31829 14.8523 6.35325 14.8613 6.38867C14.8894 6.49932 14.9119 6.61184 14.9316 6.72559C14.9377 6.76038 14.945 6.79502 14.9502 6.83008C14.9828 7.04866 15 7.27233 15 7.5C15 7.65529 14.9919 7.80872 14.9766 7.95996C14.9682 8.04238 14.9571 8.12404 14.9443 8.20508C14.9227 8.34234 14.895 8.47751 14.8613 8.61035C14.8534 8.64148 14.8445 8.67226 14.8359 8.70312C14.8258 8.73973 14.8157 8.77627 14.8047 8.8125C14.7996 8.82916 14.7943 8.84573 14.7891 8.8623C14.7709 8.91956 14.7508 8.97599 14.7305 9.03223C14.7201 9.06075 14.7091 9.08894 14.6982 9.11719C14.6854 9.15052 14.6728 9.18386 14.6592 9.2168C14.6457 9.24947 14.6324 9.28217 14.6182 9.31445C14.602 9.35115 14.5855 9.38765 14.5684 9.42383C14.5548 9.45241 14.5405 9.48055 14.5264 9.50879C14.5072 9.54712 14.488 9.58535 14.4678 9.62305C14.4559 9.64516 14.4429 9.66659 14.4307 9.68848C14.4085 9.72812 14.3866 9.76775 14.3633 9.80664C14.3488 9.83076 14.3332 9.8541 14.3184 9.87793C14.2952 9.91497 14.2722 9.95197 14.248 9.98828C14.2312 10.0136 14.2137 10.0385 14.1963 10.0635C14.1756 10.0932 14.1552 10.1231 14.1338 10.1523C14.1129 10.1809 14.0918 10.2093 14.0703 10.2373C14.0456 10.2695 14.0207 10.3015 13.9951 10.333C13.9782 10.3538 13.9606 10.374 13.9434 10.3945C13.9155 10.4276 13.8881 10.4609 13.8594 10.4932C13.8419 10.5128 13.8235 10.5315 13.8057 10.5508C13.7732 10.586 13.7406 10.6211 13.707 10.6553C13.6914 10.6712 13.6751 10.6865 13.6592 10.7021C13.6267 10.7342 13.594 10.7658 13.5605 10.7969C13.5367 10.819 13.5126 10.8407 13.4883 10.8623C13.4645 10.8835 13.4403 10.9041 13.416 10.9248C13.3865 10.95 13.3573 10.9756 13.3271 11C13.3057 11.0174 13.2835 11.0338 13.2617 11.0508C13.2269 11.0779 13.1919 11.1047 13.1562 11.1309C13.1244 11.1542 13.092 11.1767 13.0596 11.1992C13.0365 11.2152 13.0136 11.2315 12.9902 11.2471C12.9512 11.273 12.9119 11.2985 12.8721 11.3232C12.8538 11.3346 12.8358 11.3463 12.8174 11.3574C12.7767 11.3819 12.7349 11.4045 12.6934 11.4277C12.6651 11.4435 12.637 11.4594 12.6084 11.4746C12.5882 11.4853 12.5682 11.4964 12.5479 11.5068C12.5059 11.5283 12.4636 11.5491 12.4209 11.5693C12.3909 11.5835 12.3605 11.5968 12.3301 11.6104C12.2963 11.6254 12.2627 11.641 12.2285 11.6553C12.1222 11.6996 12.0136 11.7392 11.9033 11.7754C11.8731 11.7853 11.843 11.7954 11.8125 11.8047C11.7921 11.8109 11.7715 11.8163 11.751 11.8223C11.704 11.8358 11.657 11.8493 11.6094 11.8613C11.4939 11.8906 11.3766 11.9144 11.2578 11.9346C11.2295 11.9394 11.2013 11.9449 11.1729 11.9492C11.0278 11.971 10.8807 11.9866 10.7314 11.9941L10.5 12H4.5L4.26855 11.9941C1.89083 11.8737 0 9.90766 0 7.5C0 5.09234 1.89083 3.12632 4.26855 3.00586L4.5 3H10.5L10.7314 3.00586ZM4.5 4C2.567 4 1 5.567 1 7.5C1 9.433 2.567 11 4.5 11H7.67285C6.65283 10.175 6 8.91406 6 7.5C6 6.08594 6.65283 4.82496 7.67285 4H4.5ZM10.5 4C8.567 4 7 5.567 7 7.5C7 9.433 8.567 11 10.5 11C12.433 11 14 9.433 14 7.5C14 5.567 12.433 4 10.5 4Z",
6995 fill: "currentColor",
6996 })
6997 }
6998
6999 const WIDTH: Option<&'static str> = Some("15");
7000 const HEIGHT: Option<&'static str> = Some("15");
7001 const FILL: Option<&'static str> = Some("none");
7002 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7003
7004}
7005
7006#[derive(Default, Copy, Clone, PartialEq, Eq)]
7007pub struct Symbol;
7008
7009impl IconShape for Symbol {
7010 fn child_elements(&self) -> Element {
7011 rsx!(path {
7012 d: "M7.98782 1.5627C8.04093 1.27991 8.31343 1.09276 8.59622 1.14571L8.86478 1.20235C11.6292 1.83956 14.0531 4.23825 14.0533 7.70332C14.0532 9.23978 13.3539 10.4478 12.5376 11.3664C11.9526 12.0246 11.2828 12.5586 10.7447 12.968L12.3824 12.968C12.6583 12.9681 12.8823 13.192 12.8824 13.468C12.8824 13.744 12.6584 13.9678 12.3824 13.968L9.38235 13.968C9.10621 13.968 8.88235 13.7441 8.88235 13.468L8.88235 10.468C8.88245 10.1919 9.10627 9.96797 9.38235 9.96797C9.65831 9.96812 9.88226 10.192 9.88235 10.468L9.88235 12.3137L10.064 12.176C10.5978 11.7712 11.2158 11.2845 11.7583 10.674C12.4728 9.87008 13.0102 8.8984 13.0103 7.70332C13.0102 4.69156 10.8502 2.63053 8.40384 2.1711L8.30228 2.14082C8.07814 2.04925 7.94172 1.80993 7.98782 1.5627ZM0.86087 7.29707C0.860934 5.76063 1.56019 4.5526 2.37649 3.63399C2.96147 2.97581 3.63131 2.44175 4.16946 2.03242L2.53177 2.03242C2.25584 2.03226 2.03188 1.80836 2.03177 1.53242C2.03177 1.25639 2.25577 1.03259 2.53177 1.03242L5.53177 1.03242C5.80791 1.03243 6.03177 1.25628 6.03177 1.53242L6.03177 4.53242C6.03165 4.80847 5.80784 5.03242 5.53177 5.03242C5.25584 5.03226 5.03188 4.80836 5.03177 4.53242L5.03177 2.68672L4.85013 2.82442C4.31633 3.22915 3.69833 3.71595 3.15579 4.32637C2.44137 5.13031 1.9039 6.10201 1.90384 7.29707C1.904 10.3411 4.11096 12.4148 6.58939 12.8439C6.87267 12.8932 7.06305 13.1631 7.01419 13.4465C6.96502 13.7298 6.69501 13.9201 6.41165 13.8713C3.50007 13.3671 0.861028 10.9128 0.86087 7.29707Z",
7013 fill: "currentColor",
7014 })
7015 }
7016
7017 const WIDTH: Option<&'static str> = Some("15");
7018 const HEIGHT: Option<&'static str> = Some("15");
7019 const FILL: Option<&'static str> = Some("none");
7020 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7021
7022}
7023
7024#[derive(Default, Copy, Clone, PartialEq, Eq)]
7025pub struct Table;
7026
7027impl IconShape for Table {
7028 fn child_elements(&self) -> Element {
7029 rsx!(path {
7030 d: "M12.6533 1.00781C13.4097 1.08461 14 1.72334 14 2.5V12.5L13.9922 12.6533C13.9205 13.3593 13.3593 13.9205 12.6533 13.9922L12.5 14H2.5L2.34668 13.9922C1.64069 13.9205 1.07949 13.3593 1.00781 12.6533L1 12.5V2.5C1 1.72334 1.59028 1.08461 2.34668 1.00781L2.5 1H12.5L12.6533 1.00781ZM2 12.5C2 12.7761 2.22386 13 2.5 13H7V10H2V12.5ZM8 13H12.5C12.7761 13 13 12.7761 13 12.5V10H8V13ZM2 6V9H7V6H2ZM8 6V9H13V6H8ZM2.5 2C2.22386 2 2 2.22386 2 2.5V5H7V2H2.5ZM8 5H13V2.5C13 2.22386 12.7761 2 12.5 2H8V5Z",
7031 fill: "currentColor",
7032 })
7033 }
7034
7035 const WIDTH: Option<&'static str> = Some("15");
7036 const HEIGHT: Option<&'static str> = Some("15");
7037 const FILL: Option<&'static str> = Some("none");
7038 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7039
7040}
7041
7042#[derive(Default, Copy, Clone, PartialEq, Eq)]
7043pub struct Target;
7044
7045impl IconShape for Target {
7046 fn child_elements(&self) -> Element {
7047 rsx!(path {
7048 d: "M7.50061 0.899994C11.1454 0.900311 14.1002 3.8557 14.1002 7.50058C14.0999 11.1452 11.1452 14.0999 7.50061 14.1002C3.85573 14.1002 0.900341 11.1454 0.900024 7.50058C0.900024 3.8555 3.85554 0.899994 7.50061 0.899994ZM7.50061 1.80038C4.35259 1.80038 1.80042 4.35256 1.80042 7.50058C1.80073 10.6483 4.35279 13.1998 7.50061 13.1998C10.6481 13.1995 13.1995 10.6481 13.1998 7.50058C13.1998 4.35276 10.6483 1.8007 7.50061 1.80038ZM7.49963 3.0748C9.94334 3.0748 11.9242 5.05592 11.9244 7.4996C11.9244 9.94344 9.94347 11.9244 7.49963 11.9244C5.05596 11.9242 3.07483 9.94331 3.07483 7.4996C3.07504 5.05606 5.05609 3.07502 7.49963 3.0748ZM7.49963 3.92441C5.52554 3.92463 3.92465 5.5255 3.92444 7.4996C3.92444 9.47387 5.52541 11.0746 7.49963 11.0748C9.47403 11.0748 11.0748 9.474 11.0748 7.4996C11.0746 5.52537 9.4739 3.92441 7.49963 3.92441ZM7.49963 5.2496C8.74213 5.2496 9.74942 6.25714 9.74963 7.4996C9.74963 8.74224 8.74227 9.7496 7.49963 9.7496C6.25718 9.74938 5.24963 8.7421 5.24963 7.4996C5.24985 6.25728 6.25731 5.24982 7.49963 5.2496ZM7.49963 6.05038C6.69914 6.0506 6.05063 6.69911 6.05042 7.4996C6.05042 8.30027 6.69901 8.94958 7.49963 8.9498C8.30044 8.9498 8.94983 8.30041 8.94983 7.4996C8.94962 6.69897 8.30031 6.05038 7.49963 6.05038Z",
7049 fill: "currentColor",
7050 })
7051 }
7052
7053 const WIDTH: Option<&'static str> = Some("15");
7054 const HEIGHT: Option<&'static str> = Some("15");
7055 const FILL: Option<&'static str> = Some("none");
7056 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7057
7058}
7059
7060#[derive(Default, Copy, Clone, PartialEq, Eq)]
7061pub struct Text;
7062
7063impl IconShape for Text {
7064 fn child_elements(&self) -> Element {
7065 rsx!(path {
7066 d: "M11.5793 2.05685C11.5826 2.05744 11.5858 2.05815 11.5891 2.05881L11.591 2.05978C11.5963 2.06087 11.6014 2.06242 11.6066 2.06369C11.6243 2.06801 11.6416 2.07297 11.6584 2.07932C11.6711 2.08411 11.6833 2.09003 11.6955 2.09592C11.705 2.10052 11.7147 2.10436 11.7238 2.10959L11.7336 2.11545C11.739 2.11873 11.744 2.12269 11.7492 2.12619C11.7837 2.14933 11.8151 2.17666 11.842 2.20822C11.9093 2.28675 11.9504 2.38867 11.9504 2.50021V4.50021C11.9503 4.74857 11.7485 4.95031 11.5002 4.95041C11.2517 4.95041 11.0501 4.74863 11.05 4.50021V2.95041H8.04999V12.05H9.25409C9.50262 12.05 9.70428 12.2517 9.70428 12.5002C9.7042 12.7175 9.54981 12.8986 9.34491 12.9406L9.25409 12.9504H5.75409L5.66327 12.9406C5.45848 12.8985 5.30398 12.7174 5.30389 12.5002C5.30389 12.2829 5.45845 12.1019 5.66327 12.0598L5.75409 12.05H6.95038V2.95041H3.95038V4.50021C3.95025 4.74857 3.74854 4.9503 3.50018 4.95041C3.25173 4.95041 3.05011 4.74863 3.04999 4.50021V2.50021C3.04999 2.4456 3.06047 2.39339 3.07831 2.34494C3.07994 2.3405 3.08045 2.33564 3.08221 2.33127C3.08731 2.31866 3.09459 2.30714 3.10077 2.29514C3.10725 2.2825 3.11368 2.26993 3.12128 2.25803C3.12798 2.24757 3.13524 2.2376 3.14276 2.22775C3.14853 2.22018 3.15411 2.21248 3.16034 2.20529L3.18182 2.18185C3.18639 2.17728 3.19171 2.17353 3.19647 2.16916C3.20838 2.15819 3.22054 2.14755 3.23358 2.13791C3.24267 2.13121 3.25231 2.12537 3.2619 2.11935C3.27449 2.11144 3.28758 2.10453 3.30096 2.09787C3.31229 2.09225 3.3233 2.08594 3.33514 2.08127C3.3506 2.07516 3.36675 2.07101 3.383 2.06662C3.3934 2.06382 3.40356 2.05989 3.41425 2.05783C3.44199 2.05247 3.47087 2.05002 3.50018 2.05002H11.5002L11.5793 2.05685Z",
7067 fill: "currentColor",
7068 })
7069 }
7070
7071 const WIDTH: Option<&'static str> = Some("15");
7072 const HEIGHT: Option<&'static str> = Some("15");
7073 const FILL: Option<&'static str> = Some("none");
7074 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7075
7076}
7077
7078#[derive(Default, Copy, Clone, PartialEq, Eq)]
7079pub struct TextAlignBottom;
7080
7081impl IconShape for TextAlignBottom {
7082 fn child_elements(&self) -> Element {
7083 rsx!(path {
7084 d: "M3.49993 13.9C3.60588 13.8999 3.70821 13.8577 3.78313 13.7828L5.78313 11.7828C5.93895 11.6266 5.93921 11.3725 5.78313 11.2164C5.62705 11.0603 5.37297 11.0606 5.21673 11.2164L3.90032 12.5328V5.4996C3.90011 5.279 3.72053 5.09942 3.49993 5.09921C3.27915 5.09921 3.09975 5.27887 3.09954 5.4996V12.5328L1.78313 11.2164L1.71966 11.1656C1.56456 11.0634 1.35336 11.0801 1.21673 11.2164C1.08013 11.353 1.06365 11.5641 1.16595 11.7193L1.21673 11.7828L3.21673 13.7828C3.29174 13.8578 3.39384 13.9 3.49993 13.9ZM14.4999 6.9996C14.7761 6.9996 14.9999 6.77575 14.9999 6.4996C14.9997 6.22364 14.7759 5.9996 14.4999 5.9996H8.49993C8.22396 5.99966 8.00014 6.22367 7.99993 6.4996C7.99993 6.77571 8.22383 6.99955 8.49993 6.9996H14.4999ZM14.4999 9.9996C14.7761 9.9996 14.9999 9.77575 14.9999 9.4996C14.9997 9.22364 14.7759 8.9996 14.4999 8.9996H8.49993C8.22396 8.99966 8.00014 9.22367 7.99993 9.4996C7.99993 9.77571 8.22383 9.99955 8.49993 9.9996H14.4999ZM14.4999 12.9996C14.7761 12.9996 14.9999 12.7757 14.9999 12.4996C14.9997 12.2236 14.7759 11.9996 14.4999 11.9996H8.49993C8.22396 11.9997 8.00014 12.2237 7.99993 12.4996C7.99993 12.7757 8.22383 12.9996 8.49993 12.9996H14.4999Z",
7085 fill: "currentColor",
7086 })
7087 }
7088
7089 const WIDTH: Option<&'static str> = Some("15");
7090 const HEIGHT: Option<&'static str> = Some("15");
7091 const FILL: Option<&'static str> = Some("none");
7092 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7093
7094}
7095
7096#[derive(Default, Copy, Clone, PartialEq, Eq)]
7097pub struct TextAlignCenter;
7098
7099impl IconShape for TextAlignCenter {
7100 fn child_elements(&self) -> Element {
7101 rsx!(path {
7102 d: "M11.5 10C11.7761 10 12 10.2239 12 10.5C12 10.7761 11.7761 11 11.5 11H3.5C3.22386 11 3 10.7761 3 10.5C3 10.2239 3.22386 10 3.5 10H11.5ZM10.5 7C10.7761 7 11 7.22386 11 7.5C11 7.77614 10.7761 8 10.5 8H4.5C4.22386 8 4 7.77614 4 7.5C4 7.22386 4.22386 7 4.5 7H10.5ZM12.5 4C12.7761 4 13 4.22386 13 4.5C13 4.77614 12.7761 5 12.5 5H2.5C2.22386 5 2 4.77614 2 4.5C2 4.22386 2.22386 4 2.5 4H12.5Z",
7103 fill: "currentColor",
7104 })
7105 }
7106
7107 const WIDTH: Option<&'static str> = Some("15");
7108 const HEIGHT: Option<&'static str> = Some("15");
7109 const FILL: Option<&'static str> = Some("none");
7110 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7111
7112}
7113
7114#[derive(Default, Copy, Clone, PartialEq, Eq)]
7115pub struct TextAlignJustify;
7116
7117impl IconShape for TextAlignJustify {
7118 fn child_elements(&self) -> Element {
7119 rsx!(path {
7120 d: "M12.6006 10.0098C12.8286 10.0563 13 10.2583 13 10.5C13 10.7417 12.8286 10.9437 12.6006 10.9902L12.5 11H2.5C2.22386 11 2 10.7761 2 10.5C2 10.2239 2.22386 10 2.5 10H12.5L12.6006 10.0098ZM12.6006 7.00977C12.8286 7.05629 13 7.25829 13 7.5C13 7.74171 12.8286 7.94371 12.6006 7.99023L12.5 8H2.5C2.22386 8 2 7.77614 2 7.5C2 7.22386 2.22386 7 2.5 7H12.5L12.6006 7.00977ZM12.6006 4.00977C12.8286 4.05629 13 4.25829 13 4.5C13 4.74171 12.8286 4.94371 12.6006 4.99023L12.5 5H2.5C2.22386 5 2 4.77614 2 4.5C2 4.22386 2.22386 4 2.5 4H12.5L12.6006 4.00977Z",
7121 fill: "currentColor",
7122 })
7123 }
7124
7125 const WIDTH: Option<&'static str> = Some("15");
7126 const HEIGHT: Option<&'static str> = Some("15");
7127 const FILL: Option<&'static str> = Some("none");
7128 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7129
7130}
7131
7132#[derive(Default, Copy, Clone, PartialEq, Eq)]
7133pub struct TextAlignLeft;
7134
7135impl IconShape for TextAlignLeft {
7136 fn child_elements(&self) -> Element {
7137 rsx!(path {
7138 d: "M10.5 10C10.7761 10 11 10.2239 11 10.5C11 10.7761 10.7761 11 10.5 11H2.5C2.22386 11 2 10.7761 2 10.5C2 10.2239 2.22386 10 2.5 10H10.5ZM7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8H2.5C2.22386 8 2 7.77614 2 7.5C2 7.22386 2.22386 7 2.5 7H7.5ZM12.5 4C12.7761 4 13 4.22386 13 4.5C13 4.77614 12.7761 5 12.5 5H2.5C2.22386 5 2 4.77614 2 4.5C2 4.22386 2.22386 4 2.5 4H12.5Z",
7139 fill: "currentColor",
7140 })
7141 }
7142
7143 const WIDTH: Option<&'static str> = Some("15");
7144 const HEIGHT: Option<&'static str> = Some("15");
7145 const FILL: Option<&'static str> = Some("none");
7146 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7147
7148}
7149
7150#[derive(Default, Copy, Clone, PartialEq, Eq)]
7151pub struct TextAlignMiddle;
7152
7153impl IconShape for TextAlignMiddle {
7154 fn child_elements(&self) -> Element {
7155 rsx!(path {
7156 d: "M3.49991 5.89999C3.60585 5.89989 3.70819 5.85773 3.78311 5.78281L5.78311 3.78281C5.93893 3.62656 5.93919 3.37248 5.78311 3.2164C5.62703 3.06032 5.37294 3.06058 5.2167 3.2164L3.9003 4.53281V0.499603L3.89151 0.418549C3.85394 0.236784 3.69276 0.0993977 3.49991 0.0992126C3.27912 0.0992126 3.09973 0.278869 3.09952 0.499603V4.53281L1.78311 3.2164L1.71963 3.16562C1.56454 3.06335 1.35334 3.08014 1.2167 3.2164C1.08011 3.353 1.06363 3.5641 1.16592 3.71933L1.2167 3.78281L3.2167 5.78281C3.29172 5.85782 3.39382 5.89999 3.49991 5.89999ZM14.4999 4.9996C14.776 4.9996 14.9999 4.77575 14.9999 4.4996C14.9997 4.22364 14.7759 3.9996 14.4999 3.9996H8.49991C8.22394 3.99966 8.00012 4.22367 7.99991 4.4996C7.99991 4.77571 8.22381 4.99955 8.49991 4.9996H14.4999ZM14.4999 7.9996C14.776 7.9996 14.9999 7.77575 14.9999 7.4996C14.9997 7.22364 14.7759 6.9996 14.4999 6.9996H8.49991C8.22394 6.99966 8.00012 7.22367 7.99991 7.4996C7.99991 7.77571 8.22381 7.99955 8.49991 7.9996H14.4999ZM3.49991 14.9C3.69286 14.8998 3.85405 14.7626 3.89151 14.5807L3.9003 14.4996V10.4664L5.2167 11.7828C5.37291 11.939 5.6269 11.939 5.78311 11.7828C5.93893 11.6266 5.93919 11.3725 5.78311 11.2164L3.78311 9.2164C3.70819 9.14148 3.60585 9.09932 3.49991 9.09921C3.394 9.09921 3.29168 9.14163 3.2167 9.2164L1.2167 11.2164L1.16592 11.2799C1.06356 11.4351 1.08008 11.6462 1.2167 11.7828C1.35333 11.9194 1.56439 11.936 1.71963 11.8336L1.78311 11.7828L3.09952 10.4664V14.4996C3.09952 14.7205 3.27899 14.9 3.49991 14.9ZM14.4999 10.9996C14.776 10.9996 14.9999 10.7757 14.9999 10.4996C14.9997 10.2236 14.7759 9.9996 14.4999 9.9996H8.49991C8.22394 9.99966 8.00012 10.2237 7.99991 10.4996C7.99991 10.7757 8.22381 10.9996 8.49991 10.9996H14.4999Z",
7157 fill: "currentColor",
7158 })
7159 }
7160
7161 const WIDTH: Option<&'static str> = Some("15");
7162 const HEIGHT: Option<&'static str> = Some("15");
7163 const FILL: Option<&'static str> = Some("none");
7164 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7165
7166}
7167
7168#[derive(Default, Copy, Clone, PartialEq, Eq)]
7169pub struct TextAlignRight;
7170
7171impl IconShape for TextAlignRight {
7172 fn child_elements(&self) -> Element {
7173 rsx!(path {
7174 d: "M12.5 10C12.7761 10 13 10.2239 13 10.5C13 10.7761 12.7761 11 12.5 11H4.5C4.22386 11 4 10.7761 4 10.5C4 10.2239 4.22386 10 4.5 10H12.5ZM12.5 7C12.7761 7 13 7.22386 13 7.5C13 7.77614 12.7761 8 12.5 8H7.5C7.22386 8 7 7.77614 7 7.5C7 7.22386 7.22386 7 7.5 7H12.5ZM12.5 4C12.7761 4 13 4.22386 13 4.5C13 4.77614 12.7761 5 12.5 5H2.5C2.22386 5 2 4.77614 2 4.5C2 4.22386 2.22386 4 2.5 4H12.5Z",
7175 fill: "currentColor",
7176 })
7177 }
7178
7179 const WIDTH: Option<&'static str> = Some("15");
7180 const HEIGHT: Option<&'static str> = Some("15");
7181 const FILL: Option<&'static str> = Some("none");
7182 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7183
7184}
7185
7186#[derive(Default, Copy, Clone, PartialEq, Eq)]
7187pub struct TextAlignTop;
7188
7189impl IconShape for TextAlignTop {
7190 fn child_elements(&self) -> Element {
7191 rsx!(path {
7192 d: "M3.49993 1.10001C3.60588 1.10011 3.70821 1.14227 3.78313 1.21719L5.78313 3.21719C5.93895 3.37344 5.93921 3.62752 5.78313 3.7836C5.62705 3.93968 5.37297 3.93942 5.21673 3.7836L3.90032 2.46719V9.5004C3.90011 9.721 3.72053 9.90058 3.49993 9.90079C3.27915 9.90079 3.09975 9.72113 3.09954 9.5004V2.46719L1.78313 3.7836L1.71966 3.83438C1.56456 3.93665 1.35336 3.91986 1.21673 3.7836C1.08013 3.647 1.06365 3.4359 1.16595 3.28067L1.21673 3.21719L3.21673 1.21719C3.29174 1.14218 3.39384 1.10001 3.49993 1.10001ZM14.4999 8.0004C14.7761 8.0004 14.9999 8.22425 14.9999 8.5004C14.9997 8.77636 14.7759 9.0004 14.4999 9.0004H8.49993C8.22396 9.00034 8.00014 8.77633 7.99993 8.5004C7.99993 8.22429 8.22383 8.00045 8.49993 8.0004H14.4999ZM14.4999 5.0004C14.7761 5.0004 14.9999 5.22425 14.9999 5.5004C14.9997 5.77636 14.7759 6.0004 14.4999 6.0004H8.49993C8.22396 6.00034 8.00014 5.77633 7.99993 5.5004C7.99993 5.22429 8.22383 5.00045 8.49993 5.0004H14.4999ZM14.4999 2.0004C14.7761 2.0004 14.9999 2.22425 14.9999 2.5004C14.9997 2.77636 14.7759 3.0004 14.4999 3.0004H8.49993C8.22396 3.00034 8.00014 2.77633 7.99993 2.5004C7.99993 2.22429 8.22383 2.00045 8.49993 2.0004H14.4999Z",
7193 fill: "currentColor",
7194 })
7195 }
7196
7197 const WIDTH: Option<&'static str> = Some("15");
7198 const HEIGHT: Option<&'static str> = Some("15");
7199 const FILL: Option<&'static str> = Some("none");
7200 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7201
7202}
7203
7204#[derive(Default, Copy, Clone, PartialEq, Eq)]
7205pub struct TextNone;
7206
7207impl IconShape for TextNone {
7208 fn child_elements(&self) -> Element {
7209 rsx!(path {
7210 d: "M12.6464 1.64645C12.8417 1.45118 13.1582 1.45118 13.3535 1.64645C13.5487 1.84171 13.5487 2.15822 13.3535 2.35348L8.04977 7.65719V12.0498H9.25387C9.50232 12.0498 9.70393 12.2515 9.70406 12.5C9.70398 12.7173 9.54958 12.8984 9.34469 12.9404L9.25387 12.9502H5.75387L5.66305 12.9404C5.4584 12.8982 5.30376 12.7171 5.30367 12.5C5.30379 12.2828 5.4584 12.1017 5.66305 12.0595L5.75387 12.0498H6.95016V8.7568L2.35348 13.3535C2.15822 13.5487 1.84171 13.5487 1.64645 13.3535C1.45118 13.1582 1.45118 12.8417 1.64645 12.6464L6.95016 7.34274V2.95016H3.95016V4.49996C3.95003 4.74832 3.74832 4.95005 3.49996 4.95016C3.25162 4.95003 3.04989 4.7483 3.04977 4.49996V2.49996C3.0498 2.44543 3.06028 2.39307 3.07809 2.34469C3.07968 2.34029 3.08025 2.33534 3.08199 2.33102C3.08709 2.31846 3.09439 2.30685 3.10055 2.29488C3.10701 2.28228 3.11347 2.26965 3.12106 2.25777C3.12774 2.24734 3.13504 2.23733 3.14254 2.2275C3.1483 2.21994 3.1539 2.21222 3.16012 2.20504L3.1816 2.1816C3.18617 2.17704 3.19149 2.17327 3.19625 2.16891C3.20815 2.15795 3.22033 2.14729 3.23336 2.13766C3.24243 2.13097 3.25211 2.12511 3.26168 2.1191C3.27424 2.11121 3.28739 2.10426 3.30074 2.09762C3.31203 2.09202 3.32313 2.08568 3.33492 2.08102C3.35033 2.07493 3.36659 2.07074 3.38277 2.06637C3.39312 2.06358 3.40341 2.05965 3.41402 2.05758C3.44169 2.05223 3.47073 2.04978 3.49996 2.04977H11.5L11.5791 2.0566C11.5822 2.05717 11.5857 2.05792 11.5888 2.05856L11.5908 2.05953C11.596 2.0606 11.6013 2.06218 11.6064 2.06344C11.624 2.06773 11.6415 2.07277 11.6582 2.07906C11.6708 2.08382 11.6832 2.08983 11.6953 2.09567C11.7046 2.10022 11.7146 2.10419 11.7236 2.10934L11.7334 2.1152C11.7387 2.11842 11.7438 2.12249 11.749 2.12594C11.7834 2.14902 11.8149 2.17652 11.8418 2.20797C11.8803 2.25299 11.9091 2.30641 11.9277 2.36422L12.6464 1.64645ZM8.04977 6.24313L11.0498 3.24313V2.95016H8.04977V6.24313Z",
7211 fill: "currentColor",
7212 })
7213 }
7214
7215 const WIDTH: Option<&'static str> = Some("15");
7216 const HEIGHT: Option<&'static str> = Some("15");
7217 const FILL: Option<&'static str> = Some("none");
7218 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7219
7220}
7221
7222#[derive(Default, Copy, Clone, PartialEq, Eq)]
7223pub struct ThickArrowDown;
7224
7225impl IconShape for ThickArrowDown {
7226 fn child_elements(&self) -> Element {
7227 rsx!(path {
7228 d: "M9.60055 3.00977C9.82851 3.05629 9.99996 3.25829 9.99996 3.5V6H12.5C12.6873 6 12.8586 6.10495 12.9443 6.27148C13.0299 6.438 13.016 6.63864 12.9072 6.79102L7.90719 13.791C7.81333 13.9224 7.6614 14 7.49996 14C7.33852 14 7.18659 13.9224 7.09273 13.791L2.09273 6.79102C1.9839 6.63864 1.96999 6.438 2.05563 6.27148C2.14133 6.10495 2.31267 6 2.49996 6H4.99996V3.5L5.00973 3.39941C5.05625 3.17145 5.25825 3 5.49996 3H9.49996L9.60055 3.00977ZM5.99996 6.5C5.99996 6.77614 5.7761 7 5.49996 7H3.47262L7.49996 12.6387L11.5273 7H9.49996C9.22382 7 8.99996 6.77614 8.99996 6.5V4H5.99996V6.5Z",
7229 fill: "currentColor",
7230 })
7231 }
7232
7233 const WIDTH: Option<&'static str> = Some("15");
7234 const HEIGHT: Option<&'static str> = Some("15");
7235 const FILL: Option<&'static str> = Some("none");
7236 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7237
7238}
7239
7240#[derive(Default, Copy, Clone, PartialEq, Eq)]
7241pub struct ThickArrowLeft;
7242
7243impl IconShape for ThickArrowLeft {
7244 fn child_elements(&self) -> Element {
7245 rsx!(path {
7246 d: "M1 7.49996C1 7.6614 1.07764 7.81333 1.20898 7.90719L8.20898 12.9072C8.36136 13.016 8.562 13.0299 8.72852 12.9443C8.89505 12.8586 9 12.6873 9 12.5L9 9.99996L11.5 9.99996C11.7761 9.99996 12 9.7761 12 9.49996L12 5.49996C12 5.22382 11.7761 4.99996 11.5 4.99996L9 4.99996L9 2.49996C9 2.31267 8.89505 2.14133 8.72852 2.05562C8.562 1.96999 8.36136 1.9839 8.20898 2.09273L1.20898 7.09273L1.12109 7.17379C1.04384 7.26354 1 7.37895 1 7.49996ZM8 3.47262L8 5.49996C8 5.7761 8.22386 5.99996 8.5 5.99996L11 5.99996L11 8.99996L8.5 8.99996C8.22386 8.99996 8 9.22382 8 9.49996L8 11.5273L2.36035 7.49996L8 3.47262Z",
7247 fill: "currentColor",
7248 })
7249 }
7250
7251 const WIDTH: Option<&'static str> = Some("15");
7252 const HEIGHT: Option<&'static str> = Some("15");
7253 const FILL: Option<&'static str> = Some("none");
7254 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7255
7256}
7257
7258#[derive(Default, Copy, Clone, PartialEq, Eq)]
7259pub struct ThickArrowRight;
7260
7261impl IconShape for ThickArrowRight {
7262 fn child_elements(&self) -> Element {
7263 rsx!(path {
7264 d: "M14 7.49996C14 7.6614 13.9224 7.81333 13.791 7.90719L6.79102 12.9072C6.63864 13.016 6.438 13.0299 6.27148 12.9443C6.10495 12.8586 6 12.6873 6 12.5L6 9.99996L3.5 9.99996C3.22386 9.99996 3 9.7761 3 9.49996L3 5.49996C3 5.22382 3.22386 4.99996 3.5 4.99996L6 4.99996L6 2.49996C6 2.31267 6.10495 2.14133 6.27148 2.05562C6.438 1.96999 6.63864 1.9839 6.79102 2.09273L13.791 7.09273L13.8789 7.17379C13.9562 7.26354 14 7.37895 14 7.49996ZM7 3.47262L7 5.49996C7 5.7761 6.77614 5.99996 6.5 5.99996L4 5.99996L4 8.99996L6.5 8.99996C6.77614 8.99996 7 9.22382 7 9.49996L7 11.5273L12.6396 7.49996L7 3.47262Z",
7265 fill: "currentColor",
7266 })
7267 }
7268
7269 const WIDTH: Option<&'static str> = Some("15");
7270 const HEIGHT: Option<&'static str> = Some("15");
7271 const FILL: Option<&'static str> = Some("none");
7272 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7273
7274}
7275
7276#[derive(Default, Copy, Clone, PartialEq, Eq)]
7277pub struct ThickArrowUp;
7278
7279impl IconShape for ThickArrowUp {
7280 fn child_elements(&self) -> Element {
7281 rsx!(path {
7282 d: "M7.49996 1C7.6614 1 7.81333 1.07764 7.90719 1.20898L12.9072 8.20898C13.016 8.36136 13.0299 8.562 12.9443 8.72852C12.8586 8.89505 12.6873 9 12.5 9H9.99996V11.5C9.99996 11.7761 9.7761 12 9.49996 12H5.49996C5.22382 12 4.99996 11.7761 4.99996 11.5V9H2.49996C2.31267 9 2.14133 8.89505 2.05563 8.72852C1.96999 8.562 1.9839 8.36136 2.09273 8.20898L7.09273 1.20898L7.17379 1.12109C7.26354 1.04384 7.37895 1 7.49996 1ZM3.47262 8H5.49996C5.7761 8 5.99996 8.22386 5.99996 8.5V11H8.99996V8.5C8.99996 8.22386 9.22382 8 9.49996 8H11.5273L7.49996 2.36035L3.47262 8Z",
7283 fill: "currentColor",
7284 })
7285 }
7286
7287 const WIDTH: Option<&'static str> = Some("15");
7288 const HEIGHT: Option<&'static str> = Some("15");
7289 const FILL: Option<&'static str> = Some("none");
7290 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7291
7292}
7293
7294#[derive(Default, Copy, Clone, PartialEq, Eq)]
7295pub struct Timer;
7296
7297impl IconShape for Timer {
7298 fn child_elements(&self) -> Element {
7299 rsx!(path {
7300 d: "M7.50037 0.849976C11.1729 0.850187 14.1498 3.8278 14.1498 7.50037C14.1496 11.1727 11.1727 14.1496 7.50037 14.1498C3.8278 14.1498 0.850187 11.1729 0.849976 7.50037C0.849976 5.86069 1.44404 4.35792 2.4281 3.19861L2.50134 3.1283C2.68432 2.98499 2.94906 2.98471 3.13318 3.14099C3.34359 3.31969 3.36942 3.63558 3.1908 3.84607L3.03748 4.03357C2.2928 4.9907 1.84998 6.19353 1.84998 7.50037C1.85019 10.6206 4.38009 13.1498 7.50037 13.1498C10.6205 13.1496 13.1496 10.6205 13.1498 7.50037C13.1498 4.54863 10.8863 2.12674 8.00037 1.87341V3.52185C8.00037 3.79786 7.77633 4.02164 7.50037 4.02185C7.22422 4.02185 7.00037 3.79799 7.00037 3.52185V1.34998L7.01013 1.24939C7.05669 1.02146 7.25868 0.849976 7.50037 0.849976ZM4.25037 4.25037C4.33688 4.16386 4.47322 4.15268 4.57263 4.224L8.08044 6.7406C8.56201 7.08607 8.61866 7.7805 8.19958 8.19958C7.7805 8.61867 7.08608 8.56202 6.7406 8.08044L4.224 4.57263C4.15268 4.47322 4.16385 4.33688 4.25037 4.25037Z",
7301 fill: "currentColor",
7302 })
7303 }
7304
7305 const WIDTH: Option<&'static str> = Some("15");
7306 const HEIGHT: Option<&'static str> = Some("15");
7307 const FILL: Option<&'static str> = Some("none");
7308 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7309
7310}
7311
7312#[derive(Default, Copy, Clone, PartialEq, Eq)]
7313pub struct Tokens;
7314
7315impl IconShape for Tokens {
7316 fn child_elements(&self) -> Element {
7317 rsx!(path {
7318 d: "M4.5 8C5.88072 8 7 9.11929 7 10.5C7 11.8807 5.88072 13 4.5 13C3.11929 13 2 11.8807 2 10.5C2 9.11929 3.11929 8 4.5 8ZM10.5 8C11.8807 8 13 9.11929 13 10.5C13 11.8807 11.8807 13 10.5 13C9.11929 13 8 11.8807 8 10.5C8 9.11929 9.11929 8 10.5 8ZM4.5 9C3.67157 9 3 9.67157 3 10.5C3 11.3284 3.67157 12 4.5 12C5.32843 12 6 11.3284 6 10.5C6 9.67157 5.32843 9 4.5 9ZM10.5 9C9.67157 9 9 9.67157 9 10.5C9 11.3284 9.67157 12 10.5 12C11.3284 12 12 11.3284 12 10.5C12 9.67157 11.3284 9 10.5 9ZM4.5 2C5.88072 2 7 3.11929 7 4.5C7 5.88072 5.88072 7 4.5 7C3.11929 7 2 5.88072 2 4.5C2 3.11929 3.11929 2 4.5 2ZM10.5 2C11.8807 2 13 3.11929 13 4.5C13 5.88072 11.8807 7 10.5 7C9.11929 7 8 5.88072 8 4.5C8 3.11929 9.11929 2 10.5 2ZM4.5 3C3.67157 3 3 3.67157 3 4.5C3 5.32843 3.67157 6 4.5 6C5.32843 6 6 5.32843 6 4.5C6 3.67157 5.32843 3 4.5 3ZM10.5 3C9.67157 3 9 3.67157 9 4.5C9 5.32843 9.67157 6 10.5 6C11.3284 6 12 5.32843 12 4.5C12 3.67157 11.3284 3 10.5 3Z",
7319 fill: "currentColor",
7320 })
7321 }
7322
7323 const WIDTH: Option<&'static str> = Some("15");
7324 const HEIGHT: Option<&'static str> = Some("15");
7325 const FILL: Option<&'static str> = Some("none");
7326 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7327
7328}
7329
7330#[derive(Default, Copy, Clone, PartialEq, Eq)]
7331pub struct TrackNext;
7332
7333impl IconShape for TrackNext {
7334 fn child_elements(&self) -> Element {
7335 rsx!(path {
7336 d: "M12.4999 2.19987C12.8036 2.19987 13.0496 2.44601 13.0497 2.74968V12.2497C13.0497 12.5534 12.8037 12.7995 12.4999 12.7995C12.1963 12.7994 11.9501 12.5534 11.9501 12.2497V7.7155C11.9046 7.81069 11.83 7.89103 11.7333 7.94206L2.73334 12.6921C2.57839 12.7738 2.39217 12.7679 2.24213 12.6774C2.09212 12.5869 1.99994 12.4249 1.99994 12.2497V2.74968C2.00003 2.57453 2.09212 2.41239 2.24213 2.32195C2.39212 2.23159 2.57845 2.22563 2.73334 2.3073L11.7333 7.0573C11.8299 7.10825 11.9046 7.18882 11.9501 7.28386V2.74968C11.9502 2.44609 12.1964 2.20001 12.4999 2.19987ZM2.99994 11.4196L10.4277 7.49968L2.99994 3.57878V11.4196Z",
7337 fill: "currentColor",
7338 })
7339 }
7340
7341 const WIDTH: Option<&'static str> = Some("15");
7342 const HEIGHT: Option<&'static str> = Some("15");
7343 const FILL: Option<&'static str> = Some("none");
7344 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7345
7346}
7347
7348#[derive(Default, Copy, Clone, PartialEq, Eq)]
7349pub struct TrackPrevious;
7350
7351impl IconShape for TrackPrevious {
7352 fn child_elements(&self) -> Element {
7353 rsx!(path {
7354 d: "M2.50006 2.19987C2.19637 2.19987 1.95036 2.44601 1.95026 2.74968V12.2497C1.95026 12.5534 2.1963 12.7995 2.50006 12.7995C2.80371 12.7994 3.04987 12.5534 3.04987 12.2497V7.7155C3.09541 7.81069 3.17002 7.89103 3.26666 7.94206L12.2667 12.6921C12.4216 12.7738 12.6078 12.7679 12.7579 12.6774C12.9079 12.5869 13.0001 12.4249 13.0001 12.2497V2.74968C13 2.57453 12.9079 2.41239 12.7579 2.32195C12.6079 2.23159 12.4216 2.22563 12.2667 2.3073L3.26666 7.0573C3.17011 7.10825 3.09545 7.18882 3.04987 7.28386V2.74968C3.04976 2.44609 2.80364 2.20001 2.50006 2.19987ZM12.0001 11.4196L4.57233 7.49968L12.0001 3.57878V11.4196Z",
7355 fill: "currentColor",
7356 })
7357 }
7358
7359 const WIDTH: Option<&'static str> = Some("15");
7360 const HEIGHT: Option<&'static str> = Some("15");
7361 const FILL: Option<&'static str> = Some("none");
7362 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7363
7364}
7365
7366#[derive(Default, Copy, Clone, PartialEq, Eq)]
7367pub struct Transform;
7368
7369impl IconShape for Transform {
7370 fn child_elements(&self) -> Element {
7371 rsx!(path {
7372 d: "M3.34219 0.854889C3.79593 0.901066 4.15079 1.28447 4.15079 1.7504V2.0502H10.85V1.7504C10.85 1.25334 11.2533 0.850006 11.7504 0.850006H13.2504L13.3422 0.854889C13.7959 0.901066 14.1508 1.28447 14.1508 1.7504V3.2504L14.1459 3.34219C14.0998 3.79584 13.7162 4.15059 13.2504 4.15079H12.9506V10.85H13.2504L13.3422 10.8549C13.7959 10.9011 14.1508 11.2845 14.1508 11.7504V13.2504L14.1459 13.3422C14.0998 13.7958 13.7162 14.1506 13.2504 14.1508H11.7504C11.2535 14.1508 10.8502 13.7473 10.85 13.2504V12.9506H4.15079V13.2504L4.1459 13.3422C4.09978 13.7958 3.71617 14.1506 3.2504 14.1508H1.7504C1.25347 14.1508 0.850218 13.7473 0.850006 13.2504V11.7504C0.850006 11.2533 1.25334 10.85 1.7504 10.85H2.0502V4.15079H1.7504C1.25347 4.15079 0.850217 3.74727 0.850006 3.2504V1.7504C0.850006 1.25334 1.25334 0.850006 1.7504 0.850006H3.2504L3.34219 0.854889ZM1.7504 13.2504H3.2504V11.7504H1.7504V13.2504ZM11.7504 13.2504H13.2504V11.7504H11.7504V13.2504ZM4.15079 2.95059V3.2504L4.1459 3.34219C4.09978 3.79584 3.71617 4.15059 3.2504 4.15079H2.95059V10.85H3.2504L3.34219 10.8549C3.79593 10.9011 4.15079 11.2845 4.15079 11.7504V12.0502H10.85V11.7504C10.85 11.2533 11.2533 10.85 11.7504 10.85H12.0502V4.15079H11.7504C11.2535 4.15079 10.8502 3.74727 10.85 3.2504V2.95059H4.15079ZM7.09219 5.10489C7.54593 5.15107 7.90079 5.53447 7.90079 6.0004V7.0004L7.8959 7.09219C7.89543 7.09681 7.89351 7.10127 7.89297 7.10587C7.92807 7.1017 7.96418 7.10001 8.0004 7.10001H9.0004L9.09219 7.10489C9.54593 7.15107 9.90079 7.53447 9.90079 8.0004V9.0004L9.8959 9.09219C9.84978 9.54584 9.46617 9.90059 9.0004 9.90079H8.0004C7.50347 9.90079 7.10022 9.49727 7.10001 9.0004V8.0004C7.10001 7.96418 7.1017 7.92807 7.10587 7.89297C7.07122 7.89704 7.03613 7.90077 7.0004 7.90079H6.0004C5.50347 7.90079 5.10022 7.49727 5.10001 7.0004V6.0004C5.10001 5.50334 5.50334 5.10001 6.0004 5.10001H7.0004L7.09219 5.10489ZM8.0004 9.0004H9.0004V8.0004H8.0004V9.0004ZM6.0004 7.0004H7.0004V6.0004H6.0004V7.0004ZM1.7504 3.2504H3.2504V1.7504H1.7504V3.2504ZM11.7504 3.2504H13.2504V1.7504H11.7504V3.2504Z",
7373 fill: "currentColor",
7374 })
7375 }
7376
7377 const WIDTH: Option<&'static str> = Some("15");
7378 const HEIGHT: Option<&'static str> = Some("15");
7379 const FILL: Option<&'static str> = Some("none");
7380 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7381
7382}
7383
7384#[derive(Default, Copy, Clone, PartialEq, Eq)]
7385pub struct TransparencyGrid;
7386
7387impl IconShape for TransparencyGrid {
7388 fn child_elements(&self) -> Element {
7389 rsx!(path {
7390 d: "M3 15H0V12H3V15ZM9 15H6V12H9V15ZM15 15H12V12H15V15ZM6 12H3V9H6V12ZM12 12H9V9H12V12ZM3 9H0V6H3V9ZM9 9H6V6H9V9ZM15 9H12V6H15V9ZM6 6H3V3H6V6ZM12 6H9V3H12V6ZM3 3H0V0H3V3ZM9 3H6V0H9V3ZM15 3H12V0H15V3Z",
7391 fill: "currentColor",
7392 opacity: ".25",
7393 })
7394 }
7395
7396 const WIDTH: Option<&'static str> = Some("15");
7397 const HEIGHT: Option<&'static str> = Some("15");
7398 const FILL: Option<&'static str> = Some("none");
7399 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7400
7401}
7402
7403#[derive(Default, Copy, Clone, PartialEq, Eq)]
7404pub struct Trash;
7405
7406impl IconShape for Trash {
7407 fn child_elements(&self) -> Element {
7408 rsx!(path {
7409 d: "M11.5 3C11.7761 3 12 3.22386 12 3.5C12 3.77614 11.7761 4 11.5 4H11V12L10.9951 12.1025C10.9472 12.573 10.573 12.9472 10.1025 12.9951L10 13H5L4.89746 12.9951C4.42703 12.9472 4.05278 12.573 4.00488 12.1025L4 12V4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H11.5ZM5 12H10V4H5V12ZM9.5 1C9.77614 1 10 1.22386 10 1.5C10 1.77614 9.77614 2 9.5 2H5.5C5.22386 2 5 1.77614 5 1.5C5 1.22386 5.22386 1 5.5 1H9.5Z",
7410 fill: "currentColor",
7411 })
7412 }
7413
7414 const WIDTH: Option<&'static str> = Some("15");
7415 const HEIGHT: Option<&'static str> = Some("15");
7416 const FILL: Option<&'static str> = Some("none");
7417 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7418
7419}
7420
7421#[derive(Default, Copy, Clone, PartialEq, Eq)]
7422pub struct TriangleDown;
7423
7424impl IconShape for TriangleDown {
7425 fn child_elements(&self) -> Element {
7426 rsx!(path {
7427 d: "M7.5 10.5L4 6H11L7.5 10.5Z",
7428 fill: "currentColor",
7429 })
7430 }
7431
7432 const WIDTH: Option<&'static str> = Some("15");
7433 const HEIGHT: Option<&'static str> = Some("15");
7434 const FILL: Option<&'static str> = Some("none");
7435 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7436
7437}
7438
7439#[derive(Default, Copy, Clone, PartialEq, Eq)]
7440pub struct TriangleLeft;
7441
7442impl IconShape for TriangleLeft {
7443 fn child_elements(&self) -> Element {
7444 rsx!(path {
7445 d: "M4.5 7.5L9 4L9 11L4.5 7.5Z",
7446 fill: "currentColor",
7447 })
7448 }
7449
7450 const WIDTH: Option<&'static str> = Some("15");
7451 const HEIGHT: Option<&'static str> = Some("15");
7452 const FILL: Option<&'static str> = Some("none");
7453 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7454
7455}
7456
7457#[derive(Default, Copy, Clone, PartialEq, Eq)]
7458pub struct TriangleRight;
7459
7460impl IconShape for TriangleRight {
7461 fn child_elements(&self) -> Element {
7462 rsx!(path {
7463 d: "M10.5 7.5L6 11L6 4L10.5 7.5Z",
7464 fill: "currentColor",
7465 })
7466 }
7467
7468 const WIDTH: Option<&'static str> = Some("15");
7469 const HEIGHT: Option<&'static str> = Some("15");
7470 const FILL: Option<&'static str> = Some("none");
7471 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7472
7473}
7474
7475#[derive(Default, Copy, Clone, PartialEq, Eq)]
7476pub struct TriangleUp;
7477
7478impl IconShape for TriangleUp {
7479 fn child_elements(&self) -> Element {
7480 rsx!(path {
7481 d: "M7.5 4.5L4 9H11L7.5 4.5Z",
7482 fill: "currentColor",
7483 })
7484 }
7485
7486 const WIDTH: Option<&'static str> = Some("15");
7487 const HEIGHT: Option<&'static str> = Some("15");
7488 const FILL: Option<&'static str> = Some("none");
7489 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7490
7491}
7492
7493#[derive(Default, Copy, Clone, PartialEq, Eq)]
7494pub struct TwitterLogo;
7495
7496impl IconShape for TwitterLogo {
7497 fn child_elements(&self) -> Element {
7498 rsx!(path {
7499 d: "M10.3603 1.56857C11.3726 1.56868 12.1792 2.04883 12.7217 2.74338C13.3056 2.62435 13.855 2.41008 14.3515 2.11545C14.1558 2.72714 13.7404 3.23976 13.2002 3.56467C13.2006 3.56561 13.2008 3.56665 13.2012 3.5676C13.7312 3.50361 14.2356 3.36351 14.7051 3.15549L14.7041 3.15744C14.3667 3.66272 13.9408 4.10673 13.4531 4.46994C13.4794 4.64675 13.4961 4.82424 13.4961 5.00119C13.4959 8.68736 10.6872 12.9747 5.52146 12.9748C4.0381 12.9748 2.64973 12.5673 1.45994 11.8606L1.22557 11.7151L1.14549 11.6526C0.978975 11.4903 0.943913 11.228 1.0742 11.0246C1.08745 11.004 1.10252 10.985 1.11814 10.967C1.19175 10.8454 1.31979 10.7624 1.46482 10.7502L1.55564 10.7522L1.79588 10.7756C2.62975 10.8387 3.45483 10.7158 4.19041 10.3947C3.46411 10.0737 2.88525 9.48026 2.58396 8.74435L2.50193 8.51974C2.45359 8.36869 2.48868 8.20302 2.59373 8.0842C2.59748 8.07996 2.60156 8.07558 2.60545 8.0715C1.96466 7.5076 1.55955 6.68166 1.55955 5.76096V5.72775C1.55964 5.56846 1.64397 5.41992 1.78123 5.33908C1.82689 5.31225 1.8772 5.29675 1.92771 5.28732C1.70714 4.86273 1.58104 4.38054 1.58103 3.86935C1.58104 3.4015 1.58372 2.81147 1.91307 2.28049C1.98613 2.16285 2.10507 2.09173 2.2324 2.07346C2.39179 2.022 2.5697 2.05335 2.70213 2.16135L2.77439 2.23264L3.00779 2.5051C4.08476 3.69614 5.5655 4.50969 7.23435 4.73654C7.23419 4.72321 7.23338 4.70987 7.23338 4.6965C7.23338 2.96907 8.63376 1.56861 10.3603 1.56857ZM10.3603 2.56857C9.18632 2.56861 8.23338 3.52108 8.23338 4.6965C8.23339 4.86293 8.25214 5.02527 8.28807 5.18283C8.32288 5.33548 8.28425 5.49554 8.18357 5.61545C8.10812 5.70523 8.0046 5.76455 7.89158 5.78537L7.77635 5.79318C5.7091 5.68908 3.8518 4.79824 2.49412 3.41623C2.48398 3.55192 2.48143 3.70159 2.48143 3.86935C2.48143 4.62437 2.86582 5.29116 3.45018 5.68185L3.50779 5.72775C3.6329 5.84505 3.68155 6.02618 3.62791 6.19357C3.56643 6.38484 3.38534 6.51262 3.18455 6.50607C2.97133 6.49907 2.76381 6.46843 2.56346 6.42014C2.8004 7.16641 3.42715 7.73936 4.20603 7.89572C4.41054 7.93692 4.56037 8.11398 4.56736 8.32248C4.5741 8.53102 4.43577 8.71718 4.23435 8.7717C4.05423 8.82038 3.86801 8.85105 3.67771 8.86642C4.06681 9.39585 4.68916 9.74361 5.39256 9.75607C5.58291 9.75946 5.7509 9.88225 5.8115 10.0627C5.87201 10.2432 5.81189 10.4423 5.66209 10.5598C4.95354 11.1151 4.13125 11.4529 3.27439 11.6018C3.97935 11.8428 4.73463 11.9748 5.52146 11.9748C10.0201 11.9747 12.4959 8.25734 12.4961 5.00119C12.4961 3.7126 11.5945 2.56878 10.3603 2.56857Z",
7500 fill: "currentColor",
7501 })
7502 }
7503
7504 const WIDTH: Option<&'static str> = Some("15");
7505 const HEIGHT: Option<&'static str> = Some("15");
7506 const FILL: Option<&'static str> = Some("none");
7507 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7508
7509}
7510
7511#[derive(Default, Copy, Clone, PartialEq, Eq)]
7512pub struct Underline;
7513
7514impl IconShape for Underline {
7515 fn child_elements(&self) -> Element {
7516 rsx!(path {
7517 d: "M11.5814 13.1084C11.7633 13.146 11.9007 13.307 11.9008 13.5C11.9008 13.693 11.7633 13.854 11.5814 13.8916L11.5004 13.9004H3.50037C3.27945 13.9004 3.09998 13.7209 3.09998 13.5C3.10001 13.2791 3.27947 13.0996 3.50037 13.0996H11.5004L11.5814 13.1084ZM10.5004 2.25C10.7763 2.25019 11.0004 2.47398 11.0004 2.75V8.0498C11.0004 9.98268 9.4332 11.5496 7.50037 11.5498C5.56737 11.5498 4.00037 9.9828 4.00037 8.0498V2.75C4.00037 2.47386 4.22422 2.25 4.50037 2.25C4.77635 2.25019 5.00037 2.47398 5.00037 2.75V8.0498C5.00037 9.43052 6.11965 10.5498 7.50037 10.5498C8.88092 10.5496 10.0004 9.4304 10.0004 8.0498V2.75C10.0004 2.47386 10.2242 2.25 10.5004 2.25Z",
7518 fill: "currentColor",
7519 })
7520 }
7521
7522 const WIDTH: Option<&'static str> = Some("15");
7523 const HEIGHT: Option<&'static str> = Some("15");
7524 const FILL: Option<&'static str> = Some("none");
7525 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7526
7527}
7528
7529#[derive(Default, Copy, Clone, PartialEq, Eq)]
7530pub struct Update;
7531
7532impl IconShape for Update {
7533 fn child_elements(&self) -> Element {
7534 rsx!(path {
7535 d: "M7.98779 1.56268C8.0409 1.27989 8.3134 1.09275 8.59619 1.14569L8.86475 1.20233C11.6292 1.83955 14.0531 4.23823 14.0532 7.70331C14.0532 9.23977 13.3539 10.4478 12.5376 11.3664C11.9526 12.0246 11.2828 12.5586 10.7446 12.968L12.3823 12.968C12.6583 12.9681 12.8822 13.192 12.8823 13.468C12.8823 13.744 12.6583 13.9678 12.3823 13.968L9.38232 13.968C9.10618 13.968 8.88232 13.7441 8.88232 13.468L8.88232 10.468C8.88242 10.1919 9.10624 9.96796 9.38232 9.96796C9.65828 9.96811 9.88223 10.192 9.88232 10.468L9.88232 12.3137L10.064 12.176C10.5978 11.7712 11.2158 11.2844 11.7583 10.674C12.4727 9.87007 13.0102 8.89839 13.0103 7.70331C13.0101 4.69155 10.8502 2.63051 8.40381 2.17108L8.30225 2.14081C8.07811 2.04924 7.94169 1.80992 7.98779 1.56268ZM0.86084 7.29706C0.860904 5.76062 1.56016 4.55258 2.37646 3.63397C2.96144 2.97579 3.63128 2.44174 4.16943 2.03241L2.53174 2.03241C2.25581 2.03224 2.03185 1.80835 2.03174 1.53241C2.03174 1.25637 2.25574 1.03258 2.53174 1.03241L5.53174 1.03241C5.80788 1.03241 6.03174 1.25627 6.03174 1.53241L6.03174 4.53241C6.03162 4.80845 5.80781 5.03241 5.53174 5.03241C5.25581 5.03224 5.03185 4.80835 5.03174 4.53241L5.03174 2.68671L4.8501 2.8244C4.3163 3.22913 3.6983 3.71593 3.15576 4.32635C2.44134 5.13029 1.90387 6.10199 1.90381 7.29706C1.90397 10.3411 4.11093 12.4148 6.58936 12.8439C6.87264 12.8932 7.06302 13.1631 7.01416 13.4465C6.96499 13.7298 6.69498 13.92 6.41162 13.8713C3.50004 13.3671 0.860998 10.9128 0.86084 7.29706Z",
7536 fill: "currentColor",
7537 })
7538 }
7539
7540 const WIDTH: Option<&'static str> = Some("15");
7541 const HEIGHT: Option<&'static str> = Some("15");
7542 const FILL: Option<&'static str> = Some("none");
7543 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7544
7545}
7546
7547#[derive(Default, Copy, Clone, PartialEq, Eq)]
7548pub struct Upload;
7549
7550impl IconShape for Upload {
7551 fn child_elements(&self) -> Element {
7552 rsx!(path {
7553 d: "M12.5 10.0002C12.7761 10.0002 13 10.2241 13 10.5002V12.0002C12.9998 13.1042 12.1059 14.0002 11.001 14.0002H3.99609C2.89017 14.0001 2.00018 13.103 2 12.0002V10.5002C2 10.2241 2.22386 10.0002 2.5 10.0002C2.77614 10.0002 3 10.2241 3 10.5002V12.0002C3.00018 12.5539 3.44563 13.0001 3.99609 13.0002H11.001C11.5526 13.0002 11.9998 12.5529 12 12.0002V10.5002C12 10.2241 12.2239 10.0002 12.5 10.0002ZM7.18164 1.18188C7.35738 1.00615 7.64262 1.00615 7.81836 1.18188L10.8184 4.18188C10.994 4.35762 10.9941 4.64289 10.8184 4.8186C10.6426 4.99417 10.3573 4.9942 10.1816 4.8186L7.9502 2.58618V9.50024C7.95001 9.74861 7.74841 9.94946 7.5 9.94946C7.25161 9.94943 7.04999 9.74859 7.0498 9.50024V2.58618L4.81836 4.8186C4.64264 4.99417 4.35734 4.9942 4.18164 4.8186C4.00595 4.64291 4.00604 4.35763 4.18164 4.18188L7.18164 1.18188Z",
7554 fill: "currentColor",
7555 })
7556 }
7557
7558 const WIDTH: Option<&'static str> = Some("15");
7559 const HEIGHT: Option<&'static str> = Some("15");
7560 const FILL: Option<&'static str> = Some("none");
7561 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7562
7563}
7564
7565#[derive(Default, Copy, Clone, PartialEq, Eq)]
7566pub struct Value;
7567
7568impl IconShape for Value {
7569 fn child_elements(&self) -> Element {
7570 rsx!(path {
7571 d: "M7.49915 0.877045C11.1566 0.877045 14.1218 3.84178 14.1222 7.49911C14.1222 11.1568 11.1568 14.1222 7.49915 14.1222C3.84181 14.1218 0.877075 11.1565 0.877075 7.49911C0.877487 3.84203 3.84206 0.877456 7.49915 0.877045ZM7.49915 1.82626C4.36674 1.82667 1.82671 4.3667 1.82629 7.49911C1.82629 10.6319 4.36648 13.1716 7.49915 13.172C10.6321 13.172 13.172 10.6321 13.172 7.49911C13.1716 4.36645 10.6319 1.82626 7.49915 1.82626Z",
7572 fill: "currentColor",
7573 })
7574 }
7575
7576 const WIDTH: Option<&'static str> = Some("15");
7577 const HEIGHT: Option<&'static str> = Some("15");
7578 const FILL: Option<&'static str> = Some("none");
7579 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7580
7581}
7582
7583#[derive(Default, Copy, Clone, PartialEq, Eq)]
7584pub struct ValueNone;
7585
7586impl IconShape for ValueNone {
7587 fn child_elements(&self) -> Element {
7588 rsx!(path {
7589 d: "M7.49908 0.87706C9.1478 0.87706 10.6553 1.48094 11.8145 2.47765L12.6465 1.64659C12.8418 1.45133 13.1583 1.45133 13.3536 1.64659C13.5487 1.84186 13.5488 2.15839 13.3536 2.35362L12.5215 3.18468C13.5185 4.34364 14.1219 5.85046 14.1221 7.49913C14.1221 11.1568 11.1567 14.1222 7.49908 14.1222C5.85042 14.122 4.3436 13.5185 3.18463 12.5216L2.35358 13.3536C2.15834 13.5488 1.84181 13.5488 1.64655 13.3536C1.45129 13.1584 1.4513 12.8419 1.64655 12.6466L2.4776 11.8146C1.4809 10.6553 0.877014 9.14785 0.877014 7.49913C0.877426 3.84205 3.842 0.877471 7.49908 0.87706ZM3.85748 11.8487C4.84282 12.6747 6.11288 13.1718 7.49908 13.172C10.6321 13.172 13.1719 10.6321 13.1719 7.49913C13.1718 6.11292 12.6747 4.84287 11.8487 3.85753L3.85748 11.8487ZM7.49908 1.82628C4.36667 1.82669 1.82664 4.36672 1.82623 7.49913C1.82623 8.88559 2.32526 10.1553 3.15143 11.1407L11.1407 3.15147C10.1553 2.32531 8.88554 1.82628 7.49908 1.82628Z",
7590 fill: "currentColor",
7591 })
7592 }
7593
7594 const WIDTH: Option<&'static str> = Some("15");
7595 const HEIGHT: Option<&'static str> = Some("15");
7596 const FILL: Option<&'static str> = Some("none");
7597 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7598
7599}
7600
7601#[derive(Default, Copy, Clone, PartialEq, Eq)]
7602pub struct VercelLogo;
7603
7604impl IconShape for VercelLogo {
7605 fn child_elements(&self) -> Element {
7606 rsx!(path {
7607 d: "M14.3998 13H0.599976L7.50037 1L14.3998 13ZM2.32849 12H12.6713L7.49939 3.00488L2.32849 12Z",
7608 fill: "currentColor",
7609 })
7610 }
7611
7612 const WIDTH: Option<&'static str> = Some("15");
7613 const HEIGHT: Option<&'static str> = Some("15");
7614 const FILL: Option<&'static str> = Some("none");
7615 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7616
7617}
7618
7619#[derive(Default, Copy, Clone, PartialEq, Eq)]
7620pub struct Video;
7621
7622impl IconShape for Video {
7623 fn child_elements(&self) -> Element {
7624 rsx!(path {
7625 d: "M8.22559 2.00879C8.94722 2.02645 9.65336 2.06952 10.3203 2.12598C12.3502 2.29781 13.3654 2.38341 14.1455 3.18164C14.1845 3.22151 14.2331 3.27519 14.2695 3.31738C14.9995 4.16223 15 5.28342 15 7.52539L14.999 8.30566C14.989 10.013 14.9083 10.9538 14.2686 11.6934L14.1445 11.8281L13.9951 11.9697C13.2343 12.6376 12.2409 12.7202 10.3711 12.876L9.68848 12.9268C8.99182 12.972 8.25602 13 7.5 13L6.75195 12.9912C6.25814 12.9796 5.77613 12.9569 5.31152 12.9268L4.62891 12.876C2.75912 12.7202 1.7657 12.6376 1.00488 11.9697L0.855469 11.8281L0.731445 11.6934C0.0916644 10.9538 0.0109814 10.013 0.000976562 8.30566L0 7.52539C0 5.42326 -0.000171889 4.30605 0.601562 3.47852L0.730469 3.31738L0.854492 3.18164C1.53718 2.48314 2.39981 2.33 3.96484 2.1875L4.67969 2.12598C5.5688 2.05071 6.52724 2 7.5 2L8.22559 2.00879ZM7.5 3C6.56088 3 5.63164 3.04868 4.76465 3.12207C3.72087 3.21043 3.04504 3.26972 2.52832 3.3916C2.1168 3.48871 1.86412 3.61351 1.65625 3.79785L1.56934 3.88086C1.5446 3.90618 1.50946 3.94393 1.48633 3.9707C1.28713 4.20126 1.15657 4.4891 1.08203 5.0332C1.00225 5.61593 1 6.37714 1 7.52539C1 8.66045 1.00232 9.41024 1.08203 9.98535C1.15622 10.5206 1.28611 10.8065 1.4873 11.0391L1.57031 11.1289L1.6582 11.2119C1.86754 11.3978 2.11705 11.521 2.51855 11.6162C3.02507 11.7363 3.68581 11.7944 4.71191 11.8799L5.37695 11.9287C6.05445 11.9727 6.76826 12 7.5 12C8.47566 12 9.41976 11.9522 10.2881 11.8799C11.3142 11.7944 11.9749 11.7363 12.4814 11.6162C12.9402 11.5074 13.201 11.3627 13.4297 11.1289L13.5127 11.0391L13.585 10.9482C13.7455 10.7305 13.8531 10.4534 13.918 9.98535C13.9977 9.41024 14 8.66045 14 7.52539C14 6.37714 13.9978 5.61593 13.918 5.0332C13.8528 4.55717 13.7444 4.2774 13.585 4.06055L13.5137 3.9707L13.4307 3.88086C13.2049 3.64976 12.9421 3.50262 12.4717 3.3916C11.955 3.26972 11.2791 3.21043 10.2354 3.12207C9.36836 3.04868 8.43912 3 7.5 3ZM5.25 5.38281C5.25 5.20243 5.43539 5.08087 5.60059 5.15332L10.4277 7.27148C10.6272 7.35896 10.6272 7.64104 10.4277 7.72852L5.60059 9.84668C5.43539 9.91913 5.25 9.79757 5.25 9.61719V5.38281Z",
7626 fill: "currentColor",
7627 })
7628 }
7629
7630 const WIDTH: Option<&'static str> = Some("15");
7631 const HEIGHT: Option<&'static str> = Some("15");
7632 const FILL: Option<&'static str> = Some("none");
7633 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7634
7635}
7636
7637#[derive(Default, Copy, Clone, PartialEq, Eq)]
7638pub struct ViewGrid;
7639
7640impl IconShape for ViewGrid {
7641 fn child_elements(&self) -> Element {
7642 rsx!(path {
7643 d: "M13.6533 1.00781C14.4097 1.08461 15 1.72334 15 2.5V12.5L14.9922 12.6533C14.9205 13.3593 14.3593 13.9205 13.6533 13.9922L13.5 14H1.5L1.34668 13.9922C0.64069 13.9205 0.0794913 13.3593 0.0078125 12.6533L0 12.5V2.5C1.51001e-07 1.72334 0.590277 1.08461 1.34668 1.00781L1.5 1H13.5L13.6533 1.00781ZM8 13H13.5C13.7761 13 14 12.7761 14 12.5V8H8V13ZM1 12.5C1 12.7761 1.22386 13 1.5 13H7V8H1V12.5ZM8 7H14V2.5C14 2.22386 13.7761 2 13.5 2H8V7ZM1.5 2C1.22386 2 1 2.22386 1 2.5V7H7V2H1.5Z",
7644 fill: "currentColor",
7645 })
7646 }
7647
7648 const WIDTH: Option<&'static str> = Some("15");
7649 const HEIGHT: Option<&'static str> = Some("15");
7650 const FILL: Option<&'static str> = Some("none");
7651 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7652
7653}
7654
7655#[derive(Default, Copy, Clone, PartialEq, Eq)]
7656pub struct ViewHorizontal;
7657
7658impl IconShape for ViewHorizontal {
7659 fn child_elements(&self) -> Element {
7660 rsx!(path {
7661 d: "M13.6533 1.00781C14.4097 1.08461 15 1.72334 15 2.5V12.5L14.9922 12.6533C14.9205 13.3593 14.3593 13.9205 13.6533 13.9922L13.5 14H1.5L1.34668 13.9922C0.64069 13.9205 0.0794913 13.3593 0.0078125 12.6533L0 12.5V2.5C1.51001e-07 1.72334 0.590277 1.08461 1.34668 1.00781L1.5 1H13.5L13.6533 1.00781ZM1 8V12.5C1 12.7761 1.22386 13 1.5 13H13.5C13.7761 13 14 12.7761 14 12.5V8H1ZM1.5 2C1.22386 2 1 2.22386 1 2.5V7H14V2.5C14 2.22386 13.7761 2 13.5 2H1.5Z",
7662 fill: "currentColor",
7663 })
7664 }
7665
7666 const WIDTH: Option<&'static str> = Some("15");
7667 const HEIGHT: Option<&'static str> = Some("15");
7668 const FILL: Option<&'static str> = Some("none");
7669 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7670
7671}
7672
7673#[derive(Default, Copy, Clone, PartialEq, Eq)]
7674pub struct ViewNone;
7675
7676impl IconShape for ViewNone {
7677 fn child_elements(&self) -> Element {
7678 rsx!(path {
7679 d: "M13.6533 1.00781C13.8273 1.02548 13.9923 1.07351 14.1436 1.14551L14.1748 1.12012L14.2402 1.19727C14.6935 1.45532 15 1.94115 15 2.5V12.5L14.9922 12.6533C14.9205 13.3593 14.3593 13.9205 13.6533 13.9922L13.5 14H1.5L1.34668 13.9922C1.17189 13.9744 1.0063 13.926 0.854492 13.8535L0.825195 13.8799L0.759766 13.8037C0.348324 13.5696 0.0579707 13.1473 0.0078125 12.6533L0 12.5V2.5C1.51001e-07 1.72334 0.590277 1.08461 1.34668 1.00781L1.5 1H13.5L13.6533 1.00781ZM1.85156 13H13.5C13.7761 13 14 12.7761 14 12.5V2.58691L1.85156 13ZM1.5 2C1.22386 2 1 2.22386 1 2.5V12.4121L13.1484 2H1.5Z",
7680 fill: "currentColor",
7681 })
7682 }
7683
7684 const WIDTH: Option<&'static str> = Some("15");
7685 const HEIGHT: Option<&'static str> = Some("15");
7686 const FILL: Option<&'static str> = Some("none");
7687 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7688
7689}
7690
7691#[derive(Default, Copy, Clone, PartialEq, Eq)]
7692pub struct ViewVertical;
7693
7694impl IconShape for ViewVertical {
7695 fn child_elements(&self) -> Element {
7696 rsx!(path {
7697 d: "M13.6533 1.00781C14.4097 1.08461 15 1.72334 15 2.5V12.5L14.9922 12.6533C14.9205 13.3593 14.3593 13.9205 13.6533 13.9922L13.5 14H1.5L1.34668 13.9922C0.64069 13.9205 0.0794913 13.3593 0.0078125 12.6533L0 12.5V2.5C1.51001e-07 1.72334 0.590277 1.08461 1.34668 1.00781L1.5 1H13.5L13.6533 1.00781ZM1.5 2C1.22386 2 1 2.22386 1 2.5V12.5C1 12.7761 1.22386 13 1.5 13H7V2H1.5ZM8 13H13.5C13.7761 13 14 12.7761 14 12.5V2.5C14 2.22386 13.7761 2 13.5 2H8V13Z",
7698 fill: "currentColor",
7699 })
7700 }
7701
7702 const WIDTH: Option<&'static str> = Some("15");
7703 const HEIGHT: Option<&'static str> = Some("15");
7704 const FILL: Option<&'static str> = Some("none");
7705 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7706
7707}
7708
7709#[derive(Default, Copy, Clone, PartialEq, Eq)]
7710pub struct Width;
7711
7712impl IconShape for Width {
7713 fn child_elements(&self) -> Element {
7714 rsx!(path {
7715 d: "M10.1817 4.68168C10.3356 4.52784 10.5734 4.50855 10.7481 4.62406L10.8184 4.68168L13.3184 7.18168L13.3761 7.25199C13.475 7.4018 13.4751 7.59833 13.3761 7.74809L13.3184 7.8184L10.8184 10.3184C10.6428 10.4941 10.3575 10.4939 10.1817 10.3184C10.006 10.1427 10.006 9.85742 10.1817 9.68168L11.9132 7.95024H3.08699L4.81844 9.68168L4.87606 9.75199C4.9914 9.92666 4.97222 10.1646 4.81844 10.3184C4.66466 10.4722 4.4267 10.4914 4.25203 10.376L4.18172 10.3184L1.68172 7.8184C1.50599 7.64266 1.50599 7.35742 1.68172 7.18168L4.18172 4.68168L4.25203 4.62406C4.42672 4.50858 4.66461 4.52785 4.81844 4.68168C4.9721 4.83553 4.99152 5.07347 4.87606 5.24809L4.81844 5.3184L3.08699 7.04984H11.9132L10.1817 5.3184L10.1241 5.24809C10.0086 5.07339 10.0279 4.83552 10.1817 4.68168Z",
7716 fill: "currentColor",
7717 })
7718 }
7719
7720 const WIDTH: Option<&'static str> = Some("15");
7721 const HEIGHT: Option<&'static str> = Some("15");
7722 const FILL: Option<&'static str> = Some("none");
7723 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7724
7725}
7726
7727#[derive(Default, Copy, Clone, PartialEq, Eq)]
7728pub struct ZoomIn;
7729
7730impl IconShape for ZoomIn {
7731 fn child_elements(&self) -> Element {
7732 rsx!(path {
7733 d: "M6.5 2C8.98528 2 11 4.01472 11 6.5C11 7.56246 10.6304 8.5378 10.0146 9.30762L12.8535 12.1465L12.918 12.2246C13.0461 12.4187 13.0244 12.6827 12.8535 12.8535C12.6827 13.0244 12.4187 13.0461 12.2246 12.918L12.1465 12.8535L9.30762 10.0146C8.5378 10.6304 7.56246 11 6.5 11C4.01472 11 2 8.98528 2 6.5C2 4.01472 4.01472 2 6.5 2ZM6.5 3C4.567 3 3 4.567 3 6.5C3 8.433 4.567 10 6.5 10C8.433 10 10 8.433 10 6.5C10 4.567 8.433 3 6.5 3ZM6.5 4.25C6.77614 4.25 7 4.47386 7 4.75V6H8.25L8.35059 6.00977C8.57855 6.05629 8.75 6.25829 8.75 6.5C8.75 6.74171 8.57855 6.94371 8.35059 6.99023L8.25 7H7V8.25C7 8.52614 6.77614 8.75 6.5 8.75C6.22386 8.75 6 8.52614 6 8.25V7H4.75C4.47386 7 4.25 6.77614 4.25 6.5C4.25 6.22386 4.47386 6 4.75 6H6V4.75C6 4.47386 6.22386 4.25 6.5 4.25Z",
7734 fill: "currentColor",
7735 })
7736 }
7737
7738 const WIDTH: Option<&'static str> = Some("15");
7739 const HEIGHT: Option<&'static str> = Some("15");
7740 const FILL: Option<&'static str> = Some("none");
7741 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7742
7743}
7744
7745#[derive(Default, Copy, Clone, PartialEq, Eq)]
7746pub struct ZoomOut;
7747
7748impl IconShape for ZoomOut {
7749 fn child_elements(&self) -> Element {
7750 rsx!(path {
7751 d: "M6.5 2C8.98528 2 11 4.01472 11 6.5C11 7.56246 10.6304 8.5378 10.0146 9.30762L12.8535 12.1465L12.918 12.2246C13.0461 12.4187 13.0244 12.6827 12.8535 12.8535C12.6827 13.0244 12.4187 13.0461 12.2246 12.918L12.1465 12.8535L9.30762 10.0146C8.5378 10.6304 7.56246 11 6.5 11C4.01472 11 2 8.98528 2 6.5C2 4.01472 4.01472 2 6.5 2ZM6.5 3C4.567 3 3 4.567 3 6.5C3 8.433 4.567 10 6.5 10C8.433 10 10 8.433 10 6.5C10 4.567 8.433 3 6.5 3ZM8.35059 6.00977C8.57855 6.05629 8.75 6.25829 8.75 6.5C8.75 6.74171 8.57855 6.94371 8.35059 6.99023L8.25 7H4.75C4.47386 7 4.25 6.77614 4.25 6.5C4.25 6.22386 4.47386 6 4.75 6H8.25L8.35059 6.00977Z",
7752 fill: "currentColor",
7753 })
7754 }
7755
7756 const WIDTH: Option<&'static str> = Some("15");
7757 const HEIGHT: Option<&'static str> = Some("15");
7758 const FILL: Option<&'static str> = Some("none");
7759 const VIEW_BOX: Option<&'static str> = Some("0 0 15 15");
7760
7761}