@ds-mo/icons 3.0.0 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@ds-mo/icons.svg)](https://www.npmjs.com/package/@ds-mo/icons)
4
4
 
5
- IcoMo — **424 SVG icons** (392 system icons + 32 country flags) as tree-shakeable React components, framework-agnostic SVG strings, TypeScript definitions, and an SVG sprite.
5
+ IcoMo — **426 SVG icons** (394 system icons + 32 country flags) as tree-shakeable React components, framework-agnostic SVG strings, TypeScript definitions, and an SVG sprite.
6
6
 
7
7
  Part of the **ds-mo design system trilogy**: [@ds-mo/tokens](https://www.npmjs.com/package/@ds-mo/tokens) → **@ds-mo/icons** → [@ds-mo/ui](https://www.npmjs.com/package/@ds-mo/ui) (CompoMo).
8
8
 
@@ -28,7 +28,7 @@ Icons are grouped into **categories** so the pipeline can treat them differently
28
28
 
29
29
  | Category | Count | Themeable | Description |
30
30
  |---|---|---|---|
31
- | `system` | 392 | ✅ `currentColor` | Monochrome UI icons — respond to CSS `color` and the `color` prop |
31
+ | `system` | 394 | ✅ `currentColor` | Monochrome UI icons — respond to CSS `color` and the `color` prop |
32
32
  | `flag` | 32 | ❌ preserved | Multi-color country flags — hex + P3 wide-gamut colors kept verbatim |
33
33
 
34
34
  Flag component names are prefixed with `Flag` (e.g. `FlagFrance`, `FlagUnitedStates`) so every export is globally unique.
@@ -108,8 +108,8 @@ Machine-readable icon list (for docs, agents, search indexes):
108
108
  import meta from '@ds-mo/icons/meta';
109
109
 
110
110
  meta.version // e.g. "0.7.3" — matches package version
111
- meta.count // 424
112
- meta.categories // { system: {count:392,themeable:true}, flag: {count:32,themeable:false} }
111
+ meta.count // 426
112
+ meta.categories // { system: {count:394,themeable:true}, flag: {count:32,themeable:false} }
113
113
  meta.icons // [{ name, category, kebab, aliases }, ...]
114
114
  ```
115
115
 
@@ -2,9 +2,9 @@ import { createElement } from 'react';
2
2
  import { createIcon } from '../createIcon.mjs';
3
3
 
4
4
  const BackslashBrackets = createIcon('backslash-brackets', [
5
- createElement('path', { d: "M6.01501 13.8787L9.01501 1.87872L9.98516 2.12126L6.98516 14.1213L6.01501 13.8787Z", key: "a" }),
6
- createElement('path', { d: "M10.6465 4.56839L14.0781 7.99999L10.6465 11.4316L11.3537 12.1387L15.0001 8.49226V7.50773L11.3537 3.86128L10.6465 4.56839Z", key: "b" }),
7
- createElement('path', { d: "M1.92219 7.99999L5.35364 4.56854L4.64654 3.86143L1.00024 7.50773V8.49226L4.64654 12.1385L5.35364 11.4314L1.92219 7.99999Z", key: "c" }),
5
+ createElement('path', { d: "M10.4746 2.1582L6.47461 14.1582L5.52539 13.8418L9.52539 1.8418L10.4746 2.1582Z", key: "a" }),
6
+ createElement('path', { d: "M4.79102 5.90723L1.86035 8L4.79102 10.0928L4.20898 10.9072L0.708984 8.40723V7.59277L4.20898 5.09277L4.79102 5.90723Z", key: "b" }),
7
+ createElement('path', { d: "M15.291 7.59277V8.40723L11.791 10.9072L11.209 10.0928L14.1396 8L11.209 5.90723L11.791 5.09277L15.291 7.59277Z", key: "c" }),
8
8
  ]);
9
9
 
10
10
  BackslashBrackets.displayName = 'BackslashBrackets';
@@ -1,2 +1,2 @@
1
1
  import { IconComponent } from '../createIcon.mjs';
2
- export declare const Lightning: IconComponent;
2
+ export declare const Bolt: IconComponent;
@@ -0,0 +1,9 @@
1
+ import { createElement } from 'react';
2
+ import { createIcon } from '../createIcon.mjs';
3
+
4
+ const Bolt = createIcon('bolt', [
5
+ createElement('path', { d: "M10.4932 1.08203L9.58984 6.5H12.5L12.8877 7.31543L6.3877 15.3154L5.50684 14.918L6.41016 9.5H3.5L3.1123 8.68457L9.6123 0.68457L10.4932 1.08203ZM4.5498 8.5H7L7.49316 9.08203L6.80371 13.2178L11.4502 7.5H9L8.50684 6.91797L9.19531 2.78125L4.5498 8.5Z", key: "a" }),
6
+ ]);
7
+
8
+ Bolt.displayName = 'Bolt';
9
+ export { Bolt };
@@ -0,0 +1,2 @@
1
+ import { IconComponent } from '../createIcon.mjs';
2
+ export declare const BoltFilled: IconComponent;
@@ -0,0 +1,9 @@
1
+ import { createElement } from 'react';
2
+ import { createIcon } from '../createIcon.mjs';
3
+
4
+ const BoltFilled = createIcon('bolt-filled', [
5
+ createElement('path', { d: "M10.4932 1.08203L9.58984 6.5H12.5L12.8877 7.31543L6.3877 15.3154L5.50684 14.918L6.41016 9.5H3.5L3.1123 8.68457L9.6123 0.68457L10.4932 1.08203Z", key: "a" }),
6
+ ]);
7
+
8
+ BoltFilled.displayName = 'BoltFilled';
9
+ export { BoltFilled };
@@ -0,0 +1,2 @@
1
+ import { IconComponent } from '../createIcon.mjs';
2
+ export declare const HandOpen: IconComponent;
@@ -0,0 +1,9 @@
1
+ import { createElement } from 'react';
2
+ import { createIcon } from '../createIcon.mjs';
3
+
4
+ const HandOpen = createIcon('hand-open', [
5
+ createElement('path', { d: "M8.50003 3C8.50003 2.72386 8.27617 2.5 8.00003 2.5C7.72389 2.5 7.50003 2.72386 7.50003 3V8H6.50003V4C6.50003 3.72386 6.27617 3.5 6.00003 3.5C5.72389 3.5 5.50003 3.72386 5.50003 4V9L4.59964 9.2998L3.56741 7.92285C3.4358 7.74737 3.19957 7.68728 3.00003 7.77832C2.76006 7.888 2.65788 8.17493 2.77542 8.41113L5.3096 13.5H11.6094L12.5 9.9375V5.5C12.5 5.22387 12.2762 5.00001 12 5C11.7239 5 11.5 5.22386 11.5 5.5V8H10.5V4C10.5 3.72386 10.2762 3.5 10 3.5C9.72389 3.5 9.50003 3.72386 9.50003 4V8H8.50003V3ZM11.5 4.08691C11.6566 4.03153 11.8245 4 12 4C12.8284 4.00001 13.5 4.67158 13.5 5.5V10.0615L13.4854 10.1211L12.4854 14.1211L12 14.5H5.00003L4.55277 14.2227L1.88089 8.85645C1.51144 8.11422 1.82998 7.21384 2.58402 6.86914C3.21122 6.58248 3.95346 6.77156 4.36722 7.32324L4.50003 7.5V4C4.50003 3.17157 5.1716 2.5 6.00003 2.5C6.1954 2.5 6.38159 2.53849 6.55277 2.60645C6.7257 1.96899 7.30784 1.5 8.00003 1.5C8.69213 1.5 9.27331 1.96912 9.44632 2.60645C9.61772 2.53828 9.80434 2.5 10 2.5C10.8285 2.5 11.5 3.17157 11.5 4V4.08691Z", key: "a" }),
6
+ ]);
7
+
8
+ HandOpen.displayName = 'HandOpen';
9
+ export { HandOpen };
@@ -2,7 +2,7 @@ import { createElement } from 'react';
2
2
  import { createIcon } from '../createIcon.mjs';
3
3
 
4
4
  const MessageBubble = createIcon('message-bubble', [
5
- createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M14 11.4982V11.5007C14 12.3289 13.3284 13.0003 12.5 13.0003H4.18189L2.98934 14H2V4.49959C2 3.67139 2.67157 3 3.5 3H12.5C13.3284 3 14 3.67139 14 4.49959V11.4982ZM12.5 3.99972C12.7761 3.99972 13 4.22352 13 4.49959V11.5007C13 11.7767 12.7761 12.0005 12.5 12.0005H3.81811L3 12.6864V4.49959C3 4.22352 3.22386 3.99972 3.5 3.99972H12.5Z", key: "a" }),
5
+ createElement('path', { d: "M13 11V3.5C13 3.22386 12.7761 3 12.5 3H3.5C3.22386 3 3 3.22386 3 3.5V12.75L4.66699 11.5H12.5V12.5H5L3 14H2V3.5C2 2.67157 2.67157 2 3.5 2H12.5C13.3284 2 14 2.67157 14 3.5V11C14 11.8284 13.3284 12.5 12.5 12.5V11.5C12.7761 11.5 13 11.2761 13 11Z", key: "a" }),
6
6
  ]);
7
7
 
8
8
  MessageBubble.displayName = 'MessageBubble';
@@ -0,0 +1,2 @@
1
+ import { IconComponent } from '../createIcon.mjs';
2
+ export declare const SquareDottedMinus: IconComponent;
@@ -0,0 +1,25 @@
1
+ import { createElement } from 'react';
2
+ import { createIcon } from '../createIcon.mjs';
3
+
4
+ const SquareDottedMinus = createIcon('square-dotted-minus', [
5
+ createElement('path', { d: "M13 12H10V11H13V12Z", key: "a" }),
6
+ createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M11.5 8C13.433 8 15 9.567 15 11.5C15 13.433 13.433 15 11.5 15C9.567 15 8 13.433 8 11.5C8 9.567 9.567 8 11.5 8ZM11.5 9C10.1193 9 9 10.1193 9 11.5C9 12.8807 10.1193 14 11.5 14C12.8807 14 14 12.8807 14 11.5C14 10.1193 12.8807 9 11.5 9Z", key: "b" }),
7
+ createElement('path', { d: "M3 13H2V12H3V13Z", key: "c" }),
8
+ createElement('path', { d: "M5 13H4V12H5V13Z", key: "d" }),
9
+ createElement('path', { d: "M7 13H6V12H7V13Z", key: "e" }),
10
+ createElement('path', { d: "M3 11H2V10H3V11Z", key: "f" }),
11
+ createElement('path', { d: "M3 9H2V8H3V9Z", key: "g" }),
12
+ createElement('path', { d: "M3 7H2V6H3V7Z", key: "h" }),
13
+ createElement('path', { d: "M13 7H12V6H13V7Z", key: "i" }),
14
+ createElement('path', { d: "M3 5H2V4H3V5Z", key: "j" }),
15
+ createElement('path', { d: "M13 5H12V4H13V5Z", key: "k" }),
16
+ createElement('path', { d: "M3 3H2V2H3V3Z", key: "l" }),
17
+ createElement('path', { d: "M5 3H4V2H5V3Z", key: "m" }),
18
+ createElement('path', { d: "M7 3H6V2H7V3Z", key: "n" }),
19
+ createElement('path', { d: "M9 3H8V2H9V3Z", key: "o" }),
20
+ createElement('path', { d: "M11 3H10V2H11V3Z", key: "p" }),
21
+ createElement('path', { d: "M13 3H12V2H13V3Z", key: "q" }),
22
+ ]);
23
+
24
+ SquareDottedMinus.displayName = 'SquareDottedMinus';
25
+ export { SquareDottedMinus };
@@ -33,6 +33,8 @@ export { BellWifi } from './BellWifi.mjs';
33
33
  export { BlackWhite } from './BlackWhite.mjs';
34
34
  export { BlankUI } from './BlankUI.mjs';
35
35
  export { Bluetooth } from './Bluetooth.mjs';
36
+ export { Bolt } from './Bolt.mjs';
37
+ export { BoltFilled } from './BoltFilled.mjs';
36
38
  export { Bookmark } from './Bookmark.mjs';
37
39
  export { Box } from './Box.mjs';
38
40
  export { Braces } from './Braces.mjs';
@@ -181,6 +183,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
181
183
  export { GraphIncreasing } from './GraphIncreasing.mjs';
182
184
  export { GroupBy } from './GroupBy.mjs';
183
185
  export { Hamburger } from './Hamburger.mjs';
186
+ export { HandOpen } from './HandOpen.mjs';
184
187
  export { Headset } from './Headset.mjs';
185
188
  export { History } from './History.mjs';
186
189
  export { HourGlass } from './HourGlass.mjs';
@@ -208,8 +211,6 @@ export { LetterI } from './LetterI.mjs';
208
211
  export { License } from './License.mjs';
209
212
  export { LicensePlate } from './LicensePlate.mjs';
210
213
  export { Lifebuoy } from './Lifebuoy.mjs';
211
- export { Lightning } from './Lightning.mjs';
212
- export { LightningFilled } from './LightningFilled.mjs';
213
214
  export { Link } from './Link.mjs';
214
215
  export { List } from './List.mjs';
215
216
  export { Loads } from './Loads.mjs';
@@ -332,6 +333,7 @@ export { SquareCheck } from './SquareCheck.mjs';
332
333
  export { SquareCheckFilled } from './SquareCheckFilled.mjs';
333
334
  export { SquareDollar } from './SquareDollar.mjs';
334
335
  export { SquareDollarFilled } from './SquareDollarFilled.mjs';
336
+ export { SquareDottedMinus } from './SquareDottedMinus.mjs';
335
337
  export { SquareFilled } from './SquareFilled.mjs';
336
338
  export { SquareGrid } from './SquareGrid.mjs';
337
339
  export { SquarePencil } from './SquarePencil.mjs';
@@ -33,6 +33,8 @@ export { BellWifi } from './BellWifi.mjs';
33
33
  export { BlackWhite } from './BlackWhite.mjs';
34
34
  export { BlankUI } from './BlankUI.mjs';
35
35
  export { Bluetooth } from './Bluetooth.mjs';
36
+ export { Bolt } from './Bolt.mjs';
37
+ export { BoltFilled } from './BoltFilled.mjs';
36
38
  export { Bookmark } from './Bookmark.mjs';
37
39
  export { Box } from './Box.mjs';
38
40
  export { Braces } from './Braces.mjs';
@@ -181,6 +183,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
181
183
  export { GraphIncreasing } from './GraphIncreasing.mjs';
182
184
  export { GroupBy } from './GroupBy.mjs';
183
185
  export { Hamburger } from './Hamburger.mjs';
186
+ export { HandOpen } from './HandOpen.mjs';
184
187
  export { Headset } from './Headset.mjs';
185
188
  export { History } from './History.mjs';
186
189
  export { HourGlass } from './HourGlass.mjs';
@@ -208,8 +211,6 @@ export { LetterI } from './LetterI.mjs';
208
211
  export { License } from './License.mjs';
209
212
  export { LicensePlate } from './LicensePlate.mjs';
210
213
  export { Lifebuoy } from './Lifebuoy.mjs';
211
- export { Lightning } from './Lightning.mjs';
212
- export { LightningFilled } from './LightningFilled.mjs';
213
214
  export { Link } from './Link.mjs';
214
215
  export { List } from './List.mjs';
215
216
  export { Loads } from './Loads.mjs';
@@ -332,6 +333,7 @@ export { SquareCheck } from './SquareCheck.mjs';
332
333
  export { SquareCheckFilled } from './SquareCheckFilled.mjs';
333
334
  export { SquareDollar } from './SquareDollar.mjs';
334
335
  export { SquareDollarFilled } from './SquareDollarFilled.mjs';
336
+ export { SquareDottedMinus } from './SquareDottedMinus.mjs';
335
337
  export { SquareFilled } from './SquareFilled.mjs';
336
338
  export { SquareGrid } from './SquareGrid.mjs';
337
339
  export { SquarePencil } from './SquarePencil.mjs';
package/dist/index.d.ts CHANGED
@@ -38,6 +38,8 @@ export { BellWifi } from './icons/BellWifi.mjs';
38
38
  export { BlackWhite } from './icons/BlackWhite.mjs';
39
39
  export { BlankUI } from './icons/BlankUI.mjs';
40
40
  export { Bluetooth } from './icons/Bluetooth.mjs';
41
+ export { Bolt } from './icons/Bolt.mjs';
42
+ export { BoltFilled } from './icons/BoltFilled.mjs';
41
43
  export { Bookmark } from './icons/Bookmark.mjs';
42
44
  export { Box } from './icons/Box.mjs';
43
45
  export { Braces } from './icons/Braces.mjs';
@@ -186,6 +188,7 @@ export { GraphDecreasing } from './icons/GraphDecreasing.mjs';
186
188
  export { GraphIncreasing } from './icons/GraphIncreasing.mjs';
187
189
  export { GroupBy } from './icons/GroupBy.mjs';
188
190
  export { Hamburger } from './icons/Hamburger.mjs';
191
+ export { HandOpen } from './icons/HandOpen.mjs';
189
192
  export { Headset } from './icons/Headset.mjs';
190
193
  export { History } from './icons/History.mjs';
191
194
  export { HourGlass } from './icons/HourGlass.mjs';
@@ -213,8 +216,6 @@ export { LetterI } from './icons/LetterI.mjs';
213
216
  export { License } from './icons/License.mjs';
214
217
  export { LicensePlate } from './icons/LicensePlate.mjs';
215
218
  export { Lifebuoy } from './icons/Lifebuoy.mjs';
216
- export { Lightning } from './icons/Lightning.mjs';
217
- export { LightningFilled } from './icons/LightningFilled.mjs';
218
219
  export { Link } from './icons/Link.mjs';
219
220
  export { List } from './icons/List.mjs';
220
221
  export { Loads } from './icons/Loads.mjs';
@@ -337,6 +338,7 @@ export { SquareCheck } from './icons/SquareCheck.mjs';
337
338
  export { SquareCheckFilled } from './icons/SquareCheckFilled.mjs';
338
339
  export { SquareDollar } from './icons/SquareDollar.mjs';
339
340
  export { SquareDollarFilled } from './icons/SquareDollarFilled.mjs';
341
+ export { SquareDottedMinus } from './icons/SquareDottedMinus.mjs';
340
342
  export { SquareFilled } from './icons/SquareFilled.mjs';
341
343
  export { SquareGrid } from './icons/SquareGrid.mjs';
342
344
  export { SquarePencil } from './icons/SquarePencil.mjs';
package/dist/index.mjs CHANGED
@@ -36,6 +36,8 @@ export { BellWifi } from './icons/BellWifi.mjs';
36
36
  export { BlackWhite } from './icons/BlackWhite.mjs';
37
37
  export { BlankUI } from './icons/BlankUI.mjs';
38
38
  export { Bluetooth } from './icons/Bluetooth.mjs';
39
+ export { Bolt } from './icons/Bolt.mjs';
40
+ export { BoltFilled } from './icons/BoltFilled.mjs';
39
41
  export { Bookmark } from './icons/Bookmark.mjs';
40
42
  export { Box } from './icons/Box.mjs';
41
43
  export { Braces } from './icons/Braces.mjs';
@@ -184,6 +186,7 @@ export { GraphDecreasing } from './icons/GraphDecreasing.mjs';
184
186
  export { GraphIncreasing } from './icons/GraphIncreasing.mjs';
185
187
  export { GroupBy } from './icons/GroupBy.mjs';
186
188
  export { Hamburger } from './icons/Hamburger.mjs';
189
+ export { HandOpen } from './icons/HandOpen.mjs';
187
190
  export { Headset } from './icons/Headset.mjs';
188
191
  export { History } from './icons/History.mjs';
189
192
  export { HourGlass } from './icons/HourGlass.mjs';
@@ -211,8 +214,6 @@ export { LetterI } from './icons/LetterI.mjs';
211
214
  export { License } from './icons/License.mjs';
212
215
  export { LicensePlate } from './icons/LicensePlate.mjs';
213
216
  export { Lifebuoy } from './icons/Lifebuoy.mjs';
214
- export { Lightning } from './icons/Lightning.mjs';
215
- export { LightningFilled } from './icons/LightningFilled.mjs';
216
217
  export { Link } from './icons/Link.mjs';
217
218
  export { List } from './icons/List.mjs';
218
219
  export { Loads } from './icons/Loads.mjs';
@@ -335,6 +336,7 @@ export { SquareCheck } from './icons/SquareCheck.mjs';
335
336
  export { SquareCheckFilled } from './icons/SquareCheckFilled.mjs';
336
337
  export { SquareDollar } from './icons/SquareDollar.mjs';
337
338
  export { SquareDollarFilled } from './icons/SquareDollarFilled.mjs';
339
+ export { SquareDottedMinus } from './icons/SquareDottedMinus.mjs';
338
340
  export { SquareFilled } from './icons/SquareFilled.mjs';
339
341
  export { SquareGrid } from './icons/SquareGrid.mjs';
340
342
  export { SquarePencil } from './icons/SquarePencil.mjs';
package/dist/meta.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
- "version": "3.0.0",
3
- "count": 424,
2
+ "version": "4.1.0",
3
+ "count": 426,
4
4
  "categories": {
5
5
  "system": {
6
- "count": 392,
6
+ "count": 394,
7
7
  "themeable": true
8
8
  },
9
9
  "flag": {
@@ -362,6 +362,26 @@
362
362
  "pairing"
363
363
  ]
364
364
  },
365
+ {
366
+ "name": "Bolt",
367
+ "category": "system",
368
+ "kebab": "bolt",
369
+ "aliases": [
370
+ "lightning",
371
+ "fast",
372
+ "power"
373
+ ]
374
+ },
375
+ {
376
+ "name": "BoltFilled",
377
+ "category": "system",
378
+ "kebab": "bolt-filled",
379
+ "aliases": [
380
+ "lightning-filled",
381
+ "fast-solid",
382
+ "lightning-selected"
383
+ ]
384
+ },
365
385
  {
366
386
  "name": "Bookmark",
367
387
  "category": "system",
@@ -1858,6 +1878,17 @@
1858
1878
  "lines"
1859
1879
  ]
1860
1880
  },
1881
+ {
1882
+ "name": "HandOpen",
1883
+ "category": "system",
1884
+ "kebab": "hand-open",
1885
+ "aliases": [
1886
+ "palm",
1887
+ "gesture",
1888
+ "raise-hand",
1889
+ "stop"
1890
+ ]
1891
+ },
1861
1892
  {
1862
1893
  "name": "Headset",
1863
1894
  "category": "system",
@@ -2134,26 +2165,6 @@
2134
2165
  "rescue"
2135
2166
  ]
2136
2167
  },
2137
- {
2138
- "name": "Lightning",
2139
- "category": "system",
2140
- "kebab": "lightning",
2141
- "aliases": [
2142
- "bolt",
2143
- "fast",
2144
- "power"
2145
- ]
2146
- },
2147
- {
2148
- "name": "LightningFilled",
2149
- "category": "system",
2150
- "kebab": "lightning-filled",
2151
- "aliases": [
2152
- "bolt-filled",
2153
- "fast-solid",
2154
- "lightning-selected"
2155
- ]
2156
- },
2157
2168
  {
2158
2169
  "name": "Link",
2159
2170
  "category": "system",
@@ -3380,6 +3391,16 @@
3380
3391
  "price-box"
3381
3392
  ]
3382
3393
  },
3394
+ {
3395
+ "name": "SquareDottedMinus",
3396
+ "category": "system",
3397
+ "kebab": "square-dotted-minus",
3398
+ "aliases": [
3399
+ "dashed-square-minus",
3400
+ "dotted-minus",
3401
+ "remove-dashed-box"
3402
+ ]
3403
+ },
3383
3404
  {
3384
3405
  "name": "SquareFilled",
3385
3406
  "category": "system",
package/dist/sprite.svg CHANGED
@@ -60,7 +60,7 @@
60
60
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8 9C9.38071 9 10.5 7.88071 10.5 6.5C10.5 5.11929 9.38071 4 8 4C6.61929 4 5.5 5.11929 5.5 6.5C5.5 7.88071 6.61929 9 8 9ZM8 8C8.82843 8 9.5 7.32843 9.5 6.5C9.5 5.67157 8.82843 5 8 5C7.17157 5 6.5 5.67157 6.5 6.5C6.5 7.32843 7.17157 8 8 8Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8 2C4.68629 2 2 4.68629 2 8C2 11.3137 4.68629 14 8 14C11.3137 14 14 11.3137 14 8C14 4.68629 11.3137 2 8 2ZM3 8C3 5.23858 5.23858 3 8 3C10.7614 3 13 5.23858 13 8C13 9.22036 12.5628 10.3386 11.8365 11.2067C11.5294 10.4967 10.8227 10 10 10H6C5.1773 10 4.47062 10.4967 4.16352 11.2067C3.4372 10.3386 3 9.22036 3 8ZM5 12.0004C5.83566 12.6281 6.87439 13 8 13C9.12561 13 10.1643 12.6281 11 12.0004C11 11.4481 10.5523 11 10 11H6C5.44772 11 5 11.4481 5 12.0004Z" fill="currentColor"/>
61
61
  </symbol>
62
62
  <symbol id="backslash-brackets" viewBox="0 0 16 16" fill="currentColor">
63
- <path d="M6.01501 13.8787L9.01501 1.87872L9.98516 2.12126L6.98516 14.1213L6.01501 13.8787Z" fill="currentColor"/><path d="M10.6465 4.56839L14.0781 7.99999L10.6465 11.4316L11.3537 12.1387L15.0001 8.49226V7.50773L11.3537 3.86128L10.6465 4.56839Z" fill="currentColor"/><path d="M1.92219 7.99999L5.35364 4.56854L4.64654 3.86143L1.00024 7.50773V8.49226L4.64654 12.1385L5.35364 11.4314L1.92219 7.99999Z" fill="currentColor"/>
63
+ <path d="M10.4746 2.1582L6.47461 14.1582L5.52539 13.8418L9.52539 1.8418L10.4746 2.1582Z" fill="currentColor"/><path d="M4.79102 5.90723L1.86035 8L4.79102 10.0928L4.20898 10.9072L0.708984 8.40723V7.59277L4.20898 5.09277L4.79102 5.90723Z" fill="currentColor"/><path d="M15.291 7.59277V8.40723L11.791 10.9072L11.209 10.0928L14.1396 8L11.209 5.90723L11.791 5.09277L15.291 7.59277Z" fill="currentColor"/>
64
64
  </symbol>
65
65
  <symbol id="battery-charging" viewBox="0 0 16 16" fill="currentColor">
66
66
  <path d="M3.5 7.00468V7.99521L6.27525 8.70711L4.73025 14H5.70144L11.5 7.98863V7.01281L8.98355 6.32697L10.2347 1.99999L9.24451 1.99963L3.5 7.00468Z" fill="currentColor"/><path d="M2.5 12H4.27232L3.98042 13H2.5C1.67157 13 1 12.3284 1 11.5V4.5C1 3.67157 1.67157 3 2.5 3H6.57409L5.42635 4H2.5C2.22386 4 2 4.22386 2 4.5V11.5C2 11.7761 2.22386 12 2.5 12Z" fill="currentColor"/><path d="M8.05546 13L9.02006 12H12.5C12.7761 12 13 11.7761 13 11.5V4.5C13 4.22386 12.7761 4 12.5 4H10.6973L10.9865 3H12.5C13.3284 3 14 3.67157 14 4.5V6H15V10H14V11.5C14 12.3284 13.3284 13 12.5 13H8.05546Z" fill="currentColor"/>
@@ -104,6 +104,12 @@
104
104
  <symbol id="bluetooth" viewBox="0 0 16 16" fill="currentColor">
105
105
  <path fill-rule="evenodd" clip-rule="evenodd" d="M7.50005 2.00001L8.30005 1.60001L12.3 4.60001V5.40001L8.83338 8.00001L12.3 10.6V11.4L8.30005 14.4L7.50005 14V9.00001L3.90005 11.7L3.30005 10.9L7.16672 8.00001L3.30005 5.10001L3.90005 4.30001L7.50005 7.00001V2.00001ZM8.50005 9.00001L11.1667 11L8.50005 13V9.00001ZM8.50005 7.00001V3.00001L11.1667 5.00001L8.50005 7.00001Z" fill="currentColor"/>
106
106
  </symbol>
107
+ <symbol id="bolt" viewBox="0 0 16 16" fill="currentColor">
108
+ <path d="M10.4932 1.08203L9.58984 6.5H12.5L12.8877 7.31543L6.3877 15.3154L5.50684 14.918L6.41016 9.5H3.5L3.1123 8.68457L9.6123 0.68457L10.4932 1.08203ZM4.5498 8.5H7L7.49316 9.08203L6.80371 13.2178L11.4502 7.5H9L8.50684 6.91797L9.19531 2.78125L4.5498 8.5Z" fill="currentColor"/>
109
+ </symbol>
110
+ <symbol id="bolt-filled" viewBox="0 0 16 16" fill="currentColor">
111
+ <path d="M10.4932 1.08203L9.58984 6.5H12.5L12.8877 7.31543L6.3877 15.3154L5.50684 14.918L6.41016 9.5H3.5L3.1123 8.68457L9.6123 0.68457L10.4932 1.08203Z" fill="currentColor"/>
112
+ </symbol>
107
113
  <symbol id="bookmark" viewBox="0 0 16 16" fill="currentColor">
108
114
  <path fill-rule="evenodd" clip-rule="evenodd" d="M5.5 1.99997C4.67157 1.99997 4 2.67154 4 3.49997V14H4.96425L8 10.0059L11.0357 14H12V3.49997C12 2.67154 11.3284 1.99997 10.5 1.99997H5.5ZM5 3.49997C5 3.22383 5.22386 2.99997 5.5 2.99997H10.5C10.7761 2.99997 11 3.22383 11 3.49997V12.3004L8.49148 9H7.50852L5 12.3004V3.49997Z" fill="currentColor"/>
109
115
  </symbol>
@@ -548,6 +554,9 @@
548
554
  <symbol id="hamburger" viewBox="0 0 16 16" fill="currentColor">
549
555
  <path fill-rule="evenodd" clip-rule="evenodd" d="M14 4.5H2V3.5H14V4.5ZM14 8.5H2V7.5H14V8.5ZM14 12.5H2V11.5H14V12.5Z" fill="currentColor"/>
550
556
  </symbol>
557
+ <symbol id="hand-open" viewBox="0 0 16 16" fill="currentColor">
558
+ <path d="M8.50003 3C8.50003 2.72386 8.27617 2.5 8.00003 2.5C7.72389 2.5 7.50003 2.72386 7.50003 3V8H6.50003V4C6.50003 3.72386 6.27617 3.5 6.00003 3.5C5.72389 3.5 5.50003 3.72386 5.50003 4V9L4.59964 9.2998L3.56741 7.92285C3.4358 7.74737 3.19957 7.68728 3.00003 7.77832C2.76006 7.888 2.65788 8.17493 2.77542 8.41113L5.3096 13.5H11.6094L12.5 9.9375V5.5C12.5 5.22387 12.2762 5.00001 12 5C11.7239 5 11.5 5.22386 11.5 5.5V8H10.5V4C10.5 3.72386 10.2762 3.5 10 3.5C9.72389 3.5 9.50003 3.72386 9.50003 4V8H8.50003V3ZM11.5 4.08691C11.6566 4.03153 11.8245 4 12 4C12.8284 4.00001 13.5 4.67158 13.5 5.5V10.0615L13.4854 10.1211L12.4854 14.1211L12 14.5H5.00003L4.55277 14.2227L1.88089 8.85645C1.51144 8.11422 1.82998 7.21384 2.58402 6.86914C3.21122 6.58248 3.95346 6.77156 4.36722 7.32324L4.50003 7.5V4C4.50003 3.17157 5.1716 2.5 6.00003 2.5C6.1954 2.5 6.38159 2.53849 6.55277 2.60645C6.7257 1.96899 7.30784 1.5 8.00003 1.5C8.69213 1.5 9.27331 1.96912 9.44632 2.60645C9.61772 2.53828 9.80434 2.5 10 2.5C10.8285 2.5 11.5 3.17157 11.5 4V4.08691Z" fill="currentColor"/>
559
+ </symbol>
551
560
  <symbol id="headset" viewBox="0 0 16 16" fill="currentColor">
552
561
  <path fill-rule="evenodd" clip-rule="evenodd" d="M2.70716 5H2.5C1.67157 5 1 5.67157 1 6.5V9.5C1 10.3284 1.67157 11 2.5 11H5V5H3.7559C4.37359 3.25217 6.04102 2 8 2C9.95898 2 11.6264 3.25217 12.2441 5H11V11H12V11.5C12 12.3284 11.3284 13 10.5 13H9C9 12.4477 8.55229 12 8 12C7.44772 12 7 12.4477 7 13C7 13.5523 7.44772 14 8 14H10.5C11.8807 14 13 12.8807 13 11.5V11H13.5C14.3284 11 15 10.3284 15 9.5V6.5C15 5.67157 14.3284 5 13.5 5H13.2928C12.6398 2.69154 10.5179 1 8 1C5.48207 1 3.36024 2.69154 2.70716 5ZM12 10V6H13.5C13.7761 6 14 6.22386 14 6.5V9.5C14 9.77614 13.7761 10 13.5 10H12ZM2 6.5C2 6.22386 2.22386 6 2.5 6H4V10H2.5C2.22386 10 2 9.77614 2 9.5V6.5Z" fill="currentColor"/>
553
562
  </symbol>
@@ -629,12 +638,6 @@
629
638
  <symbol id="lifebuoy" viewBox="0 0 16 16" fill="currentColor">
630
639
  <path d="M3.40381 3.40381C5.94221 0.865398 10.0578 0.865398 12.5962 3.40381C15.1346 5.94221 15.1346 10.0578 12.5962 12.5962C10.0578 15.1346 5.94221 15.1346 3.40381 12.5962C0.865398 10.0578 0.865398 5.94221 3.40381 3.40381ZM4.48104 12.2261C6.51487 13.9236 9.48442 13.9229 11.5183 12.2254L10.0958 10.8029C8.85688 11.7316 7.14312 11.7316 5.90423 10.8029L4.48104 12.2261ZM10.8029 5.90423C11.7316 7.14312 11.7316 8.85688 10.8029 10.0958L12.2254 11.5183C13.9229 9.48442 13.9236 6.51487 12.2261 4.48104L10.8029 5.90423ZM6.23223 6.23223C5.25592 7.20854 5.25592 8.79146 6.23223 9.76777C7.20854 10.7441 8.79146 10.7441 9.76777 9.76777C10.7441 8.79146 10.7441 7.20854 9.76777 6.23223C8.79146 5.25592 7.20854 5.25592 6.23223 6.23223ZM5.90354 5.19643C7.14244 4.26758 8.85684 4.26833 10.0958 5.19712L11.519 3.77393C9.4851 2.07639 6.5149 2.07639 4.48104 3.77393L5.90354 5.19643ZM3.77393 4.48104C2.07639 6.5149 2.07639 9.4851 3.77393 11.519L5.19712 10.0958C4.26833 8.85684 4.26758 7.14244 5.19643 5.90354L3.77393 4.48104Z" fill="currentColor"/>
631
640
  </symbol>
632
- <symbol id="lightning" viewBox="0 0 16 16" fill="currentColor">
633
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4 7.99521V7.00468L9.74451 1.99963L10.7347 1.99999L9.48355 6.32697L12 7.01281V7.98863L6.20144 14H5.23025L6.77525 8.70711L4 7.99521ZM10.8535 7.73681L8.24083 7.02474L9.16409 3.83165L5.21314 7.27402L8.02477 7.99525L6.90549 11.8297L10.8535 7.73681Z" fill="currentColor"/>
634
- </symbol>
635
- <symbol id="lightning-filled" viewBox="0 0 16 16" fill="currentColor">
636
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4 7.99521V7.00468L9.74451 1.99963L10.7347 1.99999L9.48355 6.32697L12 7.01281V7.98863L6.20144 14H5.23025L6.77525 8.70711L4 7.99521Z" fill="currentColor"/>
637
- </symbol>
638
641
  <symbol id="link" viewBox="0 0 16 16" fill="currentColor">
639
642
  <path d="M11.8534 7.85353L13.6463 6.06063C14.2321 5.47484 14.2321 4.5251 13.6463 3.93931L12.0605 2.35352C11.4747 1.76774 10.525 1.76774 9.9392 2.35352L6.35342 5.93931C5.76763 6.5251 5.76763 7.47485 6.35342 8.06063L7.14631 8.85353L7.85342 8.14642L7.06052 7.35353C6.86526 7.15826 6.86526 6.84168 7.06052 6.64642L10.6463 3.06063C10.8416 2.86537 11.1582 2.86537 11.3534 3.06063L12.9392 4.64642C13.1345 4.84168 13.1345 5.15826 12.9392 5.35352L11.1463 7.14642L11.8534 7.85353Z" fill="currentColor"/><path d="M4.64654 7.6464L2.35365 9.93929C1.76786 10.5251 1.76786 11.4748 2.35365 12.0606L3.93943 13.6464C4.52522 14.2322 5.47497 14.2322 6.06075 13.6464L10.1465 9.56062C10.7323 8.97483 10.7323 8.02508 10.1465 7.4393L9.35365 6.6464L8.64654 7.35351L9.43943 8.1464C9.6347 8.34166 9.6347 8.65825 9.43943 8.85351L5.35365 12.9393C5.15838 13.1346 4.8418 13.1346 4.64654 12.9393L3.06075 11.3535C2.86549 11.1582 2.86549 10.8417 3.06075 10.6464L5.35365 8.35351L4.64654 7.6464Z" fill="currentColor"/>
640
643
  </symbol>
@@ -702,7 +705,7 @@
702
705
  <path d="M3 3.5C3 3.22386 3.22386 3 3.5 3H12V2H3.5C2.67157 2 2 2.67157 2 3.5V7C2 7.82843 2.67157 8.5 3.5 8.5H5.57984L3.96502 10.1148L4.67212 10.8219L6.99406 8.5H7L7.00057 7.49355L4.67212 5.1651L3.96501 5.87221L5.59281 7.5H3.5C3.22386 7.5 3 7.27614 3 7V3.5Z" fill="currentColor"/><path d="M10.42 8.5H12.5C12.7761 8.5 13 8.72386 13 9V12.5C13 12.7761 12.7761 13 12.5 13H4V14H12.5C13.3284 14 14 13.3284 14 12.5V9C14 8.17157 13.3284 7.5 12.5 7.5H10.4071L12.0349 5.87221L11.3278 5.1651L8.99931 7.49355V8.49349L9 8.5H9.00582L11.3278 10.8219L12.0349 10.1148L10.42 8.5Z" fill="currentColor"/>
703
706
  </symbol>
704
707
  <symbol id="message-bubble" viewBox="0 0 16 16" fill="currentColor">
705
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14 11.4982V11.5007C14 12.3289 13.3284 13.0003 12.5 13.0003H4.18189L2.98934 14H2V4.49959C2 3.67139 2.67157 3 3.5 3H12.5C13.3284 3 14 3.67139 14 4.49959V11.4982ZM12.5 3.99972C12.7761 3.99972 13 4.22352 13 4.49959V11.5007C13 11.7767 12.7761 12.0005 12.5 12.0005H3.81811L3 12.6864V4.49959C3 4.22352 3.22386 3.99972 3.5 3.99972H12.5Z" fill="currentColor"/>
708
+ <path d="M13 11V3.5C13 3.22386 12.7761 3 12.5 3H3.5C3.22386 3 3 3.22386 3 3.5V12.75L4.66699 11.5H12.5V12.5H5L3 14H2V3.5C2 2.67157 2.67157 2 3.5 2H12.5C13.3284 2 14 2.67157 14 3.5V11C14 11.8284 13.3284 12.5 12.5 12.5V11.5C12.7761 11.5 13 11.2761 13 11Z" fill="currentColor"/>
706
709
  </symbol>
707
710
  <symbol id="message-bubble-stack" viewBox="0 0 16 16" fill="currentColor">
708
711
  <path fill-rule="evenodd" clip-rule="evenodd" d="M5 2.49848C5 1.67089 5.67157 1 6.5 1H13.5C14.3284 1 15 1.67089 15 2.49848V10.004H14.0095L12.8163 8.9918H11V12.5025C11 13.3301 10.3284 14.001 9.5 14.001H3.18189L1.98934 15H1V7.50657C1 6.67898 1.67157 6.00809 2.5 6.00809H5V2.49848ZM6 6.00809H9.5C10.3284 6.00809 11 6.67898 11 7.50657V7.99281H13.1837L14 8.68537V2.49848C14 2.22262 13.7761 1.99899 13.5 1.99899H6.5C6.22386 1.99899 6 2.22262 6 2.49848V6.00809ZM10 7.50657C10 7.23071 9.77614 7.00708 9.5 7.00708H2.5C2.22386 7.00708 2 7.23071 2 7.50657V13.6873L2.81811 13.002H9.5C9.77614 13.002 10 12.7784 10 12.5025V7.50657Z" fill="currentColor"/>
@@ -1001,6 +1004,9 @@
1001
1004
  <symbol id="square-dollar-filled" viewBox="0 0 16 16" fill="currentColor">
1002
1005
  <path fill-rule="evenodd" clip-rule="evenodd" d="M2 4.5C2 3.11929 3.11929 2 4.5 2H11.5C12.8807 2 14 3.11929 14 4.5V11.5C14 12.8807 12.8807 14 11.5 14H4.5C3.11929 14 2 12.8807 2 11.5V4.5ZM10.25 7.38755C10.25 6.29265 9.51548 5.34537 8.5 5.10747V4.5H7.5V5.10747C6.48452 5.34537 5.75 6.29265 5.75 7.38755V7.74229L9.20959 8.95315C9.06675 9.53964 8.56379 9.95005 8 9.95005C7.33235 9.95005 6.75 9.3745 6.75 8.61255H5.75C5.75 9.70745 6.48452 10.6547 7.5 10.8926V11.5H8.5V10.8926C9.51548 10.6547 10.25 9.70745 10.25 8.61255V8.25781L6.79041 7.04695C6.93325 6.46046 7.43621 6.05005 8 6.05005C8.66765 6.05005 9.25 6.6256 9.25 7.38755H10.25Z" fill="currentColor"/>
1003
1006
  </symbol>
1007
+ <symbol id="square-dotted-minus" viewBox="0 0 16 16" fill="currentColor">
1008
+ <path d="M13 12H10V11H13V12Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.5 8C13.433 8 15 9.567 15 11.5C15 13.433 13.433 15 11.5 15C9.567 15 8 13.433 8 11.5C8 9.567 9.567 8 11.5 8ZM11.5 9C10.1193 9 9 10.1193 9 11.5C9 12.8807 10.1193 14 11.5 14C12.8807 14 14 12.8807 14 11.5C14 10.1193 12.8807 9 11.5 9Z" fill="currentColor"/><path d="M3 13H2V12H3V13Z" fill="currentColor"/><path d="M5 13H4V12H5V13Z" fill="currentColor"/><path d="M7 13H6V12H7V13Z" fill="currentColor"/><path d="M3 11H2V10H3V11Z" fill="currentColor"/><path d="M3 9H2V8H3V9Z" fill="currentColor"/><path d="M3 7H2V6H3V7Z" fill="currentColor"/><path d="M13 7H12V6H13V7Z" fill="currentColor"/><path d="M3 5H2V4H3V5Z" fill="currentColor"/><path d="M13 5H12V4H13V5Z" fill="currentColor"/><path d="M3 3H2V2H3V3Z" fill="currentColor"/><path d="M5 3H4V2H5V3Z" fill="currentColor"/><path d="M7 3H6V2H7V3Z" fill="currentColor"/><path d="M9 3H8V2H9V3Z" fill="currentColor"/><path d="M11 3H10V2H11V3Z" fill="currentColor"/><path d="M13 3H12V2H13V3Z" fill="currentColor"/>
1009
+ </symbol>
1004
1010
  <symbol id="square-filled" viewBox="0 0 16 16" fill="currentColor">
1005
1011
  <path fill-rule="evenodd" clip-rule="evenodd" d="M2 3.49649C2 2.67 2.67158 2 3.5 2L12.5 2.00003C13.3284 2.00003 14 2.67003 14 3.49652V12.5035C14 13.33 13.3284 14 12.5 14L3.5 14C2.67157 14 2 13.33 2 12.5035V3.49649Z" fill="currentColor"/>
1006
1012
  </symbol>
@@ -1 +1 @@
1
- export const BackslashBrackets = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.01501 13.8787L9.01501 1.87872L9.98516 2.12126L6.98516 14.1213L6.01501 13.8787Z\" fill=\"currentColor\"/><path d=\"M10.6465 4.56839L14.0781 7.99999L10.6465 11.4316L11.3537 12.1387L15.0001 8.49226V7.50773L11.3537 3.86128L10.6465 4.56839Z\" fill=\"currentColor\"/><path d=\"M1.92219 7.99999L5.35364 4.56854L4.64654 3.86143L1.00024 7.50773V8.49226L4.64654 12.1385L5.35364 11.4314L1.92219 7.99999Z\" fill=\"currentColor\"/></svg>";
1
+ export const BackslashBrackets = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10.4746 2.1582L6.47461 14.1582L5.52539 13.8418L9.52539 1.8418L10.4746 2.1582Z\" fill=\"currentColor\"/><path d=\"M4.79102 5.90723L1.86035 8L4.79102 10.0928L4.20898 10.9072L0.708984 8.40723V7.59277L4.20898 5.09277L4.79102 5.90723Z\" fill=\"currentColor\"/><path d=\"M15.291 7.59277V8.40723L11.791 10.9072L11.209 10.0928L14.1396 8L11.209 5.90723L11.791 5.09277L15.291 7.59277Z\" fill=\"currentColor\"/></svg>";
@@ -0,0 +1 @@
1
+ export declare const Bolt: string;
@@ -0,0 +1 @@
1
+ export const Bolt = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10.4932 1.08203L9.58984 6.5H12.5L12.8877 7.31543L6.3877 15.3154L5.50684 14.918L6.41016 9.5H3.5L3.1123 8.68457L9.6123 0.68457L10.4932 1.08203ZM4.5498 8.5H7L7.49316 9.08203L6.80371 13.2178L11.4502 7.5H9L8.50684 6.91797L9.19531 2.78125L4.5498 8.5Z\" fill=\"currentColor\"/></svg>";
@@ -0,0 +1 @@
1
+ export declare const BoltFilled: string;
@@ -0,0 +1 @@
1
+ export const BoltFilled = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10.4932 1.08203L9.58984 6.5H12.5L12.8877 7.31543L6.3877 15.3154L5.50684 14.918L6.41016 9.5H3.5L3.1123 8.68457L9.6123 0.68457L10.4932 1.08203Z\" fill=\"currentColor\"/></svg>";
@@ -0,0 +1 @@
1
+ export declare const HandOpen: string;
@@ -0,0 +1 @@
1
+ export const HandOpen = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8.50003 3C8.50003 2.72386 8.27617 2.5 8.00003 2.5C7.72389 2.5 7.50003 2.72386 7.50003 3V8H6.50003V4C6.50003 3.72386 6.27617 3.5 6.00003 3.5C5.72389 3.5 5.50003 3.72386 5.50003 4V9L4.59964 9.2998L3.56741 7.92285C3.4358 7.74737 3.19957 7.68728 3.00003 7.77832C2.76006 7.888 2.65788 8.17493 2.77542 8.41113L5.3096 13.5H11.6094L12.5 9.9375V5.5C12.5 5.22387 12.2762 5.00001 12 5C11.7239 5 11.5 5.22386 11.5 5.5V8H10.5V4C10.5 3.72386 10.2762 3.5 10 3.5C9.72389 3.5 9.50003 3.72386 9.50003 4V8H8.50003V3ZM11.5 4.08691C11.6566 4.03153 11.8245 4 12 4C12.8284 4.00001 13.5 4.67158 13.5 5.5V10.0615L13.4854 10.1211L12.4854 14.1211L12 14.5H5.00003L4.55277 14.2227L1.88089 8.85645C1.51144 8.11422 1.82998 7.21384 2.58402 6.86914C3.21122 6.58248 3.95346 6.77156 4.36722 7.32324L4.50003 7.5V4C4.50003 3.17157 5.1716 2.5 6.00003 2.5C6.1954 2.5 6.38159 2.53849 6.55277 2.60645C6.7257 1.96899 7.30784 1.5 8.00003 1.5C8.69213 1.5 9.27331 1.96912 9.44632 2.60645C9.61772 2.53828 9.80434 2.5 10 2.5C10.8285 2.5 11.5 3.17157 11.5 4V4.08691Z\" fill=\"currentColor\"/></svg>";
@@ -1 +1 @@
1
- export const MessageBubble = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14 11.4982V11.5007C14 12.3289 13.3284 13.0003 12.5 13.0003H4.18189L2.98934 14H2V4.49959C2 3.67139 2.67157 3 3.5 3H12.5C13.3284 3 14 3.67139 14 4.49959V11.4982ZM12.5 3.99972C12.7761 3.99972 13 4.22352 13 4.49959V11.5007C13 11.7767 12.7761 12.0005 12.5 12.0005H3.81811L3 12.6864V4.49959C3 4.22352 3.22386 3.99972 3.5 3.99972H12.5Z\" fill=\"currentColor\"/></svg>";
1
+ export const MessageBubble = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 11V3.5C13 3.22386 12.7761 3 12.5 3H3.5C3.22386 3 3 3.22386 3 3.5V12.75L4.66699 11.5H12.5V12.5H5L3 14H2V3.5C2 2.67157 2.67157 2 3.5 2H12.5C13.3284 2 14 2.67157 14 3.5V11C14 11.8284 13.3284 12.5 12.5 12.5V11.5C12.7761 11.5 13 11.2761 13 11Z\" fill=\"currentColor\"/></svg>";
@@ -0,0 +1 @@
1
+ export declare const SquareDottedMinus: string;
@@ -0,0 +1 @@
1
+ export const SquareDottedMinus = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 12H10V11H13V12Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.5 8C13.433 8 15 9.567 15 11.5C15 13.433 13.433 15 11.5 15C9.567 15 8 13.433 8 11.5C8 9.567 9.567 8 11.5 8ZM11.5 9C10.1193 9 9 10.1193 9 11.5C9 12.8807 10.1193 14 11.5 14C12.8807 14 14 12.8807 14 11.5C14 10.1193 12.8807 9 11.5 9Z\" fill=\"currentColor\"/><path d=\"M3 13H2V12H3V13Z\" fill=\"currentColor\"/><path d=\"M5 13H4V12H5V13Z\" fill=\"currentColor\"/><path d=\"M7 13H6V12H7V13Z\" fill=\"currentColor\"/><path d=\"M3 11H2V10H3V11Z\" fill=\"currentColor\"/><path d=\"M3 9H2V8H3V9Z\" fill=\"currentColor\"/><path d=\"M3 7H2V6H3V7Z\" fill=\"currentColor\"/><path d=\"M13 7H12V6H13V7Z\" fill=\"currentColor\"/><path d=\"M3 5H2V4H3V5Z\" fill=\"currentColor\"/><path d=\"M13 5H12V4H13V5Z\" fill=\"currentColor\"/><path d=\"M3 3H2V2H3V3Z\" fill=\"currentColor\"/><path d=\"M5 3H4V2H5V3Z\" fill=\"currentColor\"/><path d=\"M7 3H6V2H7V3Z\" fill=\"currentColor\"/><path d=\"M9 3H8V2H9V3Z\" fill=\"currentColor\"/><path d=\"M11 3H10V2H11V3Z\" fill=\"currentColor\"/><path d=\"M13 3H12V2H13V3Z\" fill=\"currentColor\"/></svg>";
@@ -33,6 +33,8 @@ export { BellWifi } from './BellWifi.mjs';
33
33
  export { BlackWhite } from './BlackWhite.mjs';
34
34
  export { BlankUI } from './BlankUI.mjs';
35
35
  export { Bluetooth } from './Bluetooth.mjs';
36
+ export { Bolt } from './Bolt.mjs';
37
+ export { BoltFilled } from './BoltFilled.mjs';
36
38
  export { Bookmark } from './Bookmark.mjs';
37
39
  export { Box } from './Box.mjs';
38
40
  export { Braces } from './Braces.mjs';
@@ -181,6 +183,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
181
183
  export { GraphIncreasing } from './GraphIncreasing.mjs';
182
184
  export { GroupBy } from './GroupBy.mjs';
183
185
  export { Hamburger } from './Hamburger.mjs';
186
+ export { HandOpen } from './HandOpen.mjs';
184
187
  export { Headset } from './Headset.mjs';
185
188
  export { History } from './History.mjs';
186
189
  export { HourGlass } from './HourGlass.mjs';
@@ -208,8 +211,6 @@ export { LetterI } from './LetterI.mjs';
208
211
  export { License } from './License.mjs';
209
212
  export { LicensePlate } from './LicensePlate.mjs';
210
213
  export { Lifebuoy } from './Lifebuoy.mjs';
211
- export { Lightning } from './Lightning.mjs';
212
- export { LightningFilled } from './LightningFilled.mjs';
213
214
  export { Link } from './Link.mjs';
214
215
  export { List } from './List.mjs';
215
216
  export { Loads } from './Loads.mjs';
@@ -332,6 +333,7 @@ export { SquareCheck } from './SquareCheck.mjs';
332
333
  export { SquareCheckFilled } from './SquareCheckFilled.mjs';
333
334
  export { SquareDollar } from './SquareDollar.mjs';
334
335
  export { SquareDollarFilled } from './SquareDollarFilled.mjs';
336
+ export { SquareDottedMinus } from './SquareDottedMinus.mjs';
335
337
  export { SquareFilled } from './SquareFilled.mjs';
336
338
  export { SquareGrid } from './SquareGrid.mjs';
337
339
  export { SquarePencil } from './SquarePencil.mjs';
@@ -33,6 +33,8 @@ export { BellWifi } from './BellWifi.mjs';
33
33
  export { BlackWhite } from './BlackWhite.mjs';
34
34
  export { BlankUI } from './BlankUI.mjs';
35
35
  export { Bluetooth } from './Bluetooth.mjs';
36
+ export { Bolt } from './Bolt.mjs';
37
+ export { BoltFilled } from './BoltFilled.mjs';
36
38
  export { Bookmark } from './Bookmark.mjs';
37
39
  export { Box } from './Box.mjs';
38
40
  export { Braces } from './Braces.mjs';
@@ -181,6 +183,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
181
183
  export { GraphIncreasing } from './GraphIncreasing.mjs';
182
184
  export { GroupBy } from './GroupBy.mjs';
183
185
  export { Hamburger } from './Hamburger.mjs';
186
+ export { HandOpen } from './HandOpen.mjs';
184
187
  export { Headset } from './Headset.mjs';
185
188
  export { History } from './History.mjs';
186
189
  export { HourGlass } from './HourGlass.mjs';
@@ -208,8 +211,6 @@ export { LetterI } from './LetterI.mjs';
208
211
  export { License } from './License.mjs';
209
212
  export { LicensePlate } from './LicensePlate.mjs';
210
213
  export { Lifebuoy } from './Lifebuoy.mjs';
211
- export { Lightning } from './Lightning.mjs';
212
- export { LightningFilled } from './LightningFilled.mjs';
213
214
  export { Link } from './Link.mjs';
214
215
  export { List } from './List.mjs';
215
216
  export { Loads } from './Loads.mjs';
@@ -332,6 +333,7 @@ export { SquareCheck } from './SquareCheck.mjs';
332
333
  export { SquareCheckFilled } from './SquareCheckFilled.mjs';
333
334
  export { SquareDollar } from './SquareDollar.mjs';
334
335
  export { SquareDollarFilled } from './SquareDollarFilled.mjs';
336
+ export { SquareDottedMinus } from './SquareDottedMinus.mjs';
335
337
  export { SquareFilled } from './SquareFilled.mjs';
336
338
  export { SquareGrid } from './SquareGrid.mjs';
337
339
  export { SquarePencil } from './SquarePencil.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ds-mo/icons",
3
- "version": "3.0.0",
3
+ "version": "4.1.0",
4
4
  "description": "IcoMo — 426 SVG icons (394 system icons + 32 country flags) as tree-shakeable React components, framework-agnostic SVG strings, TypeScript definitions, and SVG sprite",
5
5
  "keywords": [
6
6
  "icons",
@@ -1,9 +0,0 @@
1
- import { createElement } from 'react';
2
- import { createIcon } from '../createIcon.mjs';
3
-
4
- const Lightning = createIcon('lightning', [
5
- createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M4 7.99521V7.00468L9.74451 1.99963L10.7347 1.99999L9.48355 6.32697L12 7.01281V7.98863L6.20144 14H5.23025L6.77525 8.70711L4 7.99521ZM10.8535 7.73681L8.24083 7.02474L9.16409 3.83165L5.21314 7.27402L8.02477 7.99525L6.90549 11.8297L10.8535 7.73681Z", key: "a" }),
6
- ]);
7
-
8
- Lightning.displayName = 'Lightning';
9
- export { Lightning };
@@ -1,2 +0,0 @@
1
- import { IconComponent } from '../createIcon.mjs';
2
- export declare const LightningFilled: IconComponent;
@@ -1,9 +0,0 @@
1
- import { createElement } from 'react';
2
- import { createIcon } from '../createIcon.mjs';
3
-
4
- const LightningFilled = createIcon('lightning-filled', [
5
- createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M4 7.99521V7.00468L9.74451 1.99963L10.7347 1.99999L9.48355 6.32697L12 7.01281V7.98863L6.20144 14H5.23025L6.77525 8.70711L4 7.99521Z", key: "a" }),
6
- ]);
7
-
8
- LightningFilled.displayName = 'LightningFilled';
9
- export { LightningFilled };
@@ -1 +0,0 @@
1
- export declare const Lightning: string;
@@ -1 +0,0 @@
1
- export const Lightning = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 7.99521V7.00468L9.74451 1.99963L10.7347 1.99999L9.48355 6.32697L12 7.01281V7.98863L6.20144 14H5.23025L6.77525 8.70711L4 7.99521ZM10.8535 7.73681L8.24083 7.02474L9.16409 3.83165L5.21314 7.27402L8.02477 7.99525L6.90549 11.8297L10.8535 7.73681Z\" fill=\"currentColor\"/></svg>";
@@ -1 +0,0 @@
1
- export declare const LightningFilled: string;
@@ -1 +0,0 @@
1
- export const LightningFilled = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 7.99521V7.00468L9.74451 1.99963L10.7347 1.99999L9.48355 6.32697L12 7.01281V7.98863L6.20144 14H5.23025L6.77525 8.70711L4 7.99521Z\" fill=\"currentColor\"/></svg>";