@tabler/icons-svelte 3.39.0 → 3.40.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.
Files changed (42) hide show
  1. package/dist/icons/api-book.svelte +6 -0
  2. package/dist/icons/api-book.svelte.d.ts +17 -0
  3. package/dist/icons/api.svelte +1 -1
  4. package/dist/icons/brand-infakt.svelte +6 -0
  5. package/dist/icons/brand-infakt.svelte.d.ts +17 -0
  6. package/dist/icons/circle-open-arrow-down.svelte +6 -0
  7. package/dist/icons/circle-open-arrow-down.svelte.d.ts +17 -0
  8. package/dist/icons/circle-open-arrow-left.svelte +6 -0
  9. package/dist/icons/circle-open-arrow-left.svelte.d.ts +17 -0
  10. package/dist/icons/circle-open-arrow-right.svelte +6 -0
  11. package/dist/icons/circle-open-arrow-right.svelte.d.ts +17 -0
  12. package/dist/icons/circle-open-arrow-up.svelte +6 -0
  13. package/dist/icons/circle-open-arrow-up.svelte.d.ts +17 -0
  14. package/dist/icons/circle-plus-minus.svelte +6 -0
  15. package/dist/icons/circle-plus-minus.svelte.d.ts +17 -0
  16. package/dist/icons/home-lock.svelte +6 -0
  17. package/dist/icons/home-lock.svelte.d.ts +17 -0
  18. package/dist/icons/home-shield.svelte +1 -1
  19. package/dist/icons/index.d.ts +18 -0
  20. package/dist/icons/index.js +18 -0
  21. package/dist/icons/map-lock.svelte +6 -0
  22. package/dist/icons/map-lock.svelte.d.ts +17 -0
  23. package/dist/icons/map-shield.svelte +6 -0
  24. package/dist/icons/map-shield.svelte.d.ts +17 -0
  25. package/dist/icons/mesh.svelte +6 -0
  26. package/dist/icons/mesh.svelte.d.ts +17 -0
  27. package/dist/icons/queue-pop-in.svelte +6 -0
  28. package/dist/icons/queue-pop-in.svelte.d.ts +17 -0
  29. package/dist/icons/queue-pop-out.svelte +6 -0
  30. package/dist/icons/queue-pop-out.svelte.d.ts +17 -0
  31. package/dist/icons/stroke-curved.svelte +6 -0
  32. package/dist/icons/stroke-curved.svelte.d.ts +17 -0
  33. package/dist/icons/stroke-dynamic.svelte +6 -0
  34. package/dist/icons/stroke-dynamic.svelte.d.ts +17 -0
  35. package/dist/icons/stroke-straight.svelte +6 -0
  36. package/dist/icons/stroke-straight.svelte.d.ts +17 -0
  37. package/dist/icons/trending-up-down.svelte +6 -0
  38. package/dist/icons/trending-up-down.svelte.d.ts +17 -0
  39. package/dist/icons/vip-2.svelte +6 -0
  40. package/dist/icons/vip-2.svelte.d.ts +17 -0
  41. package/dist/icons-list.js +18 -0
  42. package/package.json +2 -2
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 19a9 9 0 0 1 9 0a9 9 0 0 1 1.006 -.5" }], ["path", { "d": "M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0" }], ["path", { "d": "M3 6v13" }], ["path", { "d": "M12 6v13" }], ["path", { "d": "M21 6v6" }], ["path", { "d": "M17.001 19a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" }], ["path", { "d": "M19.001 15.5v1.5" }], ["path", { "d": "M19.001 21v1.5" }], ["path", { "d": "M22.032 17.25l-1.299 .75" }], ["path", { "d": "M17.27 20l-1.3 .75" }], ["path", { "d": "M15.97 17.25l1.3 .75" }], ["path", { "d": "M20.733 20l1.3 .75" }]];
3
+ </script>
4
+ <Icon type="outline" name="api-book" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type ApiBookProps = typeof __propDef.props;
13
+ export type ApiBookEvents = typeof __propDef.events;
14
+ export type ApiBookSlots = typeof __propDef.slots;
15
+ export default class ApiBook extends SvelteComponentTyped<ApiBookProps, ApiBookEvents, ApiBookSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M3 19a9 9 0 0 1 9 0a9 9 0 0 1 1.006 -.5" }], ["path", { "d": "M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0" }], ["path", { "d": "M3 6v13" }], ["path", { "d": "M12 6v13" }], ["path", { "d": "M21 6v6" }], ["path", { "d": "M17.001 19a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" }], ["path", { "d": "M19.001 15.5v1.5" }], ["path", { "d": "M19.001 21v1.5" }], ["path", { "d": "M22.032 17.25l-1.299 .75" }], ["path", { "d": "M17.27 20l-1.3 .75" }], ["path", { "d": "M15.97 17.25l1.3 .75" }], ["path", { "d": "M20.733 20l1.3 .75" }]];
2
+ const iconNode = [["path", { "d": "M4 13h5" }], ["path", { "d": "M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3" }], ["path", { "d": "M20 8v8" }], ["path", { "d": "M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="api" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14.936 6.063a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" }], ["path", { "d": "M5.52 5c.002 -.033 -1.69 1.568 1.02 3.733c-1.092 2.015 .853 2.992 .853 2.992c-.972 1.879 1.39 2.805 1.39 2.805c-1 2.39 -2 4.68 -3.555 6.454c1.495 .09 2.04 -.196 2.9 -.844c3.386 -2.552 4.937 -6.471 5.765 -8.62c.385 -1.001 -.323 -2.47 -1.247 -2.964c-2.52 -1.35 -7.178 -3.526 -7.127 -3.555" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-infakt" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type BrandInfaktProps = typeof __propDef.props;
13
+ export type BrandInfaktEvents = typeof __propDef.events;
14
+ export type BrandInfaktSlots = typeof __propDef.slots;
15
+ export default class BrandInfakt extends SvelteComponentTyped<BrandInfaktProps, BrandInfaktEvents, BrandInfaktSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M15.998 3.934a9 9 0 1 1 -3.998 -.934v13" }], ["path", { "d": "M16 12l-4 4l-4 -4" }]];
3
+ </script>
4
+ <Icon type="outline" name="circle-open-arrow-down" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type CircleOpenArrowDownProps = typeof __propDef.props;
13
+ export type CircleOpenArrowDownEvents = typeof __propDef.events;
14
+ export type CircleOpenArrowDownSlots = typeof __propDef.slots;
15
+ export default class CircleOpenArrowDown extends SvelteComponentTyped<CircleOpenArrowDownProps, CircleOpenArrowDownEvents, CircleOpenArrowDownSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M20.066 8.002a9 9 0 1 0 .934 3.998h-13" }], ["path", { "d": "M12 8l-4 4l4 4" }]];
3
+ </script>
4
+ <Icon type="outline" name="circle-open-arrow-left" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type CircleOpenArrowLeftProps = typeof __propDef.props;
13
+ export type CircleOpenArrowLeftEvents = typeof __propDef.events;
14
+ export type CircleOpenArrowLeftSlots = typeof __propDef.slots;
15
+ export default class CircleOpenArrowLeft extends SvelteComponentTyped<CircleOpenArrowLeftProps, CircleOpenArrowLeftEvents, CircleOpenArrowLeftSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3.934 8.002a9 9 0 1 1 -.934 3.998h13" }], ["path", { "d": "M12 8l4 4l-4 4" }]];
3
+ </script>
4
+ <Icon type="outline" name="circle-open-arrow-right" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type CircleOpenArrowRightProps = typeof __propDef.props;
13
+ export type CircleOpenArrowRightEvents = typeof __propDef.events;
14
+ export type CircleOpenArrowRightSlots = typeof __propDef.slots;
15
+ export default class CircleOpenArrowRight extends SvelteComponentTyped<CircleOpenArrowRightProps, CircleOpenArrowRightEvents, CircleOpenArrowRightSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M15.998 20.066a9 9 0 1 0 -3.998 .934v-13" }], ["path", { "d": "M16 12l-4 -4l-4 4" }]];
3
+ </script>
4
+ <Icon type="outline" name="circle-open-arrow-up" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type CircleOpenArrowUpProps = typeof __propDef.props;
13
+ export type CircleOpenArrowUpEvents = typeof __propDef.events;
14
+ export type CircleOpenArrowUpSlots = typeof __propDef.slots;
15
+ export default class CircleOpenArrowUp extends SvelteComponentTyped<CircleOpenArrowUpProps, CircleOpenArrowUpEvents, CircleOpenArrowUpSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }], ["path", { "d": "M9 10h6" }], ["path", { "d": "M9 16h6" }], ["path", { "d": "M12 7v6" }]];
3
+ </script>
4
+ <Icon type="outline" name="circle-plus-minus" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type CirclePlusMinusProps = typeof __propDef.props;
13
+ export type CirclePlusMinusEvents = typeof __propDef.events;
14
+ export type CirclePlusMinusSlots = typeof __propDef.slots;
15
+ export default class CirclePlusMinus extends SvelteComponentTyped<CirclePlusMinusProps, CirclePlusMinusEvents, CirclePlusMinusSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M5 12h-2l9 -9l8 8" }], ["path", { "d": "M5 12v7a2 2 0 0 0 2 2h6" }], ["path", { "d": "M9 21v-6a2 2 0 0 1 2 -2h2c.688 0 1.294 .347 1.654 .875" }], ["path", { "d": "M17 19a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-2" }], ["path", { "d": "M18 18v-1.5a1.5 1.5 0 1 1 3 0v1.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="home-lock" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type HomeLockProps = typeof __propDef.props;
13
+ export type HomeLockEvents = typeof __propDef.events;
14
+ export type HomeLockSlots = typeof __propDef.slots;
15
+ export default class HomeLock extends SvelteComponentTyped<HomeLockProps, HomeLockEvents, HomeLockSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M9 21v-6a2 2 0 0 1 2 -2h1.341" }], ["path", { "d": "M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5" }], ["path", { "d": "M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5" }]];
2
+ const iconNode = [["path", { "d": "M5 12h-2l9 -9l7.636 7.636" }], ["path", { "d": "M5 12v7a2 2 0 0 0 2 2h5" }], ["path", { "d": "M9 21v-6a2 2 0 0 1 2 -2h1.5" }], ["path", { "d": "M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="home-shield" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -129,6 +129,7 @@ export { default as IconApertureOff } from './aperture-off.svelte';
129
129
  export { default as IconAperture } from './aperture.svelte';
130
130
  export { default as IconApiAppOff } from './api-app-off.svelte';
131
131
  export { default as IconApiApp } from './api-app.svelte';
132
+ export { default as IconApiBook } from './api-book.svelte';
132
133
  export { default as IconApiOff } from './api-off.svelte';
133
134
  export { default as IconApi } from './api.svelte';
134
135
  export { default as IconAppWindow } from './app-window.svelte';
@@ -782,6 +783,7 @@ export { default as IconBrandHexo } from './brand-hexo.svelte';
782
783
  export { default as IconBrandHipchat } from './brand-hipchat.svelte';
783
784
  export { default as IconBrandHtml5 } from './brand-html5.svelte';
784
785
  export { default as IconBrandInertia } from './brand-inertia.svelte';
786
+ export { default as IconBrandInfakt } from './brand-infakt.svelte';
785
787
  export { default as IconBrandInstagram } from './brand-instagram.svelte';
786
788
  export { default as IconBrandIntercom } from './brand-intercom.svelte';
787
789
  export { default as IconBrandItch } from './brand-itch.svelte';
@@ -1435,8 +1437,13 @@ export { default as IconCircleNumber7 } from './circle-number-7.svelte';
1435
1437
  export { default as IconCircleNumber8 } from './circle-number-8.svelte';
1436
1438
  export { default as IconCircleNumber9 } from './circle-number-9.svelte';
1437
1439
  export { default as IconCircleOff } from './circle-off.svelte';
1440
+ export { default as IconCircleOpenArrowDown } from './circle-open-arrow-down.svelte';
1441
+ export { default as IconCircleOpenArrowLeft } from './circle-open-arrow-left.svelte';
1442
+ export { default as IconCircleOpenArrowRight } from './circle-open-arrow-right.svelte';
1443
+ export { default as IconCircleOpenArrowUp } from './circle-open-arrow-up.svelte';
1438
1444
  export { default as IconCirclePercentage } from './circle-percentage.svelte';
1439
1445
  export { default as IconCirclePlus2 } from './circle-plus-2.svelte';
1446
+ export { default as IconCirclePlusMinus } from './circle-plus-minus.svelte';
1440
1447
  export { default as IconCirclePlus } from './circle-plus.svelte';
1441
1448
  export { default as IconCircleRectangleOff } from './circle-rectangle-off.svelte';
1442
1449
  export { default as IconCircleRectangle } from './circle-rectangle.svelte';
@@ -2695,6 +2702,7 @@ export { default as IconHomeHand } from './home-hand.svelte';
2695
2702
  export { default as IconHomeHeart } from './home-heart.svelte';
2696
2703
  export { default as IconHomeInfinity } from './home-infinity.svelte';
2697
2704
  export { default as IconHomeLink } from './home-link.svelte';
2705
+ export { default as IconHomeLock } from './home-lock.svelte';
2698
2706
  export { default as IconHomeMinus } from './home-minus.svelte';
2699
2707
  export { default as IconHomeMove } from './home-move.svelte';
2700
2708
  export { default as IconHomeOff } from './home-off.svelte';
@@ -3108,6 +3116,7 @@ export { default as IconMapDown } from './map-down.svelte';
3108
3116
  export { default as IconMapEast } from './map-east.svelte';
3109
3117
  export { default as IconMapExclamation } from './map-exclamation.svelte';
3110
3118
  export { default as IconMapHeart } from './map-heart.svelte';
3119
+ export { default as IconMapLock } from './map-lock.svelte';
3111
3120
  export { default as IconMapMinus } from './map-minus.svelte';
3112
3121
  export { default as IconMapNorth } from './map-north.svelte';
3113
3122
  export { default as IconMapOff } from './map-off.svelte';
@@ -3140,6 +3149,7 @@ export { default as IconMapQuestion } from './map-question.svelte';
3140
3149
  export { default as IconMapRoute } from './map-route.svelte';
3141
3150
  export { default as IconMapSearch } from './map-search.svelte';
3142
3151
  export { default as IconMapShare } from './map-share.svelte';
3152
+ export { default as IconMapShield } from './map-shield.svelte';
3143
3153
  export { default as IconMapSouth } from './map-south.svelte';
3144
3154
  export { default as IconMapStar } from './map-star.svelte';
3145
3155
  export { default as IconMapUp } from './map-up.svelte';
@@ -3216,6 +3226,7 @@ export { default as IconMenu4 } from './menu-4.svelte';
3216
3226
  export { default as IconMenuDeep } from './menu-deep.svelte';
3217
3227
  export { default as IconMenuOrder } from './menu-order.svelte';
3218
3228
  export { default as IconMenu } from './menu.svelte';
3229
+ export { default as IconMesh } from './mesh.svelte';
3219
3230
  export { default as IconMessage2Bolt } from './message-2-bolt.svelte';
3220
3231
  export { default as IconMessage2Cancel } from './message-2-cancel.svelte';
3221
3232
  export { default as IconMessage2Check } from './message-2-check.svelte';
@@ -3913,6 +3924,8 @@ export { default as IconPyramid } from './pyramid.svelte';
3913
3924
  export { default as IconQrcodeOff } from './qrcode-off.svelte';
3914
3925
  export { default as IconQrcode } from './qrcode.svelte';
3915
3926
  export { default as IconQuestionMark } from './question-mark.svelte';
3927
+ export { default as IconQueuePopIn } from './queue-pop-in.svelte';
3928
+ export { default as IconQueuePopOut } from './queue-pop-out.svelte';
3916
3929
  export { default as IconQuoteOff } from './quote-off.svelte';
3917
3930
  export { default as IconQuote } from './quote.svelte';
3918
3931
  export { default as IconQuotes } from './quotes.svelte';
@@ -4508,6 +4521,9 @@ export { default as IconStorm } from './storm.svelte';
4508
4521
  export { default as IconStretching2 } from './stretching-2.svelte';
4509
4522
  export { default as IconStretching } from './stretching.svelte';
4510
4523
  export { default as IconStrikethrough } from './strikethrough.svelte';
4524
+ export { default as IconStrokeCurved } from './stroke-curved.svelte';
4525
+ export { default as IconStrokeDynamic } from './stroke-dynamic.svelte';
4526
+ export { default as IconStrokeStraight } from './stroke-straight.svelte';
4511
4527
  export { default as IconSubmarine } from './submarine.svelte';
4512
4528
  export { default as IconSubscript } from './subscript.svelte';
4513
4529
  export { default as IconSubtask } from './subtask.svelte';
@@ -4725,6 +4741,7 @@ export { default as IconTrendingDown3 } from './trending-down-3.svelte';
4725
4741
  export { default as IconTrendingDown } from './trending-down.svelte';
4726
4742
  export { default as IconTrendingUp2 } from './trending-up-2.svelte';
4727
4743
  export { default as IconTrendingUp3 } from './trending-up-3.svelte';
4744
+ export { default as IconTrendingUpDown } from './trending-up-down.svelte';
4728
4745
  export { default as IconTrendingUp } from './trending-up.svelte';
4729
4746
  export { default as IconTriangleInverted } from './triangle-inverted.svelte';
4730
4747
  export { default as IconTriangleMinus2 } from './triangle-minus-2.svelte';
@@ -4839,6 +4856,7 @@ export { default as IconViewportShort } from './viewport-short.svelte';
4839
4856
  export { default as IconViewportTall } from './viewport-tall.svelte';
4840
4857
  export { default as IconViewportWide } from './viewport-wide.svelte';
4841
4858
  export { default as IconVinyl } from './vinyl.svelte';
4859
+ export { default as IconVip2 } from './vip-2.svelte';
4842
4860
  export { default as IconVipOff } from './vip-off.svelte';
4843
4861
  export { default as IconVip } from './vip.svelte';
4844
4862
  export { default as IconVirusOff } from './virus-off.svelte';
@@ -129,6 +129,7 @@ export { default as IconApertureOff } from './aperture-off.svelte';
129
129
  export { default as IconAperture } from './aperture.svelte';
130
130
  export { default as IconApiAppOff } from './api-app-off.svelte';
131
131
  export { default as IconApiApp } from './api-app.svelte';
132
+ export { default as IconApiBook } from './api-book.svelte';
132
133
  export { default as IconApiOff } from './api-off.svelte';
133
134
  export { default as IconApi } from './api.svelte';
134
135
  export { default as IconAppWindow } from './app-window.svelte';
@@ -782,6 +783,7 @@ export { default as IconBrandHexo } from './brand-hexo.svelte';
782
783
  export { default as IconBrandHipchat } from './brand-hipchat.svelte';
783
784
  export { default as IconBrandHtml5 } from './brand-html5.svelte';
784
785
  export { default as IconBrandInertia } from './brand-inertia.svelte';
786
+ export { default as IconBrandInfakt } from './brand-infakt.svelte';
785
787
  export { default as IconBrandInstagram } from './brand-instagram.svelte';
786
788
  export { default as IconBrandIntercom } from './brand-intercom.svelte';
787
789
  export { default as IconBrandItch } from './brand-itch.svelte';
@@ -1435,8 +1437,13 @@ export { default as IconCircleNumber7 } from './circle-number-7.svelte';
1435
1437
  export { default as IconCircleNumber8 } from './circle-number-8.svelte';
1436
1438
  export { default as IconCircleNumber9 } from './circle-number-9.svelte';
1437
1439
  export { default as IconCircleOff } from './circle-off.svelte';
1440
+ export { default as IconCircleOpenArrowDown } from './circle-open-arrow-down.svelte';
1441
+ export { default as IconCircleOpenArrowLeft } from './circle-open-arrow-left.svelte';
1442
+ export { default as IconCircleOpenArrowRight } from './circle-open-arrow-right.svelte';
1443
+ export { default as IconCircleOpenArrowUp } from './circle-open-arrow-up.svelte';
1438
1444
  export { default as IconCirclePercentage } from './circle-percentage.svelte';
1439
1445
  export { default as IconCirclePlus2 } from './circle-plus-2.svelte';
1446
+ export { default as IconCirclePlusMinus } from './circle-plus-minus.svelte';
1440
1447
  export { default as IconCirclePlus } from './circle-plus.svelte';
1441
1448
  export { default as IconCircleRectangleOff } from './circle-rectangle-off.svelte';
1442
1449
  export { default as IconCircleRectangle } from './circle-rectangle.svelte';
@@ -2695,6 +2702,7 @@ export { default as IconHomeHand } from './home-hand.svelte';
2695
2702
  export { default as IconHomeHeart } from './home-heart.svelte';
2696
2703
  export { default as IconHomeInfinity } from './home-infinity.svelte';
2697
2704
  export { default as IconHomeLink } from './home-link.svelte';
2705
+ export { default as IconHomeLock } from './home-lock.svelte';
2698
2706
  export { default as IconHomeMinus } from './home-minus.svelte';
2699
2707
  export { default as IconHomeMove } from './home-move.svelte';
2700
2708
  export { default as IconHomeOff } from './home-off.svelte';
@@ -3108,6 +3116,7 @@ export { default as IconMapDown } from './map-down.svelte';
3108
3116
  export { default as IconMapEast } from './map-east.svelte';
3109
3117
  export { default as IconMapExclamation } from './map-exclamation.svelte';
3110
3118
  export { default as IconMapHeart } from './map-heart.svelte';
3119
+ export { default as IconMapLock } from './map-lock.svelte';
3111
3120
  export { default as IconMapMinus } from './map-minus.svelte';
3112
3121
  export { default as IconMapNorth } from './map-north.svelte';
3113
3122
  export { default as IconMapOff } from './map-off.svelte';
@@ -3140,6 +3149,7 @@ export { default as IconMapQuestion } from './map-question.svelte';
3140
3149
  export { default as IconMapRoute } from './map-route.svelte';
3141
3150
  export { default as IconMapSearch } from './map-search.svelte';
3142
3151
  export { default as IconMapShare } from './map-share.svelte';
3152
+ export { default as IconMapShield } from './map-shield.svelte';
3143
3153
  export { default as IconMapSouth } from './map-south.svelte';
3144
3154
  export { default as IconMapStar } from './map-star.svelte';
3145
3155
  export { default as IconMapUp } from './map-up.svelte';
@@ -3216,6 +3226,7 @@ export { default as IconMenu4 } from './menu-4.svelte';
3216
3226
  export { default as IconMenuDeep } from './menu-deep.svelte';
3217
3227
  export { default as IconMenuOrder } from './menu-order.svelte';
3218
3228
  export { default as IconMenu } from './menu.svelte';
3229
+ export { default as IconMesh } from './mesh.svelte';
3219
3230
  export { default as IconMessage2Bolt } from './message-2-bolt.svelte';
3220
3231
  export { default as IconMessage2Cancel } from './message-2-cancel.svelte';
3221
3232
  export { default as IconMessage2Check } from './message-2-check.svelte';
@@ -3913,6 +3924,8 @@ export { default as IconPyramid } from './pyramid.svelte';
3913
3924
  export { default as IconQrcodeOff } from './qrcode-off.svelte';
3914
3925
  export { default as IconQrcode } from './qrcode.svelte';
3915
3926
  export { default as IconQuestionMark } from './question-mark.svelte';
3927
+ export { default as IconQueuePopIn } from './queue-pop-in.svelte';
3928
+ export { default as IconQueuePopOut } from './queue-pop-out.svelte';
3916
3929
  export { default as IconQuoteOff } from './quote-off.svelte';
3917
3930
  export { default as IconQuote } from './quote.svelte';
3918
3931
  export { default as IconQuotes } from './quotes.svelte';
@@ -4508,6 +4521,9 @@ export { default as IconStorm } from './storm.svelte';
4508
4521
  export { default as IconStretching2 } from './stretching-2.svelte';
4509
4522
  export { default as IconStretching } from './stretching.svelte';
4510
4523
  export { default as IconStrikethrough } from './strikethrough.svelte';
4524
+ export { default as IconStrokeCurved } from './stroke-curved.svelte';
4525
+ export { default as IconStrokeDynamic } from './stroke-dynamic.svelte';
4526
+ export { default as IconStrokeStraight } from './stroke-straight.svelte';
4511
4527
  export { default as IconSubmarine } from './submarine.svelte';
4512
4528
  export { default as IconSubscript } from './subscript.svelte';
4513
4529
  export { default as IconSubtask } from './subtask.svelte';
@@ -4725,6 +4741,7 @@ export { default as IconTrendingDown3 } from './trending-down-3.svelte';
4725
4741
  export { default as IconTrendingDown } from './trending-down.svelte';
4726
4742
  export { default as IconTrendingUp2 } from './trending-up-2.svelte';
4727
4743
  export { default as IconTrendingUp3 } from './trending-up-3.svelte';
4744
+ export { default as IconTrendingUpDown } from './trending-up-down.svelte';
4728
4745
  export { default as IconTrendingUp } from './trending-up.svelte';
4729
4746
  export { default as IconTriangleInverted } from './triangle-inverted.svelte';
4730
4747
  export { default as IconTriangleMinus2 } from './triangle-minus-2.svelte';
@@ -4839,6 +4856,7 @@ export { default as IconViewportShort } from './viewport-short.svelte';
4839
4856
  export { default as IconViewportTall } from './viewport-tall.svelte';
4840
4857
  export { default as IconViewportWide } from './viewport-wide.svelte';
4841
4858
  export { default as IconVinyl } from './vinyl.svelte';
4859
+ export { default as IconVip2 } from './vip-2.svelte';
4842
4860
  export { default as IconVipOff } from './vip-off.svelte';
4843
4861
  export { default as IconVip } from './vip.svelte';
4844
4862
  export { default as IconVirusOff } from './virus-off.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" }], ["path", { "d": "M13.004 21.216a2 2 0 0 1 -2.417 -.316l-4.244 -4.243a8 8 0 0 1 11.314 -11.314a7.93 7.93 0 0 1 2.343 5.657" }], ["path", { "d": "M17 19a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-2" }], ["path", { "d": "M18 18v-1.5a1.5 1.5 0 1 1 3 0v1.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="map-lock" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type MapLockProps = typeof __propDef.props;
13
+ export type MapLockEvents = typeof __propDef.events;
14
+ export type MapLockSlots = typeof __propDef.slots;
15
+ export default class MapLock extends SvelteComponentTyped<MapLockProps, MapLockEvents, MapLockSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M15 11a3 3 0 1 0 -3 3" }], ["path", { "d": "M12.249 21.47a2 2 0 0 1 -1.662 -.57l-4.244 -4.243a8 8 0 1 1 13.655 -5.828" }], ["path", { "d": "M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="map-shield" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type MapShieldProps = typeof __propDef.props;
13
+ export type MapShieldEvents = typeof __propDef.events;
14
+ export type MapShieldSlots = typeof __propDef.slots;
15
+ export default class MapShield extends SvelteComponentTyped<MapShieldProps, MapShieldEvents, MapShieldSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 9h18" }], ["path", { "d": "M3 15h18" }], ["path", { "d": "M8 4c.485 .445 3.5 3.312 3.5 8c0 .663 -.07 4.848 -3.5 8" }], ["path", { "d": "M15 4a17 17 0 0 1 2.004 8c0 1.51 -.201 4.628 -2.004 8" }], ["path", { "d": "M18.778 20h-13.556a2.22 2.22 0 0 1 -2.222 -2.222v-11.556c0 -1.227 .995 -2.222 2.222 -2.222h13.556c1.227 0 2.222 .995 2.222 2.222v11.556a2.22 2.22 0 0 1 -2.222 2.222" }]];
3
+ </script>
4
+ <Icon type="outline" name="mesh" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type MeshProps = typeof __propDef.props;
13
+ export type MeshEvents = typeof __propDef.events;
14
+ export type MeshSlots = typeof __propDef.slots;
15
+ export default class Mesh extends SvelteComponentTyped<MeshProps, MeshEvents, MeshSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8 6h-3a2 2 0 0 0 -2 2v11a2 2 0 0 0 2 2h11a2 2 0 0 0 2 -2v-3.357" }], ["path", { "d": "M13 5a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-4" }], ["path", { "d": "M13.5 10.5l-5.5 5.5" }], ["path", { "d": "M8 11v5h5" }]];
3
+ </script>
4
+ <Icon type="outline" name="queue-pop-in" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type QueuePopInProps = typeof __propDef.props;
13
+ export type QueuePopInEvents = typeof __propDef.events;
14
+ export type QueuePopInSlots = typeof __propDef.slots;
15
+ export default class QueuePopIn extends SvelteComponentTyped<QueuePopInProps, QueuePopInEvents, QueuePopInSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M11 5h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-6" }], ["path", { "d": "M3 13h6a2 2 0 0 1 2 2v6" }], ["path", { "d": "M16 3h5v5" }], ["path", { "d": "M21 3l-6 6" }]];
3
+ </script>
4
+ <Icon type="outline" name="queue-pop-out" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type QueuePopOutProps = typeof __propDef.props;
13
+ export type QueuePopOutEvents = typeof __propDef.events;
14
+ export type QueuePopOutSlots = typeof __propDef.slots;
15
+ export default class QueuePopOut extends SvelteComponentTyped<QueuePopOutProps, QueuePopOutEvents, QueuePopOutSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 19h1.341a7 7 0 0 0 6.845 -5.533l.628 -2.934a7 7 0 0 1 6.846 -5.533h1.34" }]];
3
+ </script>
4
+ <Icon type="outline" name="stroke-curved" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type StrokeCurvedProps = typeof __propDef.props;
13
+ export type StrokeCurvedEvents = typeof __propDef.events;
14
+ export type StrokeCurvedSlots = typeof __propDef.slots;
15
+ export default class StrokeCurved extends SvelteComponentTyped<StrokeCurvedProps, StrokeCurvedEvents, StrokeCurvedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 19h6a2 2 0 0 0 2 -2v-10a2 2 0 0 1 2 -2h7" }]];
3
+ </script>
4
+ <Icon type="outline" name="stroke-dynamic" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type StrokeDynamicProps = typeof __propDef.props;
13
+ export type StrokeDynamicEvents = typeof __propDef.events;
14
+ export type StrokeDynamicSlots = typeof __propDef.slots;
15
+ export default class StrokeDynamic extends SvelteComponentTyped<StrokeDynamicProps, StrokeDynamicEvents, StrokeDynamicSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 19l16 -14" }]];
3
+ </script>
4
+ <Icon type="outline" name="stroke-straight" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type StrokeStraightProps = typeof __propDef.props;
13
+ export type StrokeStraightEvents = typeof __propDef.events;
14
+ export type StrokeStraightSlots = typeof __propDef.slots;
15
+ export default class StrokeStraight extends SvelteComponentTyped<StrokeStraightProps, StrokeStraightEvents, StrokeStraightSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M2 14l6 -6l4 4l9 -9" }], ["path", { "d": "M15 3h6v6" }], ["path", { "d": "M15 21h6v-6" }], ["path", { "d": "M21 21l-6 -6" }]];
3
+ </script>
4
+ <Icon type="outline" name="trending-up-down" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type TrendingUpDownProps = typeof __propDef.props;
13
+ export type TrendingUpDownEvents = typeof __propDef.events;
14
+ export type TrendingUpDownSlots = typeof __propDef.slots;
15
+ export default class TrendingUpDown extends SvelteComponentTyped<TrendingUpDownProps, TrendingUpDownEvents, TrendingUpDownSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 5h4" }], ["path", { "d": "M17 5h4" }], ["path", { "d": "M3 19h18" }], ["path", { "d": "M4 9l2 6h1l2 -6" }], ["path", { "d": "M12 10v5" }], ["path", { "d": "M16 15v-6h2a2 2 0 1 1 0 4h-2" }], ["path", { "d": "M10 5a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2" }]];
3
+ </script>
4
+ <Icon type="outline" name="vip-2" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type Vip2Props = typeof __propDef.props;
13
+ export type Vip2Events = typeof __propDef.events;
14
+ export type Vip2Slots = typeof __propDef.slots;
15
+ export default class Vip2 extends SvelteComponentTyped<Vip2Props, Vip2Events, Vip2Slots> {
16
+ }
17
+ export {};
@@ -130,6 +130,7 @@ export default [
130
130
  "aperture",
131
131
  "api-app-off",
132
132
  "api-app",
133
+ "api-book",
133
134
  "api-off",
134
135
  "api",
135
136
  "app-window",
@@ -783,6 +784,7 @@ export default [
783
784
  "brand-hipchat",
784
785
  "brand-html5",
785
786
  "brand-inertia",
787
+ "brand-infakt",
786
788
  "brand-instagram",
787
789
  "brand-intercom",
788
790
  "brand-itch",
@@ -1436,8 +1438,13 @@ export default [
1436
1438
  "circle-number-8",
1437
1439
  "circle-number-9",
1438
1440
  "circle-off",
1441
+ "circle-open-arrow-down",
1442
+ "circle-open-arrow-left",
1443
+ "circle-open-arrow-right",
1444
+ "circle-open-arrow-up",
1439
1445
  "circle-percentage",
1440
1446
  "circle-plus-2",
1447
+ "circle-plus-minus",
1441
1448
  "circle-plus",
1442
1449
  "circle-rectangle-off",
1443
1450
  "circle-rectangle",
@@ -2696,6 +2703,7 @@ export default [
2696
2703
  "home-heart",
2697
2704
  "home-infinity",
2698
2705
  "home-link",
2706
+ "home-lock",
2699
2707
  "home-minus",
2700
2708
  "home-move",
2701
2709
  "home-off",
@@ -3109,6 +3117,7 @@ export default [
3109
3117
  "map-east",
3110
3118
  "map-exclamation",
3111
3119
  "map-heart",
3120
+ "map-lock",
3112
3121
  "map-minus",
3113
3122
  "map-north",
3114
3123
  "map-off",
@@ -3141,6 +3150,7 @@ export default [
3141
3150
  "map-route",
3142
3151
  "map-search",
3143
3152
  "map-share",
3153
+ "map-shield",
3144
3154
  "map-south",
3145
3155
  "map-star",
3146
3156
  "map-up",
@@ -3217,6 +3227,7 @@ export default [
3217
3227
  "menu-deep",
3218
3228
  "menu-order",
3219
3229
  "menu",
3230
+ "mesh",
3220
3231
  "message-2-bolt",
3221
3232
  "message-2-cancel",
3222
3233
  "message-2-check",
@@ -3914,6 +3925,8 @@ export default [
3914
3925
  "qrcode-off",
3915
3926
  "qrcode",
3916
3927
  "question-mark",
3928
+ "queue-pop-in",
3929
+ "queue-pop-out",
3917
3930
  "quote-off",
3918
3931
  "quote",
3919
3932
  "quotes",
@@ -4509,6 +4522,9 @@ export default [
4509
4522
  "stretching-2",
4510
4523
  "stretching",
4511
4524
  "strikethrough",
4525
+ "stroke-curved",
4526
+ "stroke-dynamic",
4527
+ "stroke-straight",
4512
4528
  "submarine",
4513
4529
  "subscript",
4514
4530
  "subtask",
@@ -4726,6 +4742,7 @@ export default [
4726
4742
  "trending-down",
4727
4743
  "trending-up-2",
4728
4744
  "trending-up-3",
4745
+ "trending-up-down",
4729
4746
  "trending-up",
4730
4747
  "triangle-inverted",
4731
4748
  "triangle-minus-2",
@@ -4840,6 +4857,7 @@ export default [
4840
4857
  "viewport-tall",
4841
4858
  "viewport-wide",
4842
4859
  "vinyl",
4860
+ "vip-2",
4843
4861
  "vip-off",
4844
4862
  "vip",
4845
4863
  "virus-off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.39.0",
3
+ "version": "3.40.0",
4
4
  "license": "MIT",
5
5
  "author": "codecalm",
6
6
  "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
@@ -41,7 +41,7 @@
41
41
  "dist"
42
42
  ],
43
43
  "dependencies": {
44
- "@tabler/icons": "3.39.0"
44
+ "@tabler/icons": "3.40.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@sveltejs/package": "^2.2.7",