@ds-mo/icons 2.1.0 → 4.0.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 +2 -2
- package/dist/icons/BackslashBrackets.mjs +3 -3
- package/dist/icons/{MapA.d.ts → Bolt.d.ts} +1 -1
- package/dist/icons/Bolt.mjs +9 -0
- package/dist/icons/{MapBBetaTop.d.ts → BoltFilled.d.ts} +1 -1
- package/dist/icons/BoltFilled.mjs +9 -0
- package/dist/icons/{Lightning.d.ts → MapPage.d.ts} +1 -1
- package/dist/icons/MapPage.mjs +9 -0
- package/dist/icons/{MapB.d.ts → MapPin.d.ts} +1 -1
- package/dist/icons/{MapA.mjs → MapPin.mjs} +3 -3
- package/dist/icons/index.d.ts +4 -6
- package/dist/icons/index.mjs +4 -6
- package/dist/index.d.ts +4 -6
- package/dist/index.mjs +4 -6
- package/dist/meta.json +37 -55
- package/dist/sprite.svg +13 -19
- package/dist/svg/BackslashBrackets.mjs +1 -1
- package/dist/svg/Bolt.d.ts +1 -0
- package/dist/svg/Bolt.mjs +1 -0
- package/dist/svg/BoltFilled.d.ts +1 -0
- package/dist/svg/BoltFilled.mjs +1 -0
- package/dist/svg/MapPage.d.ts +1 -0
- package/dist/svg/MapPage.mjs +1 -0
- package/dist/svg/MapPin.d.ts +1 -0
- package/dist/svg/MapPin.mjs +1 -0
- package/dist/svg/index.d.ts +4 -6
- package/dist/svg/index.mjs +4 -6
- package/package.json +1 -1
- package/dist/icons/Lightning.mjs +0 -9
- package/dist/icons/LightningFilled.d.ts +0 -2
- package/dist/icons/LightningFilled.mjs +0 -9
- package/dist/icons/MapB.mjs +0 -9
- package/dist/icons/MapBBetaBottom.d.ts +0 -2
- package/dist/icons/MapBBetaBottom.mjs +0 -10
- package/dist/icons/MapBBetaTop.mjs +0 -10
- package/dist/svg/Lightning.d.ts +0 -1
- package/dist/svg/Lightning.mjs +0 -1
- package/dist/svg/LightningFilled.d.ts +0 -1
- package/dist/svg/LightningFilled.mjs +0 -1
- package/dist/svg/MapA.d.ts +0 -1
- package/dist/svg/MapA.mjs +0 -1
- package/dist/svg/MapB.d.ts +0 -1
- package/dist/svg/MapB.mjs +0 -1
- package/dist/svg/MapBBetaBottom.d.ts +0 -1
- package/dist/svg/MapBBetaBottom.mjs +0 -1
- package/dist/svg/MapBBetaTop.d.ts +0 -1
- package/dist/svg/MapBBetaTop.mjs +0 -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 — **424 SVG icons** (392 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` | 392 | ✅ `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.
|
|
@@ -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: "
|
|
6
|
-
createElement('path', { d: "
|
|
7
|
-
createElement('path', { d: "
|
|
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
|
|
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 };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IconComponent } from '../createIcon.mjs';
|
|
2
|
-
export declare const
|
|
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 };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IconComponent } from '../createIcon.mjs';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const MapPage: IconComponent;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { createElement } from 'react';
|
|
2
|
+
import { createIcon } from '../createIcon.mjs';
|
|
3
|
+
|
|
4
|
+
const MapPage = createIcon('map-page', [
|
|
5
|
+
createElement('path', { d: "M6.22559 2.03296L10.001 3.93921L13.7764 2.05249L14.5 2.49976V11.8093L14.2236 11.947L10.2236 13.947L10 14.0593L9.77637 13.947L6 12.0583L2.22363 13.947L1.5 13.4998V4.19214L5.77441 2.03296L6 1.9187L6.22559 2.03296ZM2.5 4.80737V12.6902L5.5 11.1902V3.29175L2.5 4.80737ZM6.5 11.1902L9.5 12.6902V4.80737L6.5 3.29175V11.1902ZM10.5 4.80835V12.6902L13.5 11.1902V3.30835L10.5 4.80835Z", key: "a" }),
|
|
6
|
+
]);
|
|
7
|
+
|
|
8
|
+
MapPage.displayName = 'MapPage';
|
|
9
|
+
export { MapPage };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IconComponent } from '../createIcon.mjs';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const MapPin: IconComponent;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const MapPin = createIcon('map-pin', [
|
|
5
5
|
createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M10 4.5C10 3.67157 10.6716 3 11.5 3C12.3284 3 13 3.67157 13 4.5C13 5.32843 12.3284 6 11.5 6C10.6716 6 10 5.32843 10 4.5ZM11.5 4C11.2239 4 11 4.22386 11 4.5C11 4.77614 11.2239 5 11.5 5C11.7761 5 12 4.77614 12 4.5C12 4.22386 11.7761 4 11.5 4Z", key: "a" }),
|
|
6
6
|
createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M8 4.47744C8 2.55335 9.57057 1 11.5 1C13.4294 1 15 2.55335 15 4.47744C15 5.36783 14.6626 6.18062 14.1094 6.79506L12.1664 9H10.8336L8.89059 6.79505C8.33743 6.18061 8 5.36782 8 4.47744ZM11.5 2C10.1157 2 9 3.11274 9 4.47744C9 5.11115 9.23947 5.68872 9.63521 6.12755L9.63905 6.13182L11.5 8.24372L13.3648 6.12753C13.7605 5.6887 14 5.11115 14 4.47744C14 3.11274 12.8843 2 11.5 2Z", key: "b" }),
|
|
7
7
|
createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M7 3H1V14H15V8H14V13H13.2071L4.20714 4H7V3ZM2.79292 4H2V12.2929L6.5429 7.74998L2.79292 4ZM11.7929 13L7.25001 8.45708L2.70709 13H11.7929Z", key: "c" }),
|
|
8
8
|
]);
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
export {
|
|
10
|
+
MapPin.displayName = 'MapPin';
|
|
11
|
+
export { MapPin };
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -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';
|
|
@@ -208,8 +210,6 @@ export { LetterI } from './LetterI.mjs';
|
|
|
208
210
|
export { License } from './License.mjs';
|
|
209
211
|
export { LicensePlate } from './LicensePlate.mjs';
|
|
210
212
|
export { Lifebuoy } from './Lifebuoy.mjs';
|
|
211
|
-
export { Lightning } from './Lightning.mjs';
|
|
212
|
-
export { LightningFilled } from './LightningFilled.mjs';
|
|
213
213
|
export { Link } from './Link.mjs';
|
|
214
214
|
export { List } from './List.mjs';
|
|
215
215
|
export { Loads } from './Loads.mjs';
|
|
@@ -227,11 +227,9 @@ export { MagnifyingGlass } from './MagnifyingGlass.mjs';
|
|
|
227
227
|
export { MagnifyingGlassGraph } from './MagnifyingGlassGraph.mjs';
|
|
228
228
|
export { MagnifyingGlassZoomIn } from './MagnifyingGlassZoomIn.mjs';
|
|
229
229
|
export { MagnifyingGlassZoomOut } from './MagnifyingGlassZoomOut.mjs';
|
|
230
|
-
export { MapA } from './MapA.mjs';
|
|
231
|
-
export { MapB } from './MapB.mjs';
|
|
232
|
-
export { MapBBetaBottom } from './MapBBetaBottom.mjs';
|
|
233
|
-
export { MapBBetaTop } from './MapBBetaTop.mjs';
|
|
234
230
|
export { MapNavigation } from './MapNavigation.mjs';
|
|
231
|
+
export { MapPage } from './MapPage.mjs';
|
|
232
|
+
export { MapPin } from './MapPin.mjs';
|
|
235
233
|
export { MarkRead } from './MarkRead.mjs';
|
|
236
234
|
export { Match } from './Match.mjs';
|
|
237
235
|
export { MessageBubble } from './MessageBubble.mjs';
|
package/dist/icons/index.mjs
CHANGED
|
@@ -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';
|
|
@@ -208,8 +210,6 @@ export { LetterI } from './LetterI.mjs';
|
|
|
208
210
|
export { License } from './License.mjs';
|
|
209
211
|
export { LicensePlate } from './LicensePlate.mjs';
|
|
210
212
|
export { Lifebuoy } from './Lifebuoy.mjs';
|
|
211
|
-
export { Lightning } from './Lightning.mjs';
|
|
212
|
-
export { LightningFilled } from './LightningFilled.mjs';
|
|
213
213
|
export { Link } from './Link.mjs';
|
|
214
214
|
export { List } from './List.mjs';
|
|
215
215
|
export { Loads } from './Loads.mjs';
|
|
@@ -227,11 +227,9 @@ export { MagnifyingGlass } from './MagnifyingGlass.mjs';
|
|
|
227
227
|
export { MagnifyingGlassGraph } from './MagnifyingGlassGraph.mjs';
|
|
228
228
|
export { MagnifyingGlassZoomIn } from './MagnifyingGlassZoomIn.mjs';
|
|
229
229
|
export { MagnifyingGlassZoomOut } from './MagnifyingGlassZoomOut.mjs';
|
|
230
|
-
export { MapA } from './MapA.mjs';
|
|
231
|
-
export { MapB } from './MapB.mjs';
|
|
232
|
-
export { MapBBetaBottom } from './MapBBetaBottom.mjs';
|
|
233
|
-
export { MapBBetaTop } from './MapBBetaTop.mjs';
|
|
234
230
|
export { MapNavigation } from './MapNavigation.mjs';
|
|
231
|
+
export { MapPage } from './MapPage.mjs';
|
|
232
|
+
export { MapPin } from './MapPin.mjs';
|
|
235
233
|
export { MarkRead } from './MarkRead.mjs';
|
|
236
234
|
export { Match } from './Match.mjs';
|
|
237
235
|
export { MessageBubble } from './MessageBubble.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';
|
|
@@ -213,8 +215,6 @@ export { LetterI } from './icons/LetterI.mjs';
|
|
|
213
215
|
export { License } from './icons/License.mjs';
|
|
214
216
|
export { LicensePlate } from './icons/LicensePlate.mjs';
|
|
215
217
|
export { Lifebuoy } from './icons/Lifebuoy.mjs';
|
|
216
|
-
export { Lightning } from './icons/Lightning.mjs';
|
|
217
|
-
export { LightningFilled } from './icons/LightningFilled.mjs';
|
|
218
218
|
export { Link } from './icons/Link.mjs';
|
|
219
219
|
export { List } from './icons/List.mjs';
|
|
220
220
|
export { Loads } from './icons/Loads.mjs';
|
|
@@ -232,11 +232,9 @@ export { MagnifyingGlass } from './icons/MagnifyingGlass.mjs';
|
|
|
232
232
|
export { MagnifyingGlassGraph } from './icons/MagnifyingGlassGraph.mjs';
|
|
233
233
|
export { MagnifyingGlassZoomIn } from './icons/MagnifyingGlassZoomIn.mjs';
|
|
234
234
|
export { MagnifyingGlassZoomOut } from './icons/MagnifyingGlassZoomOut.mjs';
|
|
235
|
-
export { MapA } from './icons/MapA.mjs';
|
|
236
|
-
export { MapB } from './icons/MapB.mjs';
|
|
237
|
-
export { MapBBetaBottom } from './icons/MapBBetaBottom.mjs';
|
|
238
|
-
export { MapBBetaTop } from './icons/MapBBetaTop.mjs';
|
|
239
235
|
export { MapNavigation } from './icons/MapNavigation.mjs';
|
|
236
|
+
export { MapPage } from './icons/MapPage.mjs';
|
|
237
|
+
export { MapPin } from './icons/MapPin.mjs';
|
|
240
238
|
export { MarkRead } from './icons/MarkRead.mjs';
|
|
241
239
|
export { Match } from './icons/Match.mjs';
|
|
242
240
|
export { MessageBubble } from './icons/MessageBubble.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';
|
|
@@ -211,8 +213,6 @@ export { LetterI } from './icons/LetterI.mjs';
|
|
|
211
213
|
export { License } from './icons/License.mjs';
|
|
212
214
|
export { LicensePlate } from './icons/LicensePlate.mjs';
|
|
213
215
|
export { Lifebuoy } from './icons/Lifebuoy.mjs';
|
|
214
|
-
export { Lightning } from './icons/Lightning.mjs';
|
|
215
|
-
export { LightningFilled } from './icons/LightningFilled.mjs';
|
|
216
216
|
export { Link } from './icons/Link.mjs';
|
|
217
217
|
export { List } from './icons/List.mjs';
|
|
218
218
|
export { Loads } from './icons/Loads.mjs';
|
|
@@ -230,11 +230,9 @@ export { MagnifyingGlass } from './icons/MagnifyingGlass.mjs';
|
|
|
230
230
|
export { MagnifyingGlassGraph } from './icons/MagnifyingGlassGraph.mjs';
|
|
231
231
|
export { MagnifyingGlassZoomIn } from './icons/MagnifyingGlassZoomIn.mjs';
|
|
232
232
|
export { MagnifyingGlassZoomOut } from './icons/MagnifyingGlassZoomOut.mjs';
|
|
233
|
-
export { MapA } from './icons/MapA.mjs';
|
|
234
|
-
export { MapB } from './icons/MapB.mjs';
|
|
235
|
-
export { MapBBetaBottom } from './icons/MapBBetaBottom.mjs';
|
|
236
|
-
export { MapBBetaTop } from './icons/MapBBetaTop.mjs';
|
|
237
233
|
export { MapNavigation } from './icons/MapNavigation.mjs';
|
|
234
|
+
export { MapPage } from './icons/MapPage.mjs';
|
|
235
|
+
export { MapPin } from './icons/MapPin.mjs';
|
|
238
236
|
export { MarkRead } from './icons/MarkRead.mjs';
|
|
239
237
|
export { Match } from './icons/Match.mjs';
|
|
240
238
|
export { MessageBubble } from './icons/MessageBubble.mjs';
|
package/dist/meta.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "
|
|
3
|
-
"count":
|
|
2
|
+
"version": "4.0.0",
|
|
3
|
+
"count": 424,
|
|
4
4
|
"categories": {
|
|
5
5
|
"system": {
|
|
6
|
-
"count":
|
|
6
|
+
"count": 392,
|
|
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",
|
|
@@ -2134,26 +2154,6 @@
|
|
|
2134
2154
|
"rescue"
|
|
2135
2155
|
]
|
|
2136
2156
|
},
|
|
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
2157
|
{
|
|
2158
2158
|
"name": "Link",
|
|
2159
2159
|
"category": "system",
|
|
@@ -2325,53 +2325,35 @@
|
|
|
2325
2325
|
]
|
|
2326
2326
|
},
|
|
2327
2327
|
{
|
|
2328
|
-
"name": "
|
|
2328
|
+
"name": "MapNavigation",
|
|
2329
2329
|
"category": "system",
|
|
2330
|
-
"kebab": "map-
|
|
2330
|
+
"kebab": "map-navigation",
|
|
2331
2331
|
"aliases": [
|
|
2332
|
-
"
|
|
2333
|
-
"
|
|
2334
|
-
"
|
|
2332
|
+
"directions",
|
|
2333
|
+
"navigate",
|
|
2334
|
+
"route-map"
|
|
2335
2335
|
]
|
|
2336
2336
|
},
|
|
2337
2337
|
{
|
|
2338
|
-
"name": "
|
|
2338
|
+
"name": "MapPage",
|
|
2339
2339
|
"category": "system",
|
|
2340
|
-
"kebab": "map-
|
|
2340
|
+
"kebab": "map-page",
|
|
2341
2341
|
"aliases": [
|
|
2342
|
+
"map-b",
|
|
2342
2343
|
"map-alt",
|
|
2343
2344
|
"map-variant",
|
|
2344
2345
|
"navigation-b"
|
|
2345
2346
|
]
|
|
2346
2347
|
},
|
|
2347
2348
|
{
|
|
2348
|
-
"name": "
|
|
2349
|
-
"category": "system",
|
|
2350
|
-
"kebab": "map-b-beta-bottom",
|
|
2351
|
-
"aliases": [
|
|
2352
|
-
"map-beta-bottom",
|
|
2353
|
-
"beta-map-bottom",
|
|
2354
|
-
"experimental-map-bottom"
|
|
2355
|
-
]
|
|
2356
|
-
},
|
|
2357
|
-
{
|
|
2358
|
-
"name": "MapBBetaTop",
|
|
2349
|
+
"name": "MapPin",
|
|
2359
2350
|
"category": "system",
|
|
2360
|
-
"kebab": "map-
|
|
2351
|
+
"kebab": "map-pin",
|
|
2361
2352
|
"aliases": [
|
|
2362
|
-
"map-
|
|
2363
|
-
"
|
|
2364
|
-
"
|
|
2365
|
-
|
|
2366
|
-
},
|
|
2367
|
-
{
|
|
2368
|
-
"name": "MapNavigation",
|
|
2369
|
-
"category": "system",
|
|
2370
|
-
"kebab": "map-navigation",
|
|
2371
|
-
"aliases": [
|
|
2372
|
-
"directions",
|
|
2373
|
-
"navigate",
|
|
2374
|
-
"route-map"
|
|
2353
|
+
"map-a",
|
|
2354
|
+
"map",
|
|
2355
|
+
"navigation",
|
|
2356
|
+
"atlas"
|
|
2375
2357
|
]
|
|
2376
2358
|
},
|
|
2377
2359
|
{
|
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="
|
|
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>
|
|
@@ -629,12 +635,6 @@
|
|
|
629
635
|
<symbol id="lifebuoy" viewBox="0 0 16 16" fill="currentColor">
|
|
630
636
|
<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
637
|
</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
638
|
<symbol id="link" viewBox="0 0 16 16" fill="currentColor">
|
|
639
639
|
<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
640
|
</symbol>
|
|
@@ -686,21 +686,15 @@
|
|
|
686
686
|
<symbol id="magnifying-glass-zoom-out" viewBox="0 0 16 16" fill="currentColor">
|
|
687
687
|
<path d="M10 7.5H4V6.5H10V7.5Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M7 2C4.23858 2 2 4.23858 2 7C2 9.76142 4.23858 12 7 12C8.20063 12 9.30243 11.5768 10.1644 10.8715L13.1465 13.8536L13.8536 13.1465L10.8715 10.1644C11.5768 9.30243 12 8.20063 12 7C12 4.23858 9.76142 2 7 2ZM3 7C3 4.79086 4.79086 3 7 3C9.20914 3 11 4.79086 11 7C11 9.20914 9.20914 11 7 11C4.79086 11 3 9.20914 3 7Z" fill="currentColor"/>
|
|
688
688
|
</symbol>
|
|
689
|
-
<symbol id="map-a" viewBox="0 0 16 16" fill="currentColor">
|
|
690
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 4.5C10 3.67157 10.6716 3 11.5 3C12.3284 3 13 3.67157 13 4.5C13 5.32843 12.3284 6 11.5 6C10.6716 6 10 5.32843 10 4.5ZM11.5 4C11.2239 4 11 4.22386 11 4.5C11 4.77614 11.2239 5 11.5 5C11.7761 5 12 4.77614 12 4.5C12 4.22386 11.7761 4 11.5 4Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8 4.47744C8 2.55335 9.57057 1 11.5 1C13.4294 1 15 2.55335 15 4.47744C15 5.36783 14.6626 6.18062 14.1094 6.79506L12.1664 9H10.8336L8.89059 6.79505C8.33743 6.18061 8 5.36782 8 4.47744ZM11.5 2C10.1157 2 9 3.11274 9 4.47744C9 5.11115 9.23947 5.68872 9.63521 6.12755L9.63905 6.13182L11.5 8.24372L13.3648 6.12753C13.7605 5.6887 14 5.11115 14 4.47744C14 3.11274 12.8843 2 11.5 2Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M7 3H1V14H15V8H14V13H13.2071L4.20714 4H7V3ZM2.79292 4H2V12.2929L6.5429 7.74998L2.79292 4ZM11.7929 13L7.25001 8.45708L2.70709 13H11.7929Z" fill="currentColor"/>
|
|
691
|
-
</symbol>
|
|
692
|
-
<symbol id="map-b" viewBox="0 0 16 16" fill="currentColor">
|
|
693
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2959 2.01619L10.4757 3.95177L5.47722 1.95236L1 4.19097V13.2864L1.70531 13.9917L5.52474 12.0484L10.5228 14.0476L15 11.809V2.72033L14.2959 2.01619ZM11 4.80717L14 3.28714V11.191L11 12.691V4.80717ZM10 4.83851L6 3.23851V11.1615L10 12.7615V4.83851ZM5 11.1934V3.30901L2 4.80901V12.7198L5 11.1934Z" fill="currentColor"/>
|
|
694
|
-
</symbol>
|
|
695
|
-
<symbol id="map-b-beta-bottom" viewBox="0 0 16 16" fill="currentColor">
|
|
696
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.23633 7.69238C2.46635 7.69241 2.68297 7.72554 2.88574 7.79199C3.09012 7.85845 3.26979 7.95379 3.4248 8.07812C3.58162 8.20085 3.70433 8.34836 3.79297 8.52051C3.8816 8.69096 3.92578 8.88264 3.92578 9.0957C3.92749 9.33604 3.86687 9.57042 3.74414 9.79883C3.66283 9.95224 3.55395 10.0849 3.42188 10.2021C3.65673 10.3399 3.83602 10.5193 3.95898 10.7422C4.08853 10.974 4.15307 11.2275 4.15137 11.502C4.15303 11.8052 4.08161 12.0744 3.93848 12.3096C3.7953 12.543 3.60209 12.7264 3.3584 12.8594C3.11468 12.9906 2.8417 13.0566 2.54004 13.0566C2.36287 13.0566 2.18891 13.0294 2.01855 12.9766C1.84829 12.9237 1.68917 12.831 1.54102 12.6982L1.50781 12.7139V14.4727H0.5V9.28027C0.501704 8.95824 0.579135 8.67828 0.732422 8.44141C0.887536 8.20277 1.09688 8.01822 1.35938 7.88867C1.62179 7.75753 1.9143 7.69238 2.23633 7.69238ZM2.23633 8.60254C2.09826 8.60254 1.9731 8.6315 1.8623 8.68945C1.75344 8.7474 1.66624 8.83175 1.60156 8.94238C1.53864 9.05135 1.50786 9.18427 1.50781 9.34082V11.3789C1.50781 11.5238 1.53975 11.6576 1.60449 11.7803C1.67097 11.9013 1.76594 11.9977 1.88867 12.0693C2.01135 12.1408 2.15902 12.1768 2.33105 12.1768C2.49794 12.1767 2.64299 12.1436 2.76562 12.0771C2.88815 12.0091 2.98239 11.9177 3.04883 11.8037C3.117 11.6878 3.15136 11.5597 3.15137 11.4199C3.15137 11.2699 3.11431 11.1391 3.04102 11.0283C2.96775 10.9177 2.86963 10.833 2.74707 10.7734C2.62441 10.7121 2.48754 10.6807 2.33594 10.6807H1.98535V9.91602H2.2207C2.39286 9.91602 2.53054 9.88264 2.63281 9.81445C2.735 9.74459 2.80824 9.65788 2.85254 9.55566C2.89846 9.4518 2.92065 9.34949 2.91895 9.24902C2.92063 9.0616 2.85849 8.90712 2.73242 8.78613C2.60804 8.66346 2.44246 8.60259 2.23633 8.60254Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M10.4756 3.95215L14.2959 2.0166L15 2.7207V11.8086L10.5225 14.0479L5.52441 12.0488L5 11.8047V3.30859L2 4.80859V7H1V4.19141L5.47754 1.95215L10.4756 3.95215ZM6 11.1611L10 12.7617V4.83887L6 3.23828V11.1611ZM11 4.80762V12.6914L14 11.1914V3.28711L11 4.80762Z" fill="currentColor"/>
|
|
697
|
-
</symbol>
|
|
698
|
-
<symbol id="map-b-beta-top" viewBox="0 0 16 16" fill="currentColor">
|
|
699
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.4756 3.95215L11 4.17578V12.6914L14 11.1914V8H15V11.8086L10.5225 14.0479L5.52441 12.0488L1.70508 13.9922L1 13.2861V4.19141L5.47754 1.95215L10.4756 3.95215ZM6 11.1611L10 12.7617V4.83887L6 3.23828V11.1611ZM2 4.80859V12.7197L5 11.1934V3.30859L2 4.80859Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13.7363 1.69238C13.9663 1.69241 14.183 1.72554 14.3857 1.79199C14.5901 1.85845 14.7698 1.95379 14.9248 2.07812C15.0816 2.20085 15.2043 2.34836 15.293 2.52051C15.3816 2.69096 15.4258 2.88264 15.4258 3.0957C15.4275 3.33604 15.3669 3.57042 15.2441 3.79883C15.1628 3.95224 15.0539 4.08489 14.9219 4.20215C15.1567 4.33992 15.336 4.51932 15.459 4.74219C15.5885 4.97401 15.6531 5.22752 15.6514 5.50195C15.653 5.80525 15.5816 6.07442 15.4385 6.30957C15.2953 6.54302 15.1021 6.72645 14.8584 6.85938C14.6147 6.99059 14.3417 7.05664 14.04 7.05664C13.8629 7.05661 13.6889 7.02937 13.5186 6.97656C13.3483 6.92373 13.1892 6.83102 13.041 6.69824L13.0078 6.71387V8.47266H12V3.28027C12.0017 2.95824 12.0791 2.67828 12.2324 2.44141C12.3875 2.20277 12.5969 2.01822 12.8594 1.88867C13.1218 1.75753 13.4143 1.69238 13.7363 1.69238ZM13.7363 2.60254C13.5983 2.60254 13.4731 2.6315 13.3623 2.68945C13.2534 2.7474 13.1662 2.83175 13.1016 2.94238C13.0386 3.05135 13.0079 3.18427 13.0078 3.34082V5.37891C13.0078 5.52375 13.0398 5.65757 13.1045 5.78027C13.171 5.9013 13.2659 5.99775 13.3887 6.06934C13.5113 6.14083 13.659 6.17676 13.8311 6.17676C13.9979 6.17671 14.143 6.14358 14.2656 6.07715C14.3881 6.00905 14.4824 5.91769 14.5488 5.80371C14.617 5.68782 14.6514 5.55967 14.6514 5.41992C14.6514 5.26992 14.6143 5.13912 14.541 5.02832C14.4678 4.91774 14.3696 4.83302 14.2471 4.77344C14.1244 4.71213 13.9875 4.68068 13.8359 4.68066H13.4854V3.91602H13.7207C13.8929 3.91602 14.0305 3.88263 14.1328 3.81445C14.235 3.74459 14.3082 3.65788 14.3525 3.55566C14.3985 3.4518 14.4206 3.34949 14.4189 3.24902C14.4206 3.0616 14.3585 2.90713 14.2324 2.78613C14.108 2.66345 13.9425 2.60259 13.7363 2.60254Z" fill="currentColor"/>
|
|
700
|
-
</symbol>
|
|
701
689
|
<symbol id="map-navigation" viewBox="0 0 16 16" fill="currentColor">
|
|
702
690
|
<path d="M6.00012 7.02539L6.00012 11H7.00012L7.00012 8.02539L9.58343 8.02539L8.41225 9.19661L9.11936 9.9037L11.0001 8.02289V7.02733L9.1193 5.14646L8.41219 5.85355L9.58399 7.02539L6.00012 7.02539Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M1.76788 9.76775C0.791566 8.79144 0.791568 7.20853 1.76788 6.23222L6.23235 1.76775C7.20866 0.791444 8.79157 0.791446 9.76788 1.76776L14.2323 6.23222C15.2087 7.20854 15.2087 8.79145 14.2323 9.76776L9.76788 14.2322C8.79157 15.2085 7.20866 15.2085 6.23235 14.2322L1.76788 9.76775ZM2.47499 6.93933L6.93945 2.47486C7.52524 1.88908 8.47499 1.88908 9.06077 2.47486L13.5252 6.93933C14.111 7.52512 14.111 8.47486 13.5252 9.06065L9.06077 13.5251C8.47499 14.1109 7.52524 14.1109 6.93945 13.5251L2.47498 9.06065C1.8892 8.47486 1.8892 7.52512 2.47499 6.93933Z" fill="currentColor"/>
|
|
703
691
|
</symbol>
|
|
692
|
+
<symbol id="map-page" viewBox="0 0 16 16" fill="currentColor">
|
|
693
|
+
<path d="M6.22559 2.03296L10.001 3.93921L13.7764 2.05249L14.5 2.49976V11.8093L14.2236 11.947L10.2236 13.947L10 14.0593L9.77637 13.947L6 12.0583L2.22363 13.947L1.5 13.4998V4.19214L5.77441 2.03296L6 1.9187L6.22559 2.03296ZM2.5 4.80737V12.6902L5.5 11.1902V3.29175L2.5 4.80737ZM6.5 11.1902L9.5 12.6902V4.80737L6.5 3.29175V11.1902ZM10.5 4.80835V12.6902L13.5 11.1902V3.30835L10.5 4.80835Z" fill="currentColor"/>
|
|
694
|
+
</symbol>
|
|
695
|
+
<symbol id="map-pin" viewBox="0 0 16 16" fill="currentColor">
|
|
696
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 4.5C10 3.67157 10.6716 3 11.5 3C12.3284 3 13 3.67157 13 4.5C13 5.32843 12.3284 6 11.5 6C10.6716 6 10 5.32843 10 4.5ZM11.5 4C11.2239 4 11 4.22386 11 4.5C11 4.77614 11.2239 5 11.5 5C11.7761 5 12 4.77614 12 4.5C12 4.22386 11.7761 4 11.5 4Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8 4.47744C8 2.55335 9.57057 1 11.5 1C13.4294 1 15 2.55335 15 4.47744C15 5.36783 14.6626 6.18062 14.1094 6.79506L12.1664 9H10.8336L8.89059 6.79505C8.33743 6.18061 8 5.36782 8 4.47744ZM11.5 2C10.1157 2 9 3.11274 9 4.47744C9 5.11115 9.23947 5.68872 9.63521 6.12755L9.63905 6.13182L11.5 8.24372L13.3648 6.12753C13.7605 5.6887 14 5.11115 14 4.47744C14 3.11274 12.8843 2 11.5 2Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M7 3H1V14H15V8H14V13H13.2071L4.20714 4H7V3ZM2.79292 4H2V12.2929L6.5429 7.74998L2.79292 4ZM11.7929 13L7.25001 8.45708L2.70709 13H11.7929Z" fill="currentColor"/>
|
|
697
|
+
</symbol>
|
|
704
698
|
<symbol id="mark-read" viewBox="0 0 16 16" fill="currentColor">
|
|
705
699
|
<path d="M15.207 10L11.25 13.957L8.79297 11.5L9.5 10.793L11.25 12.543L14.5 9.29297L15.207 10Z" fill="currentColor"/><path d="M7 12.5H2V11.5H7V12.5Z" fill="currentColor"/><path d="M11 8.5H2V7.5H11V8.5Z" fill="currentColor"/><path d="M14 4.5H2V3.5H14V4.5Z" fill="currentColor"/>
|
|
706
700
|
</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=\"
|
|
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 MapPage: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const MapPage = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.22559 2.03296L10.001 3.93921L13.7764 2.05249L14.5 2.49976V11.8093L14.2236 11.947L10.2236 13.947L10 14.0593L9.77637 13.947L6 12.0583L2.22363 13.947L1.5 13.4998V4.19214L5.77441 2.03296L6 1.9187L6.22559 2.03296ZM2.5 4.80737V12.6902L5.5 11.1902V3.29175L2.5 4.80737ZM6.5 11.1902L9.5 12.6902V4.80737L6.5 3.29175V11.1902ZM10.5 4.80835V12.6902L13.5 11.1902V3.30835L10.5 4.80835Z\" fill=\"currentColor\"/></svg>";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const MapPin: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const MapPin = "<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=\"M10 4.5C10 3.67157 10.6716 3 11.5 3C12.3284 3 13 3.67157 13 4.5C13 5.32843 12.3284 6 11.5 6C10.6716 6 10 5.32843 10 4.5ZM11.5 4C11.2239 4 11 4.22386 11 4.5C11 4.77614 11.2239 5 11.5 5C11.7761 5 12 4.77614 12 4.5C12 4.22386 11.7761 4 11.5 4Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 4.47744C8 2.55335 9.57057 1 11.5 1C13.4294 1 15 2.55335 15 4.47744C15 5.36783 14.6626 6.18062 14.1094 6.79506L12.1664 9H10.8336L8.89059 6.79505C8.33743 6.18061 8 5.36782 8 4.47744ZM11.5 2C10.1157 2 9 3.11274 9 4.47744C9 5.11115 9.23947 5.68872 9.63521 6.12755L9.63905 6.13182L11.5 8.24372L13.3648 6.12753C13.7605 5.6887 14 5.11115 14 4.47744C14 3.11274 12.8843 2 11.5 2Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 3H1V14H15V8H14V13H13.2071L4.20714 4H7V3ZM2.79292 4H2V12.2929L6.5429 7.74998L2.79292 4ZM11.7929 13L7.25001 8.45708L2.70709 13H11.7929Z\" fill=\"currentColor\"/></svg>";
|
package/dist/svg/index.d.ts
CHANGED
|
@@ -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';
|
|
@@ -208,8 +210,6 @@ export { LetterI } from './LetterI.mjs';
|
|
|
208
210
|
export { License } from './License.mjs';
|
|
209
211
|
export { LicensePlate } from './LicensePlate.mjs';
|
|
210
212
|
export { Lifebuoy } from './Lifebuoy.mjs';
|
|
211
|
-
export { Lightning } from './Lightning.mjs';
|
|
212
|
-
export { LightningFilled } from './LightningFilled.mjs';
|
|
213
213
|
export { Link } from './Link.mjs';
|
|
214
214
|
export { List } from './List.mjs';
|
|
215
215
|
export { Loads } from './Loads.mjs';
|
|
@@ -227,11 +227,9 @@ export { MagnifyingGlass } from './MagnifyingGlass.mjs';
|
|
|
227
227
|
export { MagnifyingGlassGraph } from './MagnifyingGlassGraph.mjs';
|
|
228
228
|
export { MagnifyingGlassZoomIn } from './MagnifyingGlassZoomIn.mjs';
|
|
229
229
|
export { MagnifyingGlassZoomOut } from './MagnifyingGlassZoomOut.mjs';
|
|
230
|
-
export { MapA } from './MapA.mjs';
|
|
231
|
-
export { MapB } from './MapB.mjs';
|
|
232
|
-
export { MapBBetaBottom } from './MapBBetaBottom.mjs';
|
|
233
|
-
export { MapBBetaTop } from './MapBBetaTop.mjs';
|
|
234
230
|
export { MapNavigation } from './MapNavigation.mjs';
|
|
231
|
+
export { MapPage } from './MapPage.mjs';
|
|
232
|
+
export { MapPin } from './MapPin.mjs';
|
|
235
233
|
export { MarkRead } from './MarkRead.mjs';
|
|
236
234
|
export { Match } from './Match.mjs';
|
|
237
235
|
export { MessageBubble } from './MessageBubble.mjs';
|
package/dist/svg/index.mjs
CHANGED
|
@@ -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';
|
|
@@ -208,8 +210,6 @@ export { LetterI } from './LetterI.mjs';
|
|
|
208
210
|
export { License } from './License.mjs';
|
|
209
211
|
export { LicensePlate } from './LicensePlate.mjs';
|
|
210
212
|
export { Lifebuoy } from './Lifebuoy.mjs';
|
|
211
|
-
export { Lightning } from './Lightning.mjs';
|
|
212
|
-
export { LightningFilled } from './LightningFilled.mjs';
|
|
213
213
|
export { Link } from './Link.mjs';
|
|
214
214
|
export { List } from './List.mjs';
|
|
215
215
|
export { Loads } from './Loads.mjs';
|
|
@@ -227,11 +227,9 @@ export { MagnifyingGlass } from './MagnifyingGlass.mjs';
|
|
|
227
227
|
export { MagnifyingGlassGraph } from './MagnifyingGlassGraph.mjs';
|
|
228
228
|
export { MagnifyingGlassZoomIn } from './MagnifyingGlassZoomIn.mjs';
|
|
229
229
|
export { MagnifyingGlassZoomOut } from './MagnifyingGlassZoomOut.mjs';
|
|
230
|
-
export { MapA } from './MapA.mjs';
|
|
231
|
-
export { MapB } from './MapB.mjs';
|
|
232
|
-
export { MapBBetaBottom } from './MapBBetaBottom.mjs';
|
|
233
|
-
export { MapBBetaTop } from './MapBBetaTop.mjs';
|
|
234
230
|
export { MapNavigation } from './MapNavigation.mjs';
|
|
231
|
+
export { MapPage } from './MapPage.mjs';
|
|
232
|
+
export { MapPin } from './MapPin.mjs';
|
|
235
233
|
export { MarkRead } from './MarkRead.mjs';
|
|
236
234
|
export { Match } from './Match.mjs';
|
|
237
235
|
export { MessageBubble } from './MessageBubble.mjs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ds-mo/icons",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.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",
|
package/dist/icons/Lightning.mjs
DELETED
|
@@ -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,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 };
|
package/dist/icons/MapB.mjs
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { createElement } from 'react';
|
|
2
|
-
import { createIcon } from '../createIcon.mjs';
|
|
3
|
-
|
|
4
|
-
const MapB = createIcon('map-b', [
|
|
5
|
-
createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M14.2959 2.01619L10.4757 3.95177L5.47722 1.95236L1 4.19097V13.2864L1.70531 13.9917L5.52474 12.0484L10.5228 14.0476L15 11.809V2.72033L14.2959 2.01619ZM11 4.80717L14 3.28714V11.191L11 12.691V4.80717ZM10 4.83851L6 3.23851V11.1615L10 12.7615V4.83851ZM5 11.1934V3.30901L2 4.80901V12.7198L5 11.1934Z", key: "a" }),
|
|
6
|
-
]);
|
|
7
|
-
|
|
8
|
-
MapB.displayName = 'MapB';
|
|
9
|
-
export { MapB };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { createElement } from 'react';
|
|
2
|
-
import { createIcon } from '../createIcon.mjs';
|
|
3
|
-
|
|
4
|
-
const MapBBetaBottom = createIcon('map-b-beta-bottom', [
|
|
5
|
-
createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M2.23633 7.69238C2.46635 7.69241 2.68297 7.72554 2.88574 7.79199C3.09012 7.85845 3.26979 7.95379 3.4248 8.07812C3.58162 8.20085 3.70433 8.34836 3.79297 8.52051C3.8816 8.69096 3.92578 8.88264 3.92578 9.0957C3.92749 9.33604 3.86687 9.57042 3.74414 9.79883C3.66283 9.95224 3.55395 10.0849 3.42188 10.2021C3.65673 10.3399 3.83602 10.5193 3.95898 10.7422C4.08853 10.974 4.15307 11.2275 4.15137 11.502C4.15303 11.8052 4.08161 12.0744 3.93848 12.3096C3.7953 12.543 3.60209 12.7264 3.3584 12.8594C3.11468 12.9906 2.8417 13.0566 2.54004 13.0566C2.36287 13.0566 2.18891 13.0294 2.01855 12.9766C1.84829 12.9237 1.68917 12.831 1.54102 12.6982L1.50781 12.7139V14.4727H0.5V9.28027C0.501704 8.95824 0.579135 8.67828 0.732422 8.44141C0.887536 8.20277 1.09688 8.01822 1.35938 7.88867C1.62179 7.75753 1.9143 7.69238 2.23633 7.69238ZM2.23633 8.60254C2.09826 8.60254 1.9731 8.6315 1.8623 8.68945C1.75344 8.7474 1.66624 8.83175 1.60156 8.94238C1.53864 9.05135 1.50786 9.18427 1.50781 9.34082V11.3789C1.50781 11.5238 1.53975 11.6576 1.60449 11.7803C1.67097 11.9013 1.76594 11.9977 1.88867 12.0693C2.01135 12.1408 2.15902 12.1768 2.33105 12.1768C2.49794 12.1767 2.64299 12.1436 2.76562 12.0771C2.88815 12.0091 2.98239 11.9177 3.04883 11.8037C3.117 11.6878 3.15136 11.5597 3.15137 11.4199C3.15137 11.2699 3.11431 11.1391 3.04102 11.0283C2.96775 10.9177 2.86963 10.833 2.74707 10.7734C2.62441 10.7121 2.48754 10.6807 2.33594 10.6807H1.98535V9.91602H2.2207C2.39286 9.91602 2.53054 9.88264 2.63281 9.81445C2.735 9.74459 2.80824 9.65788 2.85254 9.55566C2.89846 9.4518 2.92065 9.34949 2.91895 9.24902C2.92063 9.0616 2.85849 8.90712 2.73242 8.78613C2.60804 8.66346 2.44246 8.60259 2.23633 8.60254Z", key: "a" }),
|
|
6
|
-
createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M10.4756 3.95215L14.2959 2.0166L15 2.7207V11.8086L10.5225 14.0479L5.52441 12.0488L5 11.8047V3.30859L2 4.80859V7H1V4.19141L5.47754 1.95215L10.4756 3.95215ZM6 11.1611L10 12.7617V4.83887L6 3.23828V11.1611ZM11 4.80762V12.6914L14 11.1914V3.28711L11 4.80762Z", key: "b" }),
|
|
7
|
-
]);
|
|
8
|
-
|
|
9
|
-
MapBBetaBottom.displayName = 'MapBBetaBottom';
|
|
10
|
-
export { MapBBetaBottom };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { createElement } from 'react';
|
|
2
|
-
import { createIcon } from '../createIcon.mjs';
|
|
3
|
-
|
|
4
|
-
const MapBBetaTop = createIcon('map-b-beta-top', [
|
|
5
|
-
createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M10.4756 3.95215L11 4.17578V12.6914L14 11.1914V8H15V11.8086L10.5225 14.0479L5.52441 12.0488L1.70508 13.9922L1 13.2861V4.19141L5.47754 1.95215L10.4756 3.95215ZM6 11.1611L10 12.7617V4.83887L6 3.23828V11.1611ZM2 4.80859V12.7197L5 11.1934V3.30859L2 4.80859Z", key: "a" }),
|
|
6
|
-
createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M13.7363 1.69238C13.9663 1.69241 14.183 1.72554 14.3857 1.79199C14.5901 1.85845 14.7698 1.95379 14.9248 2.07812C15.0816 2.20085 15.2043 2.34836 15.293 2.52051C15.3816 2.69096 15.4258 2.88264 15.4258 3.0957C15.4275 3.33604 15.3669 3.57042 15.2441 3.79883C15.1628 3.95224 15.0539 4.08489 14.9219 4.20215C15.1567 4.33992 15.336 4.51932 15.459 4.74219C15.5885 4.97401 15.6531 5.22752 15.6514 5.50195C15.653 5.80525 15.5816 6.07442 15.4385 6.30957C15.2953 6.54302 15.1021 6.72645 14.8584 6.85938C14.6147 6.99059 14.3417 7.05664 14.04 7.05664C13.8629 7.05661 13.6889 7.02937 13.5186 6.97656C13.3483 6.92373 13.1892 6.83102 13.041 6.69824L13.0078 6.71387V8.47266H12V3.28027C12.0017 2.95824 12.0791 2.67828 12.2324 2.44141C12.3875 2.20277 12.5969 2.01822 12.8594 1.88867C13.1218 1.75753 13.4143 1.69238 13.7363 1.69238ZM13.7363 2.60254C13.5983 2.60254 13.4731 2.6315 13.3623 2.68945C13.2534 2.7474 13.1662 2.83175 13.1016 2.94238C13.0386 3.05135 13.0079 3.18427 13.0078 3.34082V5.37891C13.0078 5.52375 13.0398 5.65757 13.1045 5.78027C13.171 5.9013 13.2659 5.99775 13.3887 6.06934C13.5113 6.14083 13.659 6.17676 13.8311 6.17676C13.9979 6.17671 14.143 6.14358 14.2656 6.07715C14.3881 6.00905 14.4824 5.91769 14.5488 5.80371C14.617 5.68782 14.6514 5.55967 14.6514 5.41992C14.6514 5.26992 14.6143 5.13912 14.541 5.02832C14.4678 4.91774 14.3696 4.83302 14.2471 4.77344C14.1244 4.71213 13.9875 4.68068 13.8359 4.68066H13.4854V3.91602H13.7207C13.8929 3.91602 14.0305 3.88263 14.1328 3.81445C14.235 3.74459 14.3082 3.65788 14.3525 3.55566C14.3985 3.4518 14.4206 3.34949 14.4189 3.24902C14.4206 3.0616 14.3585 2.90713 14.2324 2.78613C14.108 2.66345 13.9425 2.60259 13.7363 2.60254Z", key: "b" }),
|
|
7
|
-
]);
|
|
8
|
-
|
|
9
|
-
MapBBetaTop.displayName = 'MapBBetaTop';
|
|
10
|
-
export { MapBBetaTop };
|
package/dist/svg/Lightning.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const Lightning: string;
|
package/dist/svg/Lightning.mjs
DELETED
|
@@ -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>";
|
package/dist/svg/MapA.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const MapA: string;
|
package/dist/svg/MapA.mjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const MapA = "<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=\"M10 4.5C10 3.67157 10.6716 3 11.5 3C12.3284 3 13 3.67157 13 4.5C13 5.32843 12.3284 6 11.5 6C10.6716 6 10 5.32843 10 4.5ZM11.5 4C11.2239 4 11 4.22386 11 4.5C11 4.77614 11.2239 5 11.5 5C11.7761 5 12 4.77614 12 4.5C12 4.22386 11.7761 4 11.5 4Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 4.47744C8 2.55335 9.57057 1 11.5 1C13.4294 1 15 2.55335 15 4.47744C15 5.36783 14.6626 6.18062 14.1094 6.79506L12.1664 9H10.8336L8.89059 6.79505C8.33743 6.18061 8 5.36782 8 4.47744ZM11.5 2C10.1157 2 9 3.11274 9 4.47744C9 5.11115 9.23947 5.68872 9.63521 6.12755L9.63905 6.13182L11.5 8.24372L13.3648 6.12753C13.7605 5.6887 14 5.11115 14 4.47744C14 3.11274 12.8843 2 11.5 2Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 3H1V14H15V8H14V13H13.2071L4.20714 4H7V3ZM2.79292 4H2V12.2929L6.5429 7.74998L2.79292 4ZM11.7929 13L7.25001 8.45708L2.70709 13H11.7929Z\" fill=\"currentColor\"/></svg>";
|
package/dist/svg/MapB.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const MapB: string;
|
package/dist/svg/MapB.mjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const MapB = "<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.2959 2.01619L10.4757 3.95177L5.47722 1.95236L1 4.19097V13.2864L1.70531 13.9917L5.52474 12.0484L10.5228 14.0476L15 11.809V2.72033L14.2959 2.01619ZM11 4.80717L14 3.28714V11.191L11 12.691V4.80717ZM10 4.83851L6 3.23851V11.1615L10 12.7615V4.83851ZM5 11.1934V3.30901L2 4.80901V12.7198L5 11.1934Z\" fill=\"currentColor\"/></svg>";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const MapBBetaBottom: string;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const MapBBetaBottom = "<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=\"M2.23633 7.69238C2.46635 7.69241 2.68297 7.72554 2.88574 7.79199C3.09012 7.85845 3.26979 7.95379 3.4248 8.07812C3.58162 8.20085 3.70433 8.34836 3.79297 8.52051C3.8816 8.69096 3.92578 8.88264 3.92578 9.0957C3.92749 9.33604 3.86687 9.57042 3.74414 9.79883C3.66283 9.95224 3.55395 10.0849 3.42188 10.2021C3.65673 10.3399 3.83602 10.5193 3.95898 10.7422C4.08853 10.974 4.15307 11.2275 4.15137 11.502C4.15303 11.8052 4.08161 12.0744 3.93848 12.3096C3.7953 12.543 3.60209 12.7264 3.3584 12.8594C3.11468 12.9906 2.8417 13.0566 2.54004 13.0566C2.36287 13.0566 2.18891 13.0294 2.01855 12.9766C1.84829 12.9237 1.68917 12.831 1.54102 12.6982L1.50781 12.7139V14.4727H0.5V9.28027C0.501704 8.95824 0.579135 8.67828 0.732422 8.44141C0.887536 8.20277 1.09688 8.01822 1.35938 7.88867C1.62179 7.75753 1.9143 7.69238 2.23633 7.69238ZM2.23633 8.60254C2.09826 8.60254 1.9731 8.6315 1.8623 8.68945C1.75344 8.7474 1.66624 8.83175 1.60156 8.94238C1.53864 9.05135 1.50786 9.18427 1.50781 9.34082V11.3789C1.50781 11.5238 1.53975 11.6576 1.60449 11.7803C1.67097 11.9013 1.76594 11.9977 1.88867 12.0693C2.01135 12.1408 2.15902 12.1768 2.33105 12.1768C2.49794 12.1767 2.64299 12.1436 2.76562 12.0771C2.88815 12.0091 2.98239 11.9177 3.04883 11.8037C3.117 11.6878 3.15136 11.5597 3.15137 11.4199C3.15137 11.2699 3.11431 11.1391 3.04102 11.0283C2.96775 10.9177 2.86963 10.833 2.74707 10.7734C2.62441 10.7121 2.48754 10.6807 2.33594 10.6807H1.98535V9.91602H2.2207C2.39286 9.91602 2.53054 9.88264 2.63281 9.81445C2.735 9.74459 2.80824 9.65788 2.85254 9.55566C2.89846 9.4518 2.92065 9.34949 2.91895 9.24902C2.92063 9.0616 2.85849 8.90712 2.73242 8.78613C2.60804 8.66346 2.44246 8.60259 2.23633 8.60254Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.4756 3.95215L14.2959 2.0166L15 2.7207V11.8086L10.5225 14.0479L5.52441 12.0488L5 11.8047V3.30859L2 4.80859V7H1V4.19141L5.47754 1.95215L10.4756 3.95215ZM6 11.1611L10 12.7617V4.83887L6 3.23828V11.1611ZM11 4.80762V12.6914L14 11.1914V3.28711L11 4.80762Z\" fill=\"currentColor\"/></svg>";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const MapBBetaTop: string;
|
package/dist/svg/MapBBetaTop.mjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const MapBBetaTop = "<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=\"M10.4756 3.95215L11 4.17578V12.6914L14 11.1914V8H15V11.8086L10.5225 14.0479L5.52441 12.0488L1.70508 13.9922L1 13.2861V4.19141L5.47754 1.95215L10.4756 3.95215ZM6 11.1611L10 12.7617V4.83887L6 3.23828V11.1611ZM2 4.80859V12.7197L5 11.1934V3.30859L2 4.80859Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.7363 1.69238C13.9663 1.69241 14.183 1.72554 14.3857 1.79199C14.5901 1.85845 14.7698 1.95379 14.9248 2.07812C15.0816 2.20085 15.2043 2.34836 15.293 2.52051C15.3816 2.69096 15.4258 2.88264 15.4258 3.0957C15.4275 3.33604 15.3669 3.57042 15.2441 3.79883C15.1628 3.95224 15.0539 4.08489 14.9219 4.20215C15.1567 4.33992 15.336 4.51932 15.459 4.74219C15.5885 4.97401 15.6531 5.22752 15.6514 5.50195C15.653 5.80525 15.5816 6.07442 15.4385 6.30957C15.2953 6.54302 15.1021 6.72645 14.8584 6.85938C14.6147 6.99059 14.3417 7.05664 14.04 7.05664C13.8629 7.05661 13.6889 7.02937 13.5186 6.97656C13.3483 6.92373 13.1892 6.83102 13.041 6.69824L13.0078 6.71387V8.47266H12V3.28027C12.0017 2.95824 12.0791 2.67828 12.2324 2.44141C12.3875 2.20277 12.5969 2.01822 12.8594 1.88867C13.1218 1.75753 13.4143 1.69238 13.7363 1.69238ZM13.7363 2.60254C13.5983 2.60254 13.4731 2.6315 13.3623 2.68945C13.2534 2.7474 13.1662 2.83175 13.1016 2.94238C13.0386 3.05135 13.0079 3.18427 13.0078 3.34082V5.37891C13.0078 5.52375 13.0398 5.65757 13.1045 5.78027C13.171 5.9013 13.2659 5.99775 13.3887 6.06934C13.5113 6.14083 13.659 6.17676 13.8311 6.17676C13.9979 6.17671 14.143 6.14358 14.2656 6.07715C14.3881 6.00905 14.4824 5.91769 14.5488 5.80371C14.617 5.68782 14.6514 5.55967 14.6514 5.41992C14.6514 5.26992 14.6143 5.13912 14.541 5.02832C14.4678 4.91774 14.3696 4.83302 14.2471 4.77344C14.1244 4.71213 13.9875 4.68068 13.8359 4.68066H13.4854V3.91602H13.7207C13.8929 3.91602 14.0305 3.88263 14.1328 3.81445C14.235 3.74459 14.3082 3.65788 14.3525 3.55566C14.3985 3.4518 14.4206 3.34949 14.4189 3.24902C14.4206 3.0616 14.3585 2.90713 14.2324 2.78613C14.108 2.66345 13.9425 2.60259 13.7363 2.60254Z\" fill=\"currentColor\"/></svg>";
|