@ds-mo/icons 4.0.0 → 4.2.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 — **427 SVG icons** (395 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` | 395 | ✅ `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 // 427
112
+ meta.categories // { system: {count:395,themeable:true}, flag: {count:32,themeable:false} }
113
113
  meta.icons // [{ name, category, kebab, aliases }, ...]
114
114
  ```
115
115
 
@@ -0,0 +1,2 @@
1
+ import { IconComponent } from '../createIcon.mjs';
2
+ export declare const BellFilled: IconComponent;
@@ -0,0 +1,10 @@
1
+ import { createElement } from 'react';
2
+ import { createIcon } from '../createIcon.mjs';
3
+
4
+ const BellFilled = createIcon('bell-filled', [
5
+ createElement('path', { d: "M9.93457 12.5C9.71235 13.3623 8.93171 14 8 14C7.06829 14 6.28765 13.3623 6.06543 12.5H9.93457Z", key: "a" }),
6
+ createElement('path', { d: "M8 2C10.4853 2 12.5 4.01472 12.5 6.5V8.29297L13.8535 9.64648V10.3535L12.707 11.5H3.29297L2.14648 10.3535V9.64648L3.5 8.29297V6.5C3.5 4.01472 5.51472 2 8 2Z", key: "b" }),
7
+ ]);
8
+
9
+ BellFilled.displayName = 'BellFilled';
10
+ export { BellFilled };
@@ -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 };
@@ -28,6 +28,7 @@ export { Beaker } from './Beaker.mjs';
28
28
  export { Bell } from './Bell.mjs';
29
29
  export { BellCircle } from './BellCircle.mjs';
30
30
  export { BellExclamation } from './BellExclamation.mjs';
31
+ export { BellFilled } from './BellFilled.mjs';
31
32
  export { BellRinging } from './BellRinging.mjs';
32
33
  export { BellWifi } from './BellWifi.mjs';
33
34
  export { BlackWhite } from './BlackWhite.mjs';
@@ -183,6 +184,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
183
184
  export { GraphIncreasing } from './GraphIncreasing.mjs';
184
185
  export { GroupBy } from './GroupBy.mjs';
185
186
  export { Hamburger } from './Hamburger.mjs';
187
+ export { HandOpen } from './HandOpen.mjs';
186
188
  export { Headset } from './Headset.mjs';
187
189
  export { History } from './History.mjs';
188
190
  export { HourGlass } from './HourGlass.mjs';
@@ -332,6 +334,7 @@ export { SquareCheck } from './SquareCheck.mjs';
332
334
  export { SquareCheckFilled } from './SquareCheckFilled.mjs';
333
335
  export { SquareDollar } from './SquareDollar.mjs';
334
336
  export { SquareDollarFilled } from './SquareDollarFilled.mjs';
337
+ export { SquareDottedMinus } from './SquareDottedMinus.mjs';
335
338
  export { SquareFilled } from './SquareFilled.mjs';
336
339
  export { SquareGrid } from './SquareGrid.mjs';
337
340
  export { SquarePencil } from './SquarePencil.mjs';
@@ -28,6 +28,7 @@ export { Beaker } from './Beaker.mjs';
28
28
  export { Bell } from './Bell.mjs';
29
29
  export { BellCircle } from './BellCircle.mjs';
30
30
  export { BellExclamation } from './BellExclamation.mjs';
31
+ export { BellFilled } from './BellFilled.mjs';
31
32
  export { BellRinging } from './BellRinging.mjs';
32
33
  export { BellWifi } from './BellWifi.mjs';
33
34
  export { BlackWhite } from './BlackWhite.mjs';
@@ -183,6 +184,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
183
184
  export { GraphIncreasing } from './GraphIncreasing.mjs';
184
185
  export { GroupBy } from './GroupBy.mjs';
185
186
  export { Hamburger } from './Hamburger.mjs';
187
+ export { HandOpen } from './HandOpen.mjs';
186
188
  export { Headset } from './Headset.mjs';
187
189
  export { History } from './History.mjs';
188
190
  export { HourGlass } from './HourGlass.mjs';
@@ -332,6 +334,7 @@ export { SquareCheck } from './SquareCheck.mjs';
332
334
  export { SquareCheckFilled } from './SquareCheckFilled.mjs';
333
335
  export { SquareDollar } from './SquareDollar.mjs';
334
336
  export { SquareDollarFilled } from './SquareDollarFilled.mjs';
337
+ export { SquareDottedMinus } from './SquareDottedMinus.mjs';
335
338
  export { SquareFilled } from './SquareFilled.mjs';
336
339
  export { SquareGrid } from './SquareGrid.mjs';
337
340
  export { SquarePencil } from './SquarePencil.mjs';
package/dist/index.d.ts CHANGED
@@ -33,6 +33,7 @@ export { Beaker } from './icons/Beaker.mjs';
33
33
  export { Bell } from './icons/Bell.mjs';
34
34
  export { BellCircle } from './icons/BellCircle.mjs';
35
35
  export { BellExclamation } from './icons/BellExclamation.mjs';
36
+ export { BellFilled } from './icons/BellFilled.mjs';
36
37
  export { BellRinging } from './icons/BellRinging.mjs';
37
38
  export { BellWifi } from './icons/BellWifi.mjs';
38
39
  export { BlackWhite } from './icons/BlackWhite.mjs';
@@ -188,6 +189,7 @@ export { GraphDecreasing } from './icons/GraphDecreasing.mjs';
188
189
  export { GraphIncreasing } from './icons/GraphIncreasing.mjs';
189
190
  export { GroupBy } from './icons/GroupBy.mjs';
190
191
  export { Hamburger } from './icons/Hamburger.mjs';
192
+ export { HandOpen } from './icons/HandOpen.mjs';
191
193
  export { Headset } from './icons/Headset.mjs';
192
194
  export { History } from './icons/History.mjs';
193
195
  export { HourGlass } from './icons/HourGlass.mjs';
@@ -337,6 +339,7 @@ export { SquareCheck } from './icons/SquareCheck.mjs';
337
339
  export { SquareCheckFilled } from './icons/SquareCheckFilled.mjs';
338
340
  export { SquareDollar } from './icons/SquareDollar.mjs';
339
341
  export { SquareDollarFilled } from './icons/SquareDollarFilled.mjs';
342
+ export { SquareDottedMinus } from './icons/SquareDottedMinus.mjs';
340
343
  export { SquareFilled } from './icons/SquareFilled.mjs';
341
344
  export { SquareGrid } from './icons/SquareGrid.mjs';
342
345
  export { SquarePencil } from './icons/SquarePencil.mjs';
package/dist/index.mjs CHANGED
@@ -31,6 +31,7 @@ export { Beaker } from './icons/Beaker.mjs';
31
31
  export { Bell } from './icons/Bell.mjs';
32
32
  export { BellCircle } from './icons/BellCircle.mjs';
33
33
  export { BellExclamation } from './icons/BellExclamation.mjs';
34
+ export { BellFilled } from './icons/BellFilled.mjs';
34
35
  export { BellRinging } from './icons/BellRinging.mjs';
35
36
  export { BellWifi } from './icons/BellWifi.mjs';
36
37
  export { BlackWhite } from './icons/BlackWhite.mjs';
@@ -186,6 +187,7 @@ export { GraphDecreasing } from './icons/GraphDecreasing.mjs';
186
187
  export { GraphIncreasing } from './icons/GraphIncreasing.mjs';
187
188
  export { GroupBy } from './icons/GroupBy.mjs';
188
189
  export { Hamburger } from './icons/Hamburger.mjs';
190
+ export { HandOpen } from './icons/HandOpen.mjs';
189
191
  export { Headset } from './icons/Headset.mjs';
190
192
  export { History } from './icons/History.mjs';
191
193
  export { HourGlass } from './icons/HourGlass.mjs';
@@ -335,6 +337,7 @@ export { SquareCheck } from './icons/SquareCheck.mjs';
335
337
  export { SquareCheckFilled } from './icons/SquareCheckFilled.mjs';
336
338
  export { SquareDollar } from './icons/SquareDollar.mjs';
337
339
  export { SquareDollarFilled } from './icons/SquareDollarFilled.mjs';
340
+ export { SquareDottedMinus } from './icons/SquareDottedMinus.mjs';
338
341
  export { SquareFilled } from './icons/SquareFilled.mjs';
339
342
  export { SquareGrid } from './icons/SquareGrid.mjs';
340
343
  export { SquarePencil } from './icons/SquarePencil.mjs';
package/dist/meta.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
- "version": "4.0.0",
3
- "count": 424,
2
+ "version": "4.2.0",
3
+ "count": 427,
4
4
  "categories": {
5
5
  "system": {
6
- "count": 392,
6
+ "count": 395,
7
7
  "themeable": true
8
8
  },
9
9
  "flag": {
@@ -312,6 +312,17 @@
312
312
  "important"
313
313
  ]
314
314
  },
315
+ {
316
+ "name": "BellFilled",
317
+ "category": "system",
318
+ "kebab": "bell-filled",
319
+ "aliases": [
320
+ "bell-filled",
321
+ "notification-filled",
322
+ "alert-solid",
323
+ "alarm-solid"
324
+ ]
325
+ },
315
326
  {
316
327
  "name": "BellRinging",
317
328
  "category": "system",
@@ -1878,6 +1889,17 @@
1878
1889
  "lines"
1879
1890
  ]
1880
1891
  },
1892
+ {
1893
+ "name": "HandOpen",
1894
+ "category": "system",
1895
+ "kebab": "hand-open",
1896
+ "aliases": [
1897
+ "palm",
1898
+ "gesture",
1899
+ "raise-hand",
1900
+ "stop"
1901
+ ]
1902
+ },
1881
1903
  {
1882
1904
  "name": "Headset",
1883
1905
  "category": "system",
@@ -3380,6 +3402,16 @@
3380
3402
  "price-box"
3381
3403
  ]
3382
3404
  },
3405
+ {
3406
+ "name": "SquareDottedMinus",
3407
+ "category": "system",
3408
+ "kebab": "square-dotted-minus",
3409
+ "aliases": [
3410
+ "dashed-square-minus",
3411
+ "dotted-minus",
3412
+ "remove-dashed-box"
3413
+ ]
3414
+ },
3383
3415
  {
3384
3416
  "name": "SquareFilled",
3385
3417
  "category": "system",
package/dist/sprite.svg CHANGED
@@ -89,6 +89,9 @@
89
89
  <symbol id="bell-exclamation" viewBox="0 0 16 16" fill="currentColor">
90
90
  <path d="M7.5 8V4H8.5V8H7.5Z" fill="currentColor"/><path d="M7.5 10V9H8.5V10H7.5Z" fill="currentColor"/><path d="M7 12C7 12.5523 7.44772 13 8 13C8.55228 13 9 12.5523 9 12H7ZM11.5 6.5C11.5 4.567 9.933 3 8 3C6.067 3 4.5 4.567 4.5 6.5V8.70703L3.20703 10L4.20703 11H11.793L12.793 10L11.5 8.70703V6.5ZM12.5 8.29297L13.8535 9.64648V10.3535L12.207 12H10C10 13.1046 9.10457 14 8 14C6.89543 14 6 13.1046 6 12H3.79297L2.14648 10.3535V9.64648L3.5 8.29297V6.5C3.5 4.01472 5.51472 2 8 2C10.4853 2 12.5 4.01472 12.5 6.5V8.29297Z" fill="currentColor"/>
91
91
  </symbol>
92
+ <symbol id="bell-filled" viewBox="0 0 16 16" fill="currentColor">
93
+ <path d="M9.93457 12.5C9.71235 13.3623 8.93171 14 8 14C7.06829 14 6.28765 13.3623 6.06543 12.5H9.93457Z" fill="currentColor"/><path d="M8 2C10.4853 2 12.5 4.01472 12.5 6.5V8.29297L13.8535 9.64648V10.3535L12.707 11.5H3.29297L2.14648 10.3535V9.64648L3.5 8.29297V6.5C3.5 4.01472 5.51472 2 8 2Z" fill="currentColor"/>
94
+ </symbol>
92
95
  <symbol id="bell-ringing" viewBox="0 0 16 16" fill="currentColor">
93
96
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8 2C10.4853 2 12.5 4.01472 12.5 6.5V8.29297L13.8535 9.64648V10.3535L12.207 12H10C10 13.1046 9.10457 14 8 14C6.89543 14 6 13.1046 6 12H3.79297L2.14648 10.3535V9.64648L3.5 8.29297V6.5C3.5 4.01472 5.51472 2 8 2ZM7 12C7 12.5523 7.44772 13 8 13C8.55228 13 9 12.5523 9 12H7ZM8 3C6.067 3 4.5 4.567 4.5 6.5V8.70703L3.20703 10L4.20703 11H11.793L12.793 10L11.5 8.70703V6.5C11.5 4.567 9.933 3 8 3Z" fill="currentColor"/><path d="M4.18066 2.54395C3.48834 3.21249 2.97107 4.06048 2.7041 5.01367L1.76465 4.66113C2.0922 3.54867 2.70884 2.56035 3.52832 1.7832L4.18066 2.54395Z" fill="currentColor"/><path d="M12.4707 1.7832C13.2904 2.56036 13.9067 3.54855 14.2344 4.66113L13.2949 5.01367C13.0279 4.06035 12.5109 3.2125 11.8184 2.54395L12.4707 1.7832Z" fill="currentColor"/>
94
97
  </symbol>
@@ -554,6 +557,9 @@
554
557
  <symbol id="hamburger" viewBox="0 0 16 16" fill="currentColor">
555
558
  <path fill-rule="evenodd" clip-rule="evenodd" d="M14 4.5H2V3.5H14V4.5ZM14 8.5H2V7.5H14V8.5ZM14 12.5H2V11.5H14V12.5Z" fill="currentColor"/>
556
559
  </symbol>
560
+ <symbol id="hand-open" viewBox="0 0 16 16" fill="currentColor">
561
+ <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"/>
562
+ </symbol>
557
563
  <symbol id="headset" viewBox="0 0 16 16" fill="currentColor">
558
564
  <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"/>
559
565
  </symbol>
@@ -702,7 +708,7 @@
702
708
  <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
709
  </symbol>
704
710
  <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"/>
711
+ <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
712
  </symbol>
707
713
  <symbol id="message-bubble-stack" viewBox="0 0 16 16" fill="currentColor">
708
714
  <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 +1007,9 @@
1001
1007
  <symbol id="square-dollar-filled" viewBox="0 0 16 16" fill="currentColor">
1002
1008
  <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
1009
  </symbol>
1010
+ <symbol id="square-dotted-minus" viewBox="0 0 16 16" fill="currentColor">
1011
+ <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"/>
1012
+ </symbol>
1004
1013
  <symbol id="square-filled" viewBox="0 0 16 16" fill="currentColor">
1005
1014
  <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
1015
  </symbol>
@@ -0,0 +1 @@
1
+ export declare const BellFilled: string;
@@ -0,0 +1 @@
1
+ export const BellFilled = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.93457 12.5C9.71235 13.3623 8.93171 14 8 14C7.06829 14 6.28765 13.3623 6.06543 12.5H9.93457Z\" fill=\"currentColor\"/><path d=\"M8 2C10.4853 2 12.5 4.01472 12.5 6.5V8.29297L13.8535 9.64648V10.3535L12.707 11.5H3.29297L2.14648 10.3535V9.64648L3.5 8.29297V6.5C3.5 4.01472 5.51472 2 8 2Z\" 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>";
@@ -28,6 +28,7 @@ export { Beaker } from './Beaker.mjs';
28
28
  export { Bell } from './Bell.mjs';
29
29
  export { BellCircle } from './BellCircle.mjs';
30
30
  export { BellExclamation } from './BellExclamation.mjs';
31
+ export { BellFilled } from './BellFilled.mjs';
31
32
  export { BellRinging } from './BellRinging.mjs';
32
33
  export { BellWifi } from './BellWifi.mjs';
33
34
  export { BlackWhite } from './BlackWhite.mjs';
@@ -183,6 +184,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
183
184
  export { GraphIncreasing } from './GraphIncreasing.mjs';
184
185
  export { GroupBy } from './GroupBy.mjs';
185
186
  export { Hamburger } from './Hamburger.mjs';
187
+ export { HandOpen } from './HandOpen.mjs';
186
188
  export { Headset } from './Headset.mjs';
187
189
  export { History } from './History.mjs';
188
190
  export { HourGlass } from './HourGlass.mjs';
@@ -332,6 +334,7 @@ export { SquareCheck } from './SquareCheck.mjs';
332
334
  export { SquareCheckFilled } from './SquareCheckFilled.mjs';
333
335
  export { SquareDollar } from './SquareDollar.mjs';
334
336
  export { SquareDollarFilled } from './SquareDollarFilled.mjs';
337
+ export { SquareDottedMinus } from './SquareDottedMinus.mjs';
335
338
  export { SquareFilled } from './SquareFilled.mjs';
336
339
  export { SquareGrid } from './SquareGrid.mjs';
337
340
  export { SquarePencil } from './SquarePencil.mjs';
@@ -28,6 +28,7 @@ export { Beaker } from './Beaker.mjs';
28
28
  export { Bell } from './Bell.mjs';
29
29
  export { BellCircle } from './BellCircle.mjs';
30
30
  export { BellExclamation } from './BellExclamation.mjs';
31
+ export { BellFilled } from './BellFilled.mjs';
31
32
  export { BellRinging } from './BellRinging.mjs';
32
33
  export { BellWifi } from './BellWifi.mjs';
33
34
  export { BlackWhite } from './BlackWhite.mjs';
@@ -183,6 +184,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
183
184
  export { GraphIncreasing } from './GraphIncreasing.mjs';
184
185
  export { GroupBy } from './GroupBy.mjs';
185
186
  export { Hamburger } from './Hamburger.mjs';
187
+ export { HandOpen } from './HandOpen.mjs';
186
188
  export { Headset } from './Headset.mjs';
187
189
  export { History } from './History.mjs';
188
190
  export { HourGlass } from './HourGlass.mjs';
@@ -332,6 +334,7 @@ export { SquareCheck } from './SquareCheck.mjs';
332
334
  export { SquareCheckFilled } from './SquareCheckFilled.mjs';
333
335
  export { SquareDollar } from './SquareDollar.mjs';
334
336
  export { SquareDollarFilled } from './SquareDollarFilled.mjs';
337
+ export { SquareDottedMinus } from './SquareDottedMinus.mjs';
335
338
  export { SquareFilled } from './SquareFilled.mjs';
336
339
  export { SquareGrid } from './SquareGrid.mjs';
337
340
  export { SquarePencil } from './SquarePencil.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ds-mo/icons",
3
- "version": "4.0.0",
3
+ "version": "4.2.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",