@ds-mo/icons 0.1.0 → 0.3.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 +5 -1
- package/dist/icons/AI.mjs +4 -4
- package/dist/icons/{AUX1.d.ts → AUX.d.ts} +1 -1
- package/dist/icons/{AUX1.mjs → AUX.mjs} +3 -3
- package/dist/icons/ArrowDown.mjs +1 -1
- package/dist/icons/ArrowUp.mjs +1 -1
- package/dist/icons/Bell.mjs +1 -1
- package/dist/icons/BellCircle.mjs +2 -2
- package/dist/icons/BellExclamation.mjs +1 -1
- package/dist/icons/BellRinging.mjs +3 -3
- package/dist/icons/BellWifi.mjs +4 -4
- package/dist/icons/Check.mjs +1 -1
- package/dist/icons/{ArrowDownUI.d.ts → CheckDouble.d.ts} +1 -1
- package/dist/icons/{CheckDoubleUI.mjs → CheckDouble.mjs} +3 -3
- package/dist/icons/{CheckDoubleUI.d.ts → ChevronUpDown.d.ts} +1 -1
- package/dist/icons/{ChevronUpDownUI.mjs → ChevronUpDown.mjs} +3 -3
- package/dist/icons/{PauseUI.d.ts → Cross.d.ts} +1 -1
- package/dist/icons/Cross.mjs +9 -0
- package/dist/icons/GaugeTemperature.d.ts +2 -0
- package/dist/icons/{GuageTemperature.mjs → GaugeTemperature.mjs} +3 -3
- package/dist/icons/Minimize.d.ts +2 -0
- package/dist/icons/{MinimizeUI.mjs → Minimize.mjs} +3 -3
- package/dist/icons/{CrossUI.d.ts → Pause.d.ts} +1 -1
- package/dist/icons/{PauseUI.mjs → Pause.mjs} +3 -3
- package/dist/icons/PauseFilled.d.ts +2 -0
- package/dist/icons/{PauseUIFilled.mjs → PauseFilled.mjs} +3 -3
- package/dist/icons/{CheckUI.d.ts → Volume.d.ts} +1 -1
- package/dist/icons/{VolumeUI.mjs → Volume.mjs} +3 -3
- package/dist/icons/VolumeFilled.d.ts +2 -0
- package/dist/icons/{VolumeUIFilled.mjs → VolumeFilled.mjs} +3 -3
- package/dist/icons/{ArrowUpUI.d.ts → VolumeMute.d.ts} +1 -1
- package/dist/icons/{VolumeMuteUI.mjs → VolumeMute.mjs} +3 -3
- package/dist/icons/VolumeMuteFilled.d.ts +2 -0
- package/dist/icons/{VolumeMuteUIFilled.mjs → VolumeMuteFilled.mjs} +3 -3
- package/dist/index.d.ts +12 -15
- package/dist/index.mjs +12 -15
- package/dist/meta.d.ts +14 -0
- package/dist/meta.json +3411 -0
- package/dist/meta.mjs +2 -0
- package/dist/sprite.svg +38 -47
- package/package.json +12 -2
- package/dist/icons/ArrowDownUI.mjs +0 -9
- package/dist/icons/ArrowUpUI.mjs +0 -9
- package/dist/icons/CheckUI.mjs +0 -9
- package/dist/icons/ChevronUpDownUI.d.ts +0 -2
- package/dist/icons/CrossUI.mjs +0 -9
- package/dist/icons/GuageTemperature.d.ts +0 -2
- package/dist/icons/MinimizeUI.d.ts +0 -2
- package/dist/icons/PauseUIFilled.d.ts +0 -2
- package/dist/icons/VolumeMuteUI.d.ts +0 -2
- package/dist/icons/VolumeMuteUIFilled.d.ts +0 -2
- package/dist/icons/VolumeUI.d.ts +0 -2
- package/dist/icons/VolumeUIFilled.d.ts +0 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @ds-mo/icons
|
|
2
2
|
|
|
3
|
-
IcoMo —
|
|
3
|
+
IcoMo — 377 SVG icons as tree-shakeable React components, TypeScript definitions, and SVG sprite.
|
|
4
4
|
|
|
5
5
|
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).
|
|
6
6
|
|
|
@@ -16,6 +16,10 @@ pnpm add @ds-mo/icons
|
|
|
16
16
|
|
|
17
17
|
React is a peer dependency — make sure it's installed in your project.
|
|
18
18
|
|
|
19
|
+
## Icon browser
|
|
20
|
+
|
|
21
|
+
Browse and search all icons at the [GitHub Pages icon browser](https://zainadeel.github.io/icomo/). Includes a live search, size slider, and click-to-copy import statements.
|
|
22
|
+
|
|
19
23
|
## Usage
|
|
20
24
|
|
|
21
25
|
### React components
|
package/dist/icons/AI.mjs
CHANGED
|
@@ -3,13 +3,13 @@ import { createIcon } from '../createIcon.mjs';
|
|
|
3
3
|
|
|
4
4
|
const AI = createIcon('ai', [
|
|
5
5
|
createElement('path', { d: 'M8.5 14.5H7.5V9H8.5V14.5Z', key: 'a' }),
|
|
6
|
-
createElement('path', { d: '
|
|
7
|
-
createElement('path', { d: '
|
|
6
|
+
createElement('path', { d: 'M6.58594 10.1211L3.75781 12.9502L3.0498 12.2422L5.87891 9.41406L6.58594 10.1211Z', key: 'b' }),
|
|
7
|
+
createElement('path', { d: 'M12.9502 12.2422L12.2422 12.9502L9.41406 10.1211L10.1211 9.41406L12.9502 12.2422Z', key: 'c' }),
|
|
8
8
|
createElement('path', { d: 'M7 8.5H1.5V7.5H7V8.5Z', key: 'd' }),
|
|
9
9
|
createElement('path', { d: 'M14.5 8.5H9V7.5H14.5V8.5Z', key: 'e' }),
|
|
10
10
|
createElement('path', { d: 'M8.5 7H7.5V1.5H8.5V7Z', key: 'f' }),
|
|
11
|
-
createElement('path', { d: '
|
|
12
|
-
createElement('path', { d: '
|
|
11
|
+
createElement('path', { d: 'M6.58594 5.87891L5.87891 6.58594L3.0498 3.75781L3.75781 3.0498L6.58594 5.87891Z', key: 'g' }),
|
|
12
|
+
createElement('path', { d: 'M12.9502 3.75781L10.1211 6.58594L9.41406 5.87891L12.2422 3.0498L12.9502 3.75781Z', key: 'h' }),
|
|
13
13
|
]);
|
|
14
14
|
|
|
15
15
|
AI.displayName = 'AI';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IconComponent } from '../createIcon.mjs';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const AUX: IconComponent;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const AUX = createIcon('aux', [
|
|
5
5
|
createElement('path', { d: 'M5 6C5.52506 6 6.03551 6.11782 6.49757 6.33657L6.6 6.2C6.77319 5.96908 6.96282 5.75401 7.16661 5.55592C6.51131 5.19596 5.7678 5 5 5H1.5V8H5C5.15738 8 5.30557 7.9259 5.4 7.8L5.88001 7.15999C5.60216 7.05548 5.30452 7 5 7H2.5V6H5Z', key: 'a' }),
|
|
6
6
|
createElement('path', { d: 'M8.83339 11.4441C9.03718 11.246 9.22681 11.0309 9.4 10.8L9.50243 10.6634C9.96449 10.8822 10.4749 11 11 11H12.5V10H11C10.6955 10 10.3978 9.94452 10.12 9.84001L10.6 9.2C10.6944 9.0741 10.8426 9 11 9H13.5V10H14.5V11H13.5V12H11C10.2322 12 9.48869 11.804 8.83339 11.4441Z', key: 'b' }),
|
|
7
7
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M2.5 9V12H5C6.41641 12 7.75016 11.3331 8.6 10.2L9.8 8.6C10.0833 8.22229 10.5279 8 11 8H12.5V7H13.5V6H12.5V5H11C9.58359 5 8.24984 5.66687 7.4 6.8L6.2 8.4C5.91672 8.77771 5.47214 9 5 9H2.5ZM3.5 10H5C5.78689 10 6.52786 9.62951 7 9L8.2 7.4C8.86099 6.51868 9.89835 6 11 6H11.5V7H11C10.2131 7 9.47214 7.37048 9 8L7.8 9.6C7.13901 10.4813 6.10165 11 5 11H3.5V10Z', key: 'c' }),
|
|
8
8
|
]);
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
export {
|
|
10
|
+
AUX.displayName = 'AUX';
|
|
11
|
+
export { AUX };
|
package/dist/icons/ArrowDown.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { createElement } from 'react';
|
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
4
|
const ArrowDown = createIcon('arrow-down', [
|
|
5
|
-
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M8.49986
|
|
5
|
+
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M8.49986 11.5781L11.4313 8.6466L12.1384 9.35371L8.49215 13H7.50762L3.86133 9.35371L4.56843 8.6466L7.49986 11.578L7.49986 3H8.49986L8.49986 11.5781Z', key: 'a' }),
|
|
6
6
|
]);
|
|
7
7
|
|
|
8
8
|
ArrowDown.displayName = 'ArrowDown';
|
package/dist/icons/ArrowUp.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { createElement } from 'react';
|
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
4
|
const ArrowUp = createIcon('arrow-up', [
|
|
5
|
-
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: '
|
|
5
|
+
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M8.49986 4.42193L11.4313 7.3534L12.1384 6.64629L8.49215 3H7.50762L3.86133 6.64629L4.56843 7.3534L7.49986 4.42197L7.49986 13H8.49986L8.49986 4.42193Z', key: 'a' }),
|
|
6
6
|
]);
|
|
7
7
|
|
|
8
8
|
ArrowUp.displayName = 'ArrowUp';
|
package/dist/icons/Bell.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { createElement } from 'react';
|
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
4
|
const Bell = createIcon('bell', [
|
|
5
|
-
createElement('path', {
|
|
5
|
+
createElement('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', key: 'a' }),
|
|
6
6
|
]);
|
|
7
7
|
|
|
8
8
|
Bell.displayName = 'Bell';
|
|
@@ -2,8 +2,8 @@ import { createElement } from 'react';
|
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
4
|
const BellCircle = createIcon('bell-circle', [
|
|
5
|
-
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: '
|
|
6
|
-
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: '
|
|
5
|
+
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M8 3C6.067 3 4.5 4.567 4.5 6.5V8.70703L3.20703 10L4.20703 11H11.793L12.793 10L11.5 8.70703V8H12.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 2V3ZM7 12C7 12.5523 7.44772 13 8 13C8.55228 13 9 12.5523 9 12H7Z', key: 'a' }),
|
|
6
|
+
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M11.5 2C12.8807 2 14 3.11929 14 4.5C14 5.88071 12.8807 7 11.5 7C10.1193 7 9 5.88071 9 4.5C9 3.11929 10.1193 2 11.5 2ZM11.5 3C10.6716 3 10 3.67157 10 4.5C10 5.32843 10.6716 6 11.5 6C12.3284 6 13 5.32843 13 4.5C13 3.67157 12.3284 3 11.5 3Z', key: 'b' }),
|
|
7
7
|
]);
|
|
8
8
|
|
|
9
9
|
BellCircle.displayName = 'BellCircle';
|
|
@@ -4,7 +4,7 @@ import { createIcon } from '../createIcon.mjs';
|
|
|
4
4
|
const BellExclamation = createIcon('bell-exclamation', [
|
|
5
5
|
createElement('path', { d: 'M7.5 8V4H8.5V8H7.5Z', key: 'a' }),
|
|
6
6
|
createElement('path', { d: 'M7.5 10V9H8.5V10H7.5Z', key: 'b' }),
|
|
7
|
-
createElement('path', {
|
|
7
|
+
createElement('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', key: 'c' }),
|
|
8
8
|
]);
|
|
9
9
|
|
|
10
10
|
BellExclamation.displayName = 'BellExclamation';
|
|
@@ -2,9 +2,9 @@ import { createElement } from 'react';
|
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
4
|
const BellRinging = createIcon('bell-ringing', [
|
|
5
|
-
createElement('path', { d: '
|
|
6
|
-
createElement('path', { d: '
|
|
7
|
-
createElement('path', {
|
|
5
|
+
createElement('path', { fillRule: 'evenodd', clipRule: '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', key: 'a' }),
|
|
6
|
+
createElement('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', key: 'b' }),
|
|
7
|
+
createElement('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', key: 'c' }),
|
|
8
8
|
]);
|
|
9
9
|
|
|
10
10
|
BellRinging.displayName = 'BellRinging';
|
package/dist/icons/BellWifi.mjs
CHANGED
|
@@ -2,10 +2,10 @@ import { createElement } from 'react';
|
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
4
|
const BellWifi = createIcon('bell-wifi', [
|
|
5
|
-
createElement('path', { d: '
|
|
6
|
-
createElement('path', { d: 'M9
|
|
7
|
-
createElement('path', { d: 'M9
|
|
8
|
-
createElement('path', {
|
|
5
|
+
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M8 3C6.067 3 4.5 4.567 4.5 6.5V8.70703L3.20703 10L4.20703 11H11.793L12.793 10L11.5 8.70703V8H12.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 2V3ZM7 12C7 12.5523 7.44772 13 8 13C8.55228 13 9 12.5523 9 12H7Z', key: 'a' }),
|
|
6
|
+
createElement('path', { d: 'M9 2C11.7614 2 14 4.23858 14 7H15C15 3.68629 12.3137 1 9 1V2Z', key: 'b' }),
|
|
7
|
+
createElement('path', { d: 'M9 4C10.6569 4 12 5.34315 12 7H13C13 4.79086 11.2091 3 9 3V4Z', key: 'c' }),
|
|
8
|
+
createElement('path', { d: 'M9 6C9.55229 6 10 6.44772 10 7H11C11 5.89543 10.1046 5 9 5V6Z', key: 'd' }),
|
|
9
9
|
]);
|
|
10
10
|
|
|
11
11
|
BellWifi.displayName = 'BellWifi';
|
package/dist/icons/Check.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { createElement } from 'react';
|
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
4
|
const Check = createIcon('check', [
|
|
5
|
-
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: '
|
|
5
|
+
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M13.3536 4.35356L6.00004 11.7071L2.64648 8.35356L3.35359 7.64645L6.00004 10.2929L12.6465 3.64645L13.3536 4.35356Z', key: 'a' }),
|
|
6
6
|
]);
|
|
7
7
|
|
|
8
8
|
Check.displayName = 'Check';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IconComponent } from '../createIcon.mjs';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const CheckDouble: IconComponent;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const CheckDouble = createIcon('check-double', [
|
|
5
5
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M11.3536 4.35356L4.00004 11.7071L0.646484 8.35356L1.35359 7.64645L4.00004 10.2929L10.6465 3.64645L11.3536 4.35356Z', key: 'a' }),
|
|
6
6
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M15.3536 4.35356L8.00004 11.7071L6.64648 10.3536L7.35359 9.64645L8.00004 10.2929L14.6465 3.64645L15.3536 4.35356Z', key: 'b' }),
|
|
7
7
|
]);
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
export {
|
|
9
|
+
CheckDouble.displayName = 'CheckDouble';
|
|
10
|
+
export { CheckDouble };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IconComponent } from '../createIcon.mjs';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const ChevronUpDown: IconComponent;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const ChevronUpDown = createIcon('chevron-up-down', [
|
|
5
5
|
createElement('path', { d: 'M4.64657 5.2929L5.35368 6.00001L8.00014 3.35364L10.6465 6.00001L11.3536 5.2929L8.49473 2.43402H7.50555L4.64657 5.2929Z', key: 'a' }),
|
|
6
6
|
createElement('path', { d: 'M4.50537 10.7071L5.21248 10L8.00023 12.7876L10.7878 10L11.4949 10.7071L8.49482 13.7072H7.50564L4.50537 10.7071Z', key: 'b' }),
|
|
7
7
|
]);
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
export {
|
|
9
|
+
ChevronUpDown.displayName = 'ChevronUpDown';
|
|
10
|
+
export { ChevronUpDown };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IconComponent } from '../createIcon.mjs';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const Cross: IconComponent;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { createElement } from 'react';
|
|
2
|
+
import { createIcon } from '../createIcon.mjs';
|
|
3
|
+
|
|
4
|
+
const Cross = createIcon('cross', [
|
|
5
|
+
createElement('path', { d: 'M4.11092 3.40381L8 7.2929L11.8891 3.40381L12.5962 4.11092L8.70711 8L12.5962 11.8891L11.8891 12.5962L8 8.70711L4.11092 12.5962L3.40381 11.8891L7.2929 8L3.40381 4.11092L4.11092 3.40381Z', key: 'a' }),
|
|
6
|
+
]);
|
|
7
|
+
|
|
8
|
+
Cross.displayName = 'Cross';
|
|
9
|
+
export { Cross };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const GaugeTemperature = createIcon('gauge-temperature', [
|
|
5
5
|
createElement('path', { d: 'M7.5 4H8.5V10.1338C8.7989 10.3067 9 10.6299 9 11C9 11.5523 8.55228 12 8 12C7.44772 12 7 11.5523 7 11C7 10.6299 7.2011 10.3067 7.5 10.1338V4Z', key: 'a' }),
|
|
6
6
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M7 2C6.17157 2 5.5 2.67157 5.5 3.5V9.34146C5.18426 9.81659 5 10.3873 5 11C5 12.6569 6.34315 14 8 14C9.65685 14 11 12.6569 11 11C11 10.3873 10.8158 9.81644 10.5 9.3412V3.5C10.5 2.67157 9.82843 2 9 2H7ZM6.5 3.5C6.5 3.22386 6.72386 3 7 3H9C9.27614 3 9.5 3.22386 9.5 3.5V9.66666L9.60025 9.80009C9.85138 10.1343 10 10.5491 10 11C10 12.1046 9.10457 13 8 13C6.89543 13 6 12.1046 6 11C6 10.5492 6.14864 10.1346 6.39977 9.80031L6.5 9.66688V3.5Z', key: 'b' }),
|
|
7
7
|
]);
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
export {
|
|
9
|
+
GaugeTemperature.displayName = 'GaugeTemperature';
|
|
10
|
+
export { GaugeTemperature };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const Minimize = createIcon('minimize', [
|
|
5
5
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M14 13H2V12H14V13Z', key: 'a' }),
|
|
6
6
|
]);
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
export {
|
|
8
|
+
Minimize.displayName = 'Minimize';
|
|
9
|
+
export { Minimize };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IconComponent } from '../createIcon.mjs';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const Pause: IconComponent;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const Pause = createIcon('pause', [
|
|
5
5
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M3 2H7V14H3V2ZM4 3V13H6V3H4Z', key: 'a' }),
|
|
6
6
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M13 2H9V14H13V2ZM10 13V3H12V13H10Z', key: 'b' }),
|
|
7
7
|
]);
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
export {
|
|
9
|
+
Pause.displayName = 'Pause';
|
|
10
|
+
export { Pause };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const PauseFilled = createIcon('pause-filled', [
|
|
5
5
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M3 2H7V14H3V2Z', key: 'a' }),
|
|
6
6
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M13 2H9V14H13V2Z', key: 'b' }),
|
|
7
7
|
]);
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
export {
|
|
9
|
+
PauseFilled.displayName = 'PauseFilled';
|
|
10
|
+
export { PauseFilled };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IconComponent } from '../createIcon.mjs';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const Volume: IconComponent;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const Volume = createIcon('volume', [
|
|
5
5
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M9 4.61802C9 3.50295 7.82653 2.77771 6.82918 3.27638L1 6.19097V9.80901L6.82918 12.7236C7.82653 13.2223 9 12.497 9 11.382V4.61802ZM7.27639 4.17081C7.60884 4.00459 8 4.24633 8 4.61802V11.382C8 11.7536 7.60884 11.9954 7.27639 11.8292L2 9.19097V6.80901L7.27639 4.17081Z', key: 'a' }),
|
|
6
6
|
createElement('path', { d: 'M11.2841 11.2841C12.3213 10.5614 13 9.35997 13 7.99999C13 6.64002 12.3213 5.43857 11.2841 4.71586L10.5619 5.43813C11.4243 5.96507 12 6.9153 12 7.99999C12 9.08468 11.4243 10.0349 10.5619 10.5619L11.2841 11.2841Z', key: 'b' }),
|
|
7
7
|
createElement('path', { d: 'M14 8C14 6.36427 13.2145 4.912 12.0002 3.99979L12.7133 3.28674C14.106 4.38549 15 6.08834 15 8C15 9.91165 14.106 11.6145 12.7133 12.7132L12.0002 12.0002C13.2145 11.088 14 9.63572 14 8Z', key: 'c' }),
|
|
8
8
|
]);
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
export {
|
|
10
|
+
Volume.displayName = 'Volume';
|
|
11
|
+
export { Volume };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const VolumeFilled = createIcon('volume-filled', [
|
|
5
5
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M9 4.61802C9 3.50295 7.82653 2.77771 6.82918 3.27638L1 6.19097V9.80901L6.82918 12.7236C7.82653 13.2223 9 12.497 9 11.382V4.61802Z', key: 'a' }),
|
|
6
6
|
createElement('path', { d: 'M11.2841 11.2841C12.3213 10.5614 13 9.35997 13 7.99999C13 6.64002 12.3213 5.43857 11.2841 4.71586L10.5619 5.43813C11.4243 5.96507 12 6.9153 12 7.99999C12 9.08468 11.4243 10.0349 10.5619 10.5619L11.2841 11.2841Z', key: 'b' }),
|
|
7
7
|
createElement('path', { d: 'M14 8C14 6.36427 13.2145 4.912 12.0002 3.99979L12.7133 3.28674C14.106 4.38549 15 6.08834 15 8C15 9.91165 14.106 11.6145 12.7133 12.7132L12.0002 12.0002C13.2145 11.088 14 9.63572 14 8Z', key: 'c' }),
|
|
8
8
|
]);
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
export {
|
|
10
|
+
VolumeFilled.displayName = 'VolumeFilled';
|
|
11
|
+
export { VolumeFilled };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IconComponent } from '../createIcon.mjs';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const VolumeMute: IconComponent;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const VolumeMute = createIcon('volume-mute', [
|
|
5
5
|
createElement('path', { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M3.98929 11.3037L1.14645 14.1465L1.85356 14.8536L14.8536 1.85359L14.1465 1.14648L9 6.29294V4.61802C9 3.50295 7.82653 2.77771 6.82918 3.27638L1 6.19097V9.80901L3.98929 11.3037ZM4.73464 10.5583L2 9.19097V6.80901L7.27639 4.17081C7.60884 4.00459 8 4.24633 8 4.61802V7.29294L4.73464 10.5583Z', key: 'a' }),
|
|
6
6
|
createElement('path', { d: 'M7.27639 11.8292L6.62023 11.5011L5.87488 12.2464L6.82918 12.7236C7.82653 13.2223 9 12.497 9 11.382V9.12132L8 10.1213V11.382C8 11.7536 7.60884 11.9954 7.27639 11.8292Z', key: 'b' }),
|
|
7
7
|
createElement('path', { d: 'M11.6069 6.51439C11.8571 6.95238 12 7.4595 12 7.99999C12 9.08468 11.4243 10.0349 10.5619 10.5619L11.2841 11.2841C12.3213 10.5614 13 9.35997 13 7.99999C13 7.18213 12.7545 6.4216 12.3333 5.78804L11.6069 6.51439Z', key: 'c' }),
|
|
8
8
|
createElement('path', { d: 'M14 8C14 6.90544 13.6483 5.89302 13.0517 5.0696L13.7663 4.35501C14.5402 5.36539 15 6.62899 15 8C15 9.91165 14.106 11.6145 12.7133 12.7132L12.0002 12.0002C13.2145 11.088 14 9.63572 14 8Z', key: 'd' }),
|
|
9
9
|
]);
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
export {
|
|
11
|
+
VolumeMute.displayName = 'VolumeMute';
|
|
12
|
+
export { VolumeMute };
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const VolumeMuteFilled = createIcon('volume-mute-filled', [
|
|
5
5
|
createElement('path', { d: 'M3.98926 11.3036L1.14645 14.1464L1.85355 14.8535L14.8536 1.85353L14.1464 1.14642L9 6.29287V4.618C9 3.50293 7.82653 2.77768 6.82918 3.27636L1 6.19095V9.80898L3.98926 11.3036Z', key: 'a' }),
|
|
6
6
|
createElement('path', { d: 'M6.82918 12.7236L5.87488 12.2464L9 9.1213V11.3819C9 12.497 7.82653 13.2222 6.82918 12.7236Z', key: 'b' }),
|
|
7
7
|
createElement('path', { d: 'M11.6069 6.51437C11.8571 6.95236 12 7.45947 12 7.99997C12 9.08466 11.4243 10.0349 10.5619 10.5618L11.2841 11.2841C12.3213 10.5614 13 9.35994 13 7.99997C13 7.18211 12.7545 6.42158 12.3333 5.78802L11.6069 6.51437Z', key: 'c' }),
|
|
8
8
|
createElement('path', { d: 'M14 7.99997C14 6.90541 13.6483 5.893 13.0517 5.06958L13.7663 4.35498C14.5402 5.36537 15 6.62897 15 7.99997C15 9.91163 14.106 11.6145 12.7133 12.7132L12.0002 12.0002C13.2145 11.088 14 9.6357 14 7.99997Z', key: 'd' }),
|
|
9
9
|
]);
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
export {
|
|
11
|
+
VolumeMuteFilled.displayName = 'VolumeMuteFilled';
|
|
12
|
+
export { VolumeMuteFilled };
|
package/dist/index.d.ts
CHANGED
|
@@ -6,16 +6,14 @@ export { AIChip } from './icons/AIChip.mjs';
|
|
|
6
6
|
export { AIDashcamPlus } from './icons/AIDashcamPlus.mjs';
|
|
7
7
|
export { AINew } from './icons/AINew.mjs';
|
|
8
8
|
export { AISparkle } from './icons/AISparkle.mjs';
|
|
9
|
-
export {
|
|
9
|
+
export { AUX } from './icons/AUX.mjs';
|
|
10
10
|
export { AUXFilled } from './icons/AUXFilled.mjs';
|
|
11
11
|
export { AndroidFilled } from './icons/AndroidFilled.mjs';
|
|
12
12
|
export { ArrowDown } from './icons/ArrowDown.mjs';
|
|
13
|
-
export { ArrowDownUI } from './icons/ArrowDownUI.mjs';
|
|
14
13
|
export { ArrowLeft } from './icons/ArrowLeft.mjs';
|
|
15
14
|
export { ArrowPath } from './icons/ArrowPath.mjs';
|
|
16
15
|
export { ArrowRight } from './icons/ArrowRight.mjs';
|
|
17
16
|
export { ArrowUp } from './icons/ArrowUp.mjs';
|
|
18
|
-
export { ArrowUpUI } from './icons/ArrowUpUI.mjs';
|
|
19
17
|
export { ArrowsDiagonal } from './icons/ArrowsDiagonal.mjs';
|
|
20
18
|
export { ArrowsDiff } from './icons/ArrowsDiff.mjs';
|
|
21
19
|
export { ArrowsDiffDisabled } from './icons/ArrowsDiffDisabled.mjs';
|
|
@@ -60,15 +58,14 @@ export { Chart } from './icons/Chart.mjs';
|
|
|
60
58
|
export { Check } from './icons/Check.mjs';
|
|
61
59
|
export { CheckCircle } from './icons/CheckCircle.mjs';
|
|
62
60
|
export { CheckCircleFilled } from './icons/CheckCircleFilled.mjs';
|
|
63
|
-
export {
|
|
64
|
-
export { CheckUI } from './icons/CheckUI.mjs';
|
|
61
|
+
export { CheckDouble } from './icons/CheckDouble.mjs';
|
|
65
62
|
export { ChevronDown } from './icons/ChevronDown.mjs';
|
|
66
63
|
export { ChevronLeft } from './icons/ChevronLeft.mjs';
|
|
67
64
|
export { ChevronLeftDouble } from './icons/ChevronLeftDouble.mjs';
|
|
68
65
|
export { ChevronRight } from './icons/ChevronRight.mjs';
|
|
69
66
|
export { ChevronRightDouble } from './icons/ChevronRightDouble.mjs';
|
|
70
67
|
export { ChevronUp } from './icons/ChevronUp.mjs';
|
|
71
|
-
export {
|
|
68
|
+
export { ChevronUpDown } from './icons/ChevronUpDown.mjs';
|
|
72
69
|
export { Circle } from './icons/Circle.mjs';
|
|
73
70
|
export { CircleArrow } from './icons/CircleArrow.mjs';
|
|
74
71
|
export { CircleArrowsDiff } from './icons/CircleArrowsDiff.mjs';
|
|
@@ -104,9 +101,9 @@ export { CoinStackGeneral } from './icons/CoinStackGeneral.mjs';
|
|
|
104
101
|
export { Compass } from './icons/Compass.mjs';
|
|
105
102
|
export { Copy } from './icons/Copy.mjs';
|
|
106
103
|
export { Crop } from './icons/Crop.mjs';
|
|
104
|
+
export { Cross } from './icons/Cross.mjs';
|
|
107
105
|
export { CrossCircle } from './icons/CrossCircle.mjs';
|
|
108
106
|
export { CrossCircleFilled } from './icons/CrossCircleFilled.mjs';
|
|
109
|
-
export { CrossUI } from './icons/CrossUI.mjs';
|
|
110
107
|
export { Cube } from './icons/Cube.mjs';
|
|
111
108
|
export { Cup } from './icons/Cup.mjs';
|
|
112
109
|
export { CursorPointer } from './icons/CursorPointer.mjs';
|
|
@@ -166,6 +163,7 @@ export { FuelPump } from './icons/FuelPump.mjs';
|
|
|
166
163
|
export { FullScreen } from './icons/FullScreen.mjs';
|
|
167
164
|
export { FullScreenExit } from './icons/FullScreenExit.mjs';
|
|
168
165
|
export { Gauge } from './icons/Gauge.mjs';
|
|
166
|
+
export { GaugeTemperature } from './icons/GaugeTemperature.mjs';
|
|
169
167
|
export { Gear } from './icons/Gear.mjs';
|
|
170
168
|
export { GearCheck } from './icons/GearCheck.mjs';
|
|
171
169
|
export { Geofence } from './icons/Geofence.mjs';
|
|
@@ -180,7 +178,6 @@ export { GraphBars } from './icons/GraphBars.mjs';
|
|
|
180
178
|
export { GraphDecreasing } from './icons/GraphDecreasing.mjs';
|
|
181
179
|
export { GraphIncreasing } from './icons/GraphIncreasing.mjs';
|
|
182
180
|
export { GroupBy } from './icons/GroupBy.mjs';
|
|
183
|
-
export { GuageTemperature } from './icons/GuageTemperature.mjs';
|
|
184
181
|
export { Hamburger } from './icons/Hamburger.mjs';
|
|
185
182
|
export { Headset } from './icons/Headset.mjs';
|
|
186
183
|
export { History } from './icons/History.mjs';
|
|
@@ -238,7 +235,7 @@ export { MessageBubbleStack } from './icons/MessageBubbleStack.mjs';
|
|
|
238
235
|
export { Messaging } from './icons/Messaging.mjs';
|
|
239
236
|
export { Mic } from './icons/Mic.mjs';
|
|
240
237
|
export { MicMute } from './icons/MicMute.mjs';
|
|
241
|
-
export {
|
|
238
|
+
export { Minimize } from './icons/Minimize.mjs';
|
|
242
239
|
export { Mobile } from './icons/Mobile.mjs';
|
|
243
240
|
export { Monitor } from './icons/Monitor.mjs';
|
|
244
241
|
export { Notification } from './icons/Notification.mjs';
|
|
@@ -254,8 +251,8 @@ export { PaperplaneMarker } from './icons/PaperplaneMarker.mjs';
|
|
|
254
251
|
export { PaperplaneSend } from './icons/PaperplaneSend.mjs';
|
|
255
252
|
export { Paragraph } from './icons/Paragraph.mjs';
|
|
256
253
|
export { ParagraphPencil } from './icons/ParagraphPencil.mjs';
|
|
257
|
-
export {
|
|
258
|
-
export {
|
|
254
|
+
export { Pause } from './icons/Pause.mjs';
|
|
255
|
+
export { PauseFilled } from './icons/PauseFilled.mjs';
|
|
259
256
|
export { Pencil } from './icons/Pencil.mjs';
|
|
260
257
|
export { PencilSquiggle } from './icons/PencilSquiggle.mjs';
|
|
261
258
|
export { Person } from './icons/Person.mjs';
|
|
@@ -364,10 +361,10 @@ export { VehicleTruck } from './icons/VehicleTruck.mjs';
|
|
|
364
361
|
export { VehicleTruckMagnifyingGlass } from './icons/VehicleTruckMagnifyingGlass.mjs';
|
|
365
362
|
export { Video } from './icons/Video.mjs';
|
|
366
363
|
export { ViewMenu } from './icons/ViewMenu.mjs';
|
|
367
|
-
export {
|
|
368
|
-
export {
|
|
369
|
-
export {
|
|
370
|
-
export {
|
|
364
|
+
export { Volume } from './icons/Volume.mjs';
|
|
365
|
+
export { VolumeFilled } from './icons/VolumeFilled.mjs';
|
|
366
|
+
export { VolumeMute } from './icons/VolumeMute.mjs';
|
|
367
|
+
export { VolumeMuteFilled } from './icons/VolumeMuteFilled.mjs';
|
|
371
368
|
export { WandSparkle } from './icons/WandSparkle.mjs';
|
|
372
369
|
export { Waveform } from './icons/Waveform.mjs';
|
|
373
370
|
export { Webhooks } from './icons/Webhooks.mjs';
|
package/dist/index.mjs
CHANGED
|
@@ -5,16 +5,14 @@ export { AIChip } from './icons/AIChip.mjs';
|
|
|
5
5
|
export { AIDashcamPlus } from './icons/AIDashcamPlus.mjs';
|
|
6
6
|
export { AINew } from './icons/AINew.mjs';
|
|
7
7
|
export { AISparkle } from './icons/AISparkle.mjs';
|
|
8
|
-
export {
|
|
8
|
+
export { AUX } from './icons/AUX.mjs';
|
|
9
9
|
export { AUXFilled } from './icons/AUXFilled.mjs';
|
|
10
10
|
export { AndroidFilled } from './icons/AndroidFilled.mjs';
|
|
11
11
|
export { ArrowDown } from './icons/ArrowDown.mjs';
|
|
12
|
-
export { ArrowDownUI } from './icons/ArrowDownUI.mjs';
|
|
13
12
|
export { ArrowLeft } from './icons/ArrowLeft.mjs';
|
|
14
13
|
export { ArrowPath } from './icons/ArrowPath.mjs';
|
|
15
14
|
export { ArrowRight } from './icons/ArrowRight.mjs';
|
|
16
15
|
export { ArrowUp } from './icons/ArrowUp.mjs';
|
|
17
|
-
export { ArrowUpUI } from './icons/ArrowUpUI.mjs';
|
|
18
16
|
export { ArrowsDiagonal } from './icons/ArrowsDiagonal.mjs';
|
|
19
17
|
export { ArrowsDiff } from './icons/ArrowsDiff.mjs';
|
|
20
18
|
export { ArrowsDiffDisabled } from './icons/ArrowsDiffDisabled.mjs';
|
|
@@ -59,15 +57,14 @@ export { Chart } from './icons/Chart.mjs';
|
|
|
59
57
|
export { Check } from './icons/Check.mjs';
|
|
60
58
|
export { CheckCircle } from './icons/CheckCircle.mjs';
|
|
61
59
|
export { CheckCircleFilled } from './icons/CheckCircleFilled.mjs';
|
|
62
|
-
export {
|
|
63
|
-
export { CheckUI } from './icons/CheckUI.mjs';
|
|
60
|
+
export { CheckDouble } from './icons/CheckDouble.mjs';
|
|
64
61
|
export { ChevronDown } from './icons/ChevronDown.mjs';
|
|
65
62
|
export { ChevronLeft } from './icons/ChevronLeft.mjs';
|
|
66
63
|
export { ChevronLeftDouble } from './icons/ChevronLeftDouble.mjs';
|
|
67
64
|
export { ChevronRight } from './icons/ChevronRight.mjs';
|
|
68
65
|
export { ChevronRightDouble } from './icons/ChevronRightDouble.mjs';
|
|
69
66
|
export { ChevronUp } from './icons/ChevronUp.mjs';
|
|
70
|
-
export {
|
|
67
|
+
export { ChevronUpDown } from './icons/ChevronUpDown.mjs';
|
|
71
68
|
export { Circle } from './icons/Circle.mjs';
|
|
72
69
|
export { CircleArrow } from './icons/CircleArrow.mjs';
|
|
73
70
|
export { CircleArrowsDiff } from './icons/CircleArrowsDiff.mjs';
|
|
@@ -103,9 +100,9 @@ export { CoinStackGeneral } from './icons/CoinStackGeneral.mjs';
|
|
|
103
100
|
export { Compass } from './icons/Compass.mjs';
|
|
104
101
|
export { Copy } from './icons/Copy.mjs';
|
|
105
102
|
export { Crop } from './icons/Crop.mjs';
|
|
103
|
+
export { Cross } from './icons/Cross.mjs';
|
|
106
104
|
export { CrossCircle } from './icons/CrossCircle.mjs';
|
|
107
105
|
export { CrossCircleFilled } from './icons/CrossCircleFilled.mjs';
|
|
108
|
-
export { CrossUI } from './icons/CrossUI.mjs';
|
|
109
106
|
export { Cube } from './icons/Cube.mjs';
|
|
110
107
|
export { Cup } from './icons/Cup.mjs';
|
|
111
108
|
export { CursorPointer } from './icons/CursorPointer.mjs';
|
|
@@ -165,6 +162,7 @@ export { FuelPump } from './icons/FuelPump.mjs';
|
|
|
165
162
|
export { FullScreen } from './icons/FullScreen.mjs';
|
|
166
163
|
export { FullScreenExit } from './icons/FullScreenExit.mjs';
|
|
167
164
|
export { Gauge } from './icons/Gauge.mjs';
|
|
165
|
+
export { GaugeTemperature } from './icons/GaugeTemperature.mjs';
|
|
168
166
|
export { Gear } from './icons/Gear.mjs';
|
|
169
167
|
export { GearCheck } from './icons/GearCheck.mjs';
|
|
170
168
|
export { Geofence } from './icons/Geofence.mjs';
|
|
@@ -179,7 +177,6 @@ export { GraphBars } from './icons/GraphBars.mjs';
|
|
|
179
177
|
export { GraphDecreasing } from './icons/GraphDecreasing.mjs';
|
|
180
178
|
export { GraphIncreasing } from './icons/GraphIncreasing.mjs';
|
|
181
179
|
export { GroupBy } from './icons/GroupBy.mjs';
|
|
182
|
-
export { GuageTemperature } from './icons/GuageTemperature.mjs';
|
|
183
180
|
export { Hamburger } from './icons/Hamburger.mjs';
|
|
184
181
|
export { Headset } from './icons/Headset.mjs';
|
|
185
182
|
export { History } from './icons/History.mjs';
|
|
@@ -237,7 +234,7 @@ export { MessageBubbleStack } from './icons/MessageBubbleStack.mjs';
|
|
|
237
234
|
export { Messaging } from './icons/Messaging.mjs';
|
|
238
235
|
export { Mic } from './icons/Mic.mjs';
|
|
239
236
|
export { MicMute } from './icons/MicMute.mjs';
|
|
240
|
-
export {
|
|
237
|
+
export { Minimize } from './icons/Minimize.mjs';
|
|
241
238
|
export { Mobile } from './icons/Mobile.mjs';
|
|
242
239
|
export { Monitor } from './icons/Monitor.mjs';
|
|
243
240
|
export { Notification } from './icons/Notification.mjs';
|
|
@@ -253,8 +250,8 @@ export { PaperplaneMarker } from './icons/PaperplaneMarker.mjs';
|
|
|
253
250
|
export { PaperplaneSend } from './icons/PaperplaneSend.mjs';
|
|
254
251
|
export { Paragraph } from './icons/Paragraph.mjs';
|
|
255
252
|
export { ParagraphPencil } from './icons/ParagraphPencil.mjs';
|
|
256
|
-
export {
|
|
257
|
-
export {
|
|
253
|
+
export { Pause } from './icons/Pause.mjs';
|
|
254
|
+
export { PauseFilled } from './icons/PauseFilled.mjs';
|
|
258
255
|
export { Pencil } from './icons/Pencil.mjs';
|
|
259
256
|
export { PencilSquiggle } from './icons/PencilSquiggle.mjs';
|
|
260
257
|
export { Person } from './icons/Person.mjs';
|
|
@@ -363,10 +360,10 @@ export { VehicleTruck } from './icons/VehicleTruck.mjs';
|
|
|
363
360
|
export { VehicleTruckMagnifyingGlass } from './icons/VehicleTruckMagnifyingGlass.mjs';
|
|
364
361
|
export { Video } from './icons/Video.mjs';
|
|
365
362
|
export { ViewMenu } from './icons/ViewMenu.mjs';
|
|
366
|
-
export {
|
|
367
|
-
export {
|
|
368
|
-
export {
|
|
369
|
-
export {
|
|
363
|
+
export { Volume } from './icons/Volume.mjs';
|
|
364
|
+
export { VolumeFilled } from './icons/VolumeFilled.mjs';
|
|
365
|
+
export { VolumeMute } from './icons/VolumeMute.mjs';
|
|
366
|
+
export { VolumeMuteFilled } from './icons/VolumeMuteFilled.mjs';
|
|
370
367
|
export { WandSparkle } from './icons/WandSparkle.mjs';
|
|
371
368
|
export { Waveform } from './icons/Waveform.mjs';
|
|
372
369
|
export { Webhooks } from './icons/Webhooks.mjs';
|