@ds-mo/icons 4.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 +4 -4
- package/dist/icons/HandOpen.d.ts +2 -0
- package/dist/icons/HandOpen.mjs +9 -0
- package/dist/icons/MessageBubble.mjs +1 -1
- package/dist/icons/SquareDottedMinus.d.ts +2 -0
- package/dist/icons/SquareDottedMinus.mjs +25 -0
- package/dist/icons/index.d.ts +2 -0
- package/dist/icons/index.mjs +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +2 -0
- package/dist/meta.json +24 -3
- package/dist/sprite.svg +7 -1
- package/dist/svg/HandOpen.d.ts +1 -0
- package/dist/svg/HandOpen.mjs +1 -0
- package/dist/svg/MessageBubble.mjs +1 -1
- package/dist/svg/SquareDottedMinus.d.ts +1 -0
- package/dist/svg/SquareDottedMinus.mjs +1 -0
- package/dist/svg/index.d.ts +2 -0
- package/dist/svg/index.mjs +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@ds-mo/icons)
|
|
4
4
|
|
|
5
|
-
IcoMo — **
|
|
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` |
|
|
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 //
|
|
112
|
-
meta.categories // { system: {count:
|
|
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
|
|
|
@@ -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', {
|
|
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,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 };
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -183,6 +183,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
|
|
|
183
183
|
export { GraphIncreasing } from './GraphIncreasing.mjs';
|
|
184
184
|
export { GroupBy } from './GroupBy.mjs';
|
|
185
185
|
export { Hamburger } from './Hamburger.mjs';
|
|
186
|
+
export { HandOpen } from './HandOpen.mjs';
|
|
186
187
|
export { Headset } from './Headset.mjs';
|
|
187
188
|
export { History } from './History.mjs';
|
|
188
189
|
export { HourGlass } from './HourGlass.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/icons/index.mjs
CHANGED
|
@@ -183,6 +183,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
|
|
|
183
183
|
export { GraphIncreasing } from './GraphIncreasing.mjs';
|
|
184
184
|
export { GroupBy } from './GroupBy.mjs';
|
|
185
185
|
export { Hamburger } from './Hamburger.mjs';
|
|
186
|
+
export { HandOpen } from './HandOpen.mjs';
|
|
186
187
|
export { Headset } from './Headset.mjs';
|
|
187
188
|
export { History } from './History.mjs';
|
|
188
189
|
export { HourGlass } from './HourGlass.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
|
@@ -188,6 +188,7 @@ export { GraphDecreasing } from './icons/GraphDecreasing.mjs';
|
|
|
188
188
|
export { GraphIncreasing } from './icons/GraphIncreasing.mjs';
|
|
189
189
|
export { GroupBy } from './icons/GroupBy.mjs';
|
|
190
190
|
export { Hamburger } from './icons/Hamburger.mjs';
|
|
191
|
+
export { HandOpen } from './icons/HandOpen.mjs';
|
|
191
192
|
export { Headset } from './icons/Headset.mjs';
|
|
192
193
|
export { History } from './icons/History.mjs';
|
|
193
194
|
export { HourGlass } from './icons/HourGlass.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
|
@@ -186,6 +186,7 @@ export { GraphDecreasing } from './icons/GraphDecreasing.mjs';
|
|
|
186
186
|
export { GraphIncreasing } from './icons/GraphIncreasing.mjs';
|
|
187
187
|
export { GroupBy } from './icons/GroupBy.mjs';
|
|
188
188
|
export { Hamburger } from './icons/Hamburger.mjs';
|
|
189
|
+
export { HandOpen } from './icons/HandOpen.mjs';
|
|
189
190
|
export { Headset } from './icons/Headset.mjs';
|
|
190
191
|
export { History } from './icons/History.mjs';
|
|
191
192
|
export { HourGlass } from './icons/HourGlass.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": "4.
|
|
3
|
-
"count":
|
|
2
|
+
"version": "4.1.0",
|
|
3
|
+
"count": 426,
|
|
4
4
|
"categories": {
|
|
5
5
|
"system": {
|
|
6
|
-
"count":
|
|
6
|
+
"count": 394,
|
|
7
7
|
"themeable": true
|
|
8
8
|
},
|
|
9
9
|
"flag": {
|
|
@@ -1878,6 +1878,17 @@
|
|
|
1878
1878
|
"lines"
|
|
1879
1879
|
]
|
|
1880
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
|
+
},
|
|
1881
1892
|
{
|
|
1882
1893
|
"name": "Headset",
|
|
1883
1894
|
"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
|
@@ -554,6 +554,9 @@
|
|
|
554
554
|
<symbol id="hamburger" viewBox="0 0 16 16" fill="currentColor">
|
|
555
555
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 4.5H2V3.5H14V4.5ZM14 8.5H2V7.5H14V8.5ZM14 12.5H2V11.5H14V12.5Z" fill="currentColor"/>
|
|
556
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>
|
|
557
560
|
<symbol id="headset" viewBox="0 0 16 16" fill="currentColor">
|
|
558
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"/>
|
|
559
562
|
</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
|
|
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>
|
|
@@ -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
|
|
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>";
|
package/dist/svg/index.d.ts
CHANGED
|
@@ -183,6 +183,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
|
|
|
183
183
|
export { GraphIncreasing } from './GraphIncreasing.mjs';
|
|
184
184
|
export { GroupBy } from './GroupBy.mjs';
|
|
185
185
|
export { Hamburger } from './Hamburger.mjs';
|
|
186
|
+
export { HandOpen } from './HandOpen.mjs';
|
|
186
187
|
export { Headset } from './Headset.mjs';
|
|
187
188
|
export { History } from './History.mjs';
|
|
188
189
|
export { HourGlass } from './HourGlass.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/svg/index.mjs
CHANGED
|
@@ -183,6 +183,7 @@ export { GraphDecreasing } from './GraphDecreasing.mjs';
|
|
|
183
183
|
export { GraphIncreasing } from './GraphIncreasing.mjs';
|
|
184
184
|
export { GroupBy } from './GroupBy.mjs';
|
|
185
185
|
export { Hamburger } from './Hamburger.mjs';
|
|
186
|
+
export { HandOpen } from './HandOpen.mjs';
|
|
186
187
|
export { Headset } from './Headset.mjs';
|
|
187
188
|
export { History } from './History.mjs';
|
|
188
189
|
export { HourGlass } from './HourGlass.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": "4.
|
|
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",
|