@tabler/icons-svelte 3.8.0 → 3.9.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 (40) hide show
  1. package/dist/icons/buildings.svelte +6 -0
  2. package/dist/icons/buildings.svelte.d.ts +17 -0
  3. package/dist/icons/clock-bitcoin.svelte +6 -0
  4. package/dist/icons/clock-bitcoin.svelte.d.ts +17 -0
  5. package/dist/icons/cloud-bitcoin.svelte +6 -0
  6. package/dist/icons/cloud-bitcoin.svelte.d.ts +17 -0
  7. package/dist/icons/eye-bitcoin.svelte +6 -0
  8. package/dist/icons/eye-bitcoin.svelte.d.ts +17 -0
  9. package/dist/icons/flag-bitcoin.svelte +6 -0
  10. package/dist/icons/flag-bitcoin.svelte.d.ts +17 -0
  11. package/dist/icons/heart-bitcoin.svelte +6 -0
  12. package/dist/icons/heart-bitcoin.svelte.d.ts +17 -0
  13. package/dist/icons/home-bitcoin.svelte +6 -0
  14. package/dist/icons/home-bitcoin.svelte.d.ts +17 -0
  15. package/dist/icons/index.d.ts +18 -0
  16. package/dist/icons/index.js +18 -0
  17. package/dist/icons/label-filled.svelte +6 -0
  18. package/dist/icons/label-filled.svelte.d.ts +17 -0
  19. package/dist/icons/label-off.svelte +6 -0
  20. package/dist/icons/label-off.svelte.d.ts +17 -0
  21. package/dist/icons/label.svelte +6 -0
  22. package/dist/icons/label.svelte.d.ts +17 -0
  23. package/dist/icons/lock-bitcoin.svelte +6 -0
  24. package/dist/icons/lock-bitcoin.svelte.d.ts +17 -0
  25. package/dist/icons/mail-bitcoin.svelte +6 -0
  26. package/dist/icons/mail-bitcoin.svelte.d.ts +17 -0
  27. package/dist/icons/math-ctg.svelte +6 -0
  28. package/dist/icons/math-ctg.svelte.d.ts +17 -0
  29. package/dist/icons/math-sec.svelte +6 -0
  30. package/dist/icons/math-sec.svelte.d.ts +17 -0
  31. package/dist/icons/math-tg.svelte +6 -0
  32. package/dist/icons/math-tg.svelte.d.ts +17 -0
  33. package/dist/icons/mood-bitcoin.svelte +6 -0
  34. package/dist/icons/mood-bitcoin.svelte.d.ts +17 -0
  35. package/dist/icons/photo-bitcoin.svelte +6 -0
  36. package/dist/icons/photo-bitcoin.svelte.d.ts +17 -0
  37. package/dist/icons/user-bitcoin.svelte +6 -0
  38. package/dist/icons/user-bitcoin.svelte.d.ts +17 -0
  39. package/dist/icons-list.js +18 -0
  40. package/package.json +2 -2
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 21v-15c0 -1 1 -2 2 -2h5c1 0 2 1 2 2v15" }], ["path", { "d": "M16 8h2c1 0 2 1 2 2v11" }], ["path", { "d": "M3 21h18" }], ["path", { "d": "M10 12v0" }], ["path", { "d": "M10 16v0" }], ["path", { "d": "M10 8v0" }], ["path", { "d": "M7 12v0" }], ["path", { "d": "M7 16v0" }], ["path", { "d": "M7 8v0" }], ["path", { "d": "M17 12v0" }], ["path", { "d": "M17 16v0" }]];
3
+ </script>
4
+ <Icon type="outline" name="buildings" {...$$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 BuildingsProps = typeof __propDef.props;
13
+ export type BuildingsEvents = typeof __propDef.events;
14
+ export type BuildingsSlots = typeof __propDef.slots;
15
+ export default class Buildings extends SvelteComponentTyped<BuildingsProps, BuildingsEvents, BuildingsSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }], ["path", { "d": "M20.866 10.45a9 9 0 1 0 -7.815 10.488" }], ["path", { "d": "M12 7v5l1.5 1.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="clock-bitcoin" {...$$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 ClockBitcoinProps = typeof __propDef.props;
13
+ export type ClockBitcoinEvents = typeof __propDef.events;
14
+ export type ClockBitcoinSlots = typeof __propDef.slots;
15
+ export default class ClockBitcoin extends SvelteComponentTyped<ClockBitcoinProps, ClockBitcoinEvents, ClockBitcoinSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }], ["path", { "d": "M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487s2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027" }]];
3
+ </script>
4
+ <Icon type="outline" name="cloud-bitcoin" {...$$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 CloudBitcoinProps = typeof __propDef.props;
13
+ export type CloudBitcoinEvents = typeof __propDef.events;
14
+ export type CloudBitcoinSlots = typeof __propDef.slots;
15
+ export default class CloudBitcoin extends SvelteComponentTyped<CloudBitcoinProps, CloudBitcoinEvents, CloudBitcoinSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" }], ["path", { "d": "M13.193 17.924q -.585 .075 -1.193 .076q -5.4 0 -9 -6q 3.6 -6 9 -6q 4.508 0 7.761 4.181" }], ["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="eye-bitcoin" {...$$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 EyeBitcoinProps = typeof __propDef.props;
13
+ export type EyeBitcoinEvents = typeof __propDef.events;
14
+ export type EyeBitcoinSlots = typeof __propDef.slots;
15
+ export default class EyeBitcoin extends SvelteComponentTyped<EyeBitcoinProps, EyeBitcoinEvents, EyeBitcoinSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }], ["path", { "d": "M13.222 14.882a5 5 0 0 1 -1.222 -.882a5 5 0 0 0 -7 0v-9a5 5 0 0 1 7 0a5 5 0 0 0 7 0v5" }], ["path", { "d": "M5 21v-7" }]];
3
+ </script>
4
+ <Icon type="outline" name="flag-bitcoin" {...$$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 FlagBitcoinProps = typeof __propDef.props;
13
+ export type FlagBitcoinEvents = typeof __propDef.events;
14
+ export type FlagBitcoinSlots = typeof __propDef.slots;
15
+ export default class FlagBitcoin extends SvelteComponentTyped<FlagBitcoinProps, FlagBitcoinEvents, FlagBitcoinSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }], ["path", { "d": "M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.785 4.444" }]];
3
+ </script>
4
+ <Icon type="outline" name="heart-bitcoin" {...$$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 HeartBitcoinProps = typeof __propDef.props;
13
+ export type HeartBitcoinEvents = typeof __propDef.events;
14
+ export type HeartBitcoinSlots = typeof __propDef.slots;
15
+ export default class HeartBitcoin extends SvelteComponentTyped<HeartBitcoinProps, HeartBitcoinEvents, HeartBitcoinSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }], ["path", { "d": "M19.5 10.5l-7.5 -7.5l-9 9h2v7a2 2 0 0 0 2 2h6" }], ["path", { "d": "M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3" }], ["path", { "d": "M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="home-bitcoin" {...$$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 HomeBitcoinProps = typeof __propDef.props;
13
+ export type HomeBitcoinEvents = typeof __propDef.events;
14
+ export type HomeBitcoinSlots = typeof __propDef.slots;
15
+ export default class HomeBitcoin extends SvelteComponentTyped<HomeBitcoinProps, HomeBitcoinEvents, HomeBitcoinSlots> {
16
+ }
17
+ export {};
@@ -1015,6 +1015,7 @@ export { default as IconBuildingTunnel } from './building-tunnel.svelte';
1015
1015
  export { default as IconBuildingWarehouse } from './building-warehouse.svelte';
1016
1016
  export { default as IconBuildingWindTurbine } from './building-wind-turbine.svelte';
1017
1017
  export { default as IconBuilding } from './building.svelte';
1018
+ export { default as IconBuildings } from './buildings.svelte';
1018
1019
  export { default as IconBulbOff } from './bulb-off.svelte';
1019
1020
  export { default as IconBulb } from './bulb.svelte';
1020
1021
  export { default as IconBulldozer } from './bulldozer.svelte';
@@ -1366,6 +1367,7 @@ export { default as IconClipboard } from './clipboard.svelte';
1366
1367
  export { default as IconClock12 } from './clock-12.svelte';
1367
1368
  export { default as IconClock2 } from './clock-2.svelte';
1368
1369
  export { default as IconClock24 } from './clock-24.svelte';
1370
+ export { default as IconClockBitcoin } from './clock-bitcoin.svelte';
1369
1371
  export { default as IconClockBolt } from './clock-bolt.svelte';
1370
1372
  export { default as IconClockCancel } from './clock-cancel.svelte';
1371
1373
  export { default as IconClockCheck } from './clock-check.svelte';
@@ -1406,6 +1408,7 @@ export { default as IconClockX } from './clock-x.svelte';
1406
1408
  export { default as IconClock } from './clock.svelte';
1407
1409
  export { default as IconClothesRackOff } from './clothes-rack-off.svelte';
1408
1410
  export { default as IconClothesRack } from './clothes-rack.svelte';
1411
+ export { default as IconCloudBitcoin } from './cloud-bitcoin.svelte';
1409
1412
  export { default as IconCloudBolt } from './cloud-bolt.svelte';
1410
1413
  export { default as IconCloudCancel } from './cloud-cancel.svelte';
1411
1414
  export { default as IconCloudCheck } from './cloud-check.svelte';
@@ -2022,6 +2025,7 @@ export { default as IconExposurePlus2 } from './exposure-plus-2.svelte';
2022
2025
  export { default as IconExposure } from './exposure.svelte';
2023
2026
  export { default as IconExternalLinkOff } from './external-link-off.svelte';
2024
2027
  export { default as IconExternalLink } from './external-link.svelte';
2028
+ export { default as IconEyeBitcoin } from './eye-bitcoin.svelte';
2025
2029
  export { default as IconEyeBolt } from './eye-bolt.svelte';
2026
2030
  export { default as IconEyeCancel } from './eye-cancel.svelte';
2027
2031
  export { default as IconEyeCheck } from './eye-check.svelte';
@@ -2197,6 +2201,7 @@ export { default as IconFish } from './fish.svelte';
2197
2201
  export { default as IconFlag2Off } from './flag-2-off.svelte';
2198
2202
  export { default as IconFlag2 } from './flag-2.svelte';
2199
2203
  export { default as IconFlag3 } from './flag-3.svelte';
2204
+ export { default as IconFlagBitcoin } from './flag-bitcoin.svelte';
2200
2205
  export { default as IconFlagBolt } from './flag-bolt.svelte';
2201
2206
  export { default as IconFlagCancel } from './flag-cancel.svelte';
2202
2207
  export { default as IconFlagCheck } from './flag-check.svelte';
@@ -2404,6 +2409,7 @@ export { default as IconHeadphones } from './headphones.svelte';
2404
2409
  export { default as IconHeadsetOff } from './headset-off.svelte';
2405
2410
  export { default as IconHeadset } from './headset.svelte';
2406
2411
  export { default as IconHealthRecognition } from './health-recognition.svelte';
2412
+ export { default as IconHeartBitcoin } from './heart-bitcoin.svelte';
2407
2413
  export { default as IconHeartBolt } from './heart-bolt.svelte';
2408
2414
  export { default as IconHeartBroken } from './heart-broken.svelte';
2409
2415
  export { default as IconHeartCancel } from './heart-cancel.svelte';
@@ -2508,6 +2514,7 @@ export { default as IconHistoryOff } from './history-off.svelte';
2508
2514
  export { default as IconHistoryToggle } from './history-toggle.svelte';
2509
2515
  export { default as IconHistory } from './history.svelte';
2510
2516
  export { default as IconHome2 } from './home-2.svelte';
2517
+ export { default as IconHomeBitcoin } from './home-bitcoin.svelte';
2511
2518
  export { default as IconHomeBolt } from './home-bolt.svelte';
2512
2519
  export { default as IconHomeCancel } from './home-cancel.svelte';
2513
2520
  export { default as IconHomeCheck } from './home-check.svelte';
@@ -2631,6 +2638,8 @@ export { default as IconKeyframeAlignHorizontal } from './keyframe-align-horizon
2631
2638
  export { default as IconKeyframeAlignVertical } from './keyframe-align-vertical.svelte';
2632
2639
  export { default as IconKeyframe } from './keyframe.svelte';
2633
2640
  export { default as IconKeyframes } from './keyframes.svelte';
2641
+ export { default as IconLabelOff } from './label-off.svelte';
2642
+ export { default as IconLabel } from './label.svelte';
2634
2643
  export { default as IconLadderOff } from './ladder-off.svelte';
2635
2644
  export { default as IconLadder } from './ladder.svelte';
2636
2645
  export { default as IconLadle } from './ladle.svelte';
@@ -2815,6 +2824,7 @@ export { default as IconLocationX } from './location-x.svelte';
2815
2824
  export { default as IconLocation } from './location.svelte';
2816
2825
  export { default as IconLockAccessOff } from './lock-access-off.svelte';
2817
2826
  export { default as IconLockAccess } from './lock-access.svelte';
2827
+ export { default as IconLockBitcoin } from './lock-bitcoin.svelte';
2818
2828
  export { default as IconLockBolt } from './lock-bolt.svelte';
2819
2829
  export { default as IconLockCancel } from './lock-cancel.svelte';
2820
2830
  export { default as IconLockCheck } from './lock-check.svelte';
@@ -2866,6 +2876,7 @@ export { default as IconMagnetOff } from './magnet-off.svelte';
2866
2876
  export { default as IconMagnet } from './magnet.svelte';
2867
2877
  export { default as IconMagnetic } from './magnetic.svelte';
2868
2878
  export { default as IconMailAi } from './mail-ai.svelte';
2879
+ export { default as IconMailBitcoin } from './mail-bitcoin.svelte';
2869
2880
  export { default as IconMailBolt } from './mail-bolt.svelte';
2870
2881
  export { default as IconMailCancel } from './mail-cancel.svelte';
2871
2882
  export { default as IconMailCheck } from './mail-check.svelte';
@@ -2960,6 +2971,7 @@ export { default as IconMath1Divide2 } from './math-1-divide-2.svelte';
2960
2971
  export { default as IconMath1Divide3 } from './math-1-divide-3.svelte';
2961
2972
  export { default as IconMathAvg } from './math-avg.svelte';
2962
2973
  export { default as IconMathCos } from './math-cos.svelte';
2974
+ export { default as IconMathCtg } from './math-ctg.svelte';
2963
2975
  export { default as IconMathEqualGreater } from './math-equal-greater.svelte';
2964
2976
  export { default as IconMathEqualLower } from './math-equal-lower.svelte';
2965
2977
  export { default as IconMathFunctionOff } from './math-function-off.svelte';
@@ -2977,8 +2989,10 @@ export { default as IconMathNot } from './math-not.svelte';
2977
2989
  export { default as IconMathOff } from './math-off.svelte';
2978
2990
  export { default as IconMathPiDivide2 } from './math-pi-divide-2.svelte';
2979
2991
  export { default as IconMathPi } from './math-pi.svelte';
2992
+ export { default as IconMathSec } from './math-sec.svelte';
2980
2993
  export { default as IconMathSin } from './math-sin.svelte';
2981
2994
  export { default as IconMathSymbols } from './math-symbols.svelte';
2995
+ export { default as IconMathTg } from './math-tg.svelte';
2982
2996
  export { default as IconMathXDivide2 } from './math-x-divide-2.svelte';
2983
2997
  export { default as IconMathXDivideY2 } from './math-x-divide-y-2.svelte';
2984
2998
  export { default as IconMathXDivideY } from './math-x-divide-y.svelte';
@@ -3114,6 +3128,7 @@ export { default as IconMonkeybar } from './monkeybar.svelte';
3114
3128
  export { default as IconMoodAngry } from './mood-angry.svelte';
3115
3129
  export { default as IconMoodAnnoyed2 } from './mood-annoyed-2.svelte';
3116
3130
  export { default as IconMoodAnnoyed } from './mood-annoyed.svelte';
3131
+ export { default as IconMoodBitcoin } from './mood-bitcoin.svelte';
3117
3132
  export { default as IconMoodBoy } from './mood-boy.svelte';
3118
3133
  export { default as IconMoodCheck } from './mood-check.svelte';
3119
3134
  export { default as IconMoodCog } from './mood-cog.svelte';
@@ -3425,6 +3440,7 @@ export { default as IconPhonePlus } from './phone-plus.svelte';
3425
3440
  export { default as IconPhoneX } from './phone-x.svelte';
3426
3441
  export { default as IconPhone } from './phone.svelte';
3427
3442
  export { default as IconPhotoAi } from './photo-ai.svelte';
3443
+ export { default as IconPhotoBitcoin } from './photo-bitcoin.svelte';
3428
3444
  export { default as IconPhotoBolt } from './photo-bolt.svelte';
3429
3445
  export { default as IconPhotoCancel } from './photo-cancel.svelte';
3430
3446
  export { default as IconPhotoCheck } from './photo-check.svelte';
@@ -4428,6 +4444,7 @@ export { default as IconUnlink } from './unlink.svelte';
4428
4444
  export { default as IconUpload } from './upload.svelte';
4429
4445
  export { default as IconUrgent } from './urgent.svelte';
4430
4446
  export { default as IconUsb } from './usb.svelte';
4447
+ export { default as IconUserBitcoin } from './user-bitcoin.svelte';
4431
4448
  export { default as IconUserBolt } from './user-bolt.svelte';
4432
4449
  export { default as IconUserCancel } from './user-cancel.svelte';
4433
4450
  export { default as IconUserCheck } from './user-check.svelte';
@@ -5049,6 +5066,7 @@ export { default as IconKeyframeAlignHorizontalFilled } from './keyframe-align-h
5049
5066
  export { default as IconKeyframeAlignVerticalFilled } from './keyframe-align-vertical-filled.svelte';
5050
5067
  export { default as IconKeyframeFilled } from './keyframe-filled.svelte';
5051
5068
  export { default as IconKeyframesFilled } from './keyframes-filled.svelte';
5069
+ export { default as IconLabelFilled } from './label-filled.svelte';
5052
5070
  export { default as IconLayout2Filled } from './layout-2-filled.svelte';
5053
5071
  export { default as IconLayoutAlignBottomFilled } from './layout-align-bottom-filled.svelte';
5054
5072
  export { default as IconLayoutAlignCenterFilled } from './layout-align-center-filled.svelte';
@@ -1015,6 +1015,7 @@ export { default as IconBuildingTunnel } from './building-tunnel.svelte';
1015
1015
  export { default as IconBuildingWarehouse } from './building-warehouse.svelte';
1016
1016
  export { default as IconBuildingWindTurbine } from './building-wind-turbine.svelte';
1017
1017
  export { default as IconBuilding } from './building.svelte';
1018
+ export { default as IconBuildings } from './buildings.svelte';
1018
1019
  export { default as IconBulbOff } from './bulb-off.svelte';
1019
1020
  export { default as IconBulb } from './bulb.svelte';
1020
1021
  export { default as IconBulldozer } from './bulldozer.svelte';
@@ -1366,6 +1367,7 @@ export { default as IconClipboard } from './clipboard.svelte';
1366
1367
  export { default as IconClock12 } from './clock-12.svelte';
1367
1368
  export { default as IconClock2 } from './clock-2.svelte';
1368
1369
  export { default as IconClock24 } from './clock-24.svelte';
1370
+ export { default as IconClockBitcoin } from './clock-bitcoin.svelte';
1369
1371
  export { default as IconClockBolt } from './clock-bolt.svelte';
1370
1372
  export { default as IconClockCancel } from './clock-cancel.svelte';
1371
1373
  export { default as IconClockCheck } from './clock-check.svelte';
@@ -1406,6 +1408,7 @@ export { default as IconClockX } from './clock-x.svelte';
1406
1408
  export { default as IconClock } from './clock.svelte';
1407
1409
  export { default as IconClothesRackOff } from './clothes-rack-off.svelte';
1408
1410
  export { default as IconClothesRack } from './clothes-rack.svelte';
1411
+ export { default as IconCloudBitcoin } from './cloud-bitcoin.svelte';
1409
1412
  export { default as IconCloudBolt } from './cloud-bolt.svelte';
1410
1413
  export { default as IconCloudCancel } from './cloud-cancel.svelte';
1411
1414
  export { default as IconCloudCheck } from './cloud-check.svelte';
@@ -2022,6 +2025,7 @@ export { default as IconExposurePlus2 } from './exposure-plus-2.svelte';
2022
2025
  export { default as IconExposure } from './exposure.svelte';
2023
2026
  export { default as IconExternalLinkOff } from './external-link-off.svelte';
2024
2027
  export { default as IconExternalLink } from './external-link.svelte';
2028
+ export { default as IconEyeBitcoin } from './eye-bitcoin.svelte';
2025
2029
  export { default as IconEyeBolt } from './eye-bolt.svelte';
2026
2030
  export { default as IconEyeCancel } from './eye-cancel.svelte';
2027
2031
  export { default as IconEyeCheck } from './eye-check.svelte';
@@ -2197,6 +2201,7 @@ export { default as IconFish } from './fish.svelte';
2197
2201
  export { default as IconFlag2Off } from './flag-2-off.svelte';
2198
2202
  export { default as IconFlag2 } from './flag-2.svelte';
2199
2203
  export { default as IconFlag3 } from './flag-3.svelte';
2204
+ export { default as IconFlagBitcoin } from './flag-bitcoin.svelte';
2200
2205
  export { default as IconFlagBolt } from './flag-bolt.svelte';
2201
2206
  export { default as IconFlagCancel } from './flag-cancel.svelte';
2202
2207
  export { default as IconFlagCheck } from './flag-check.svelte';
@@ -2404,6 +2409,7 @@ export { default as IconHeadphones } from './headphones.svelte';
2404
2409
  export { default as IconHeadsetOff } from './headset-off.svelte';
2405
2410
  export { default as IconHeadset } from './headset.svelte';
2406
2411
  export { default as IconHealthRecognition } from './health-recognition.svelte';
2412
+ export { default as IconHeartBitcoin } from './heart-bitcoin.svelte';
2407
2413
  export { default as IconHeartBolt } from './heart-bolt.svelte';
2408
2414
  export { default as IconHeartBroken } from './heart-broken.svelte';
2409
2415
  export { default as IconHeartCancel } from './heart-cancel.svelte';
@@ -2508,6 +2514,7 @@ export { default as IconHistoryOff } from './history-off.svelte';
2508
2514
  export { default as IconHistoryToggle } from './history-toggle.svelte';
2509
2515
  export { default as IconHistory } from './history.svelte';
2510
2516
  export { default as IconHome2 } from './home-2.svelte';
2517
+ export { default as IconHomeBitcoin } from './home-bitcoin.svelte';
2511
2518
  export { default as IconHomeBolt } from './home-bolt.svelte';
2512
2519
  export { default as IconHomeCancel } from './home-cancel.svelte';
2513
2520
  export { default as IconHomeCheck } from './home-check.svelte';
@@ -2631,6 +2638,8 @@ export { default as IconKeyframeAlignHorizontal } from './keyframe-align-horizon
2631
2638
  export { default as IconKeyframeAlignVertical } from './keyframe-align-vertical.svelte';
2632
2639
  export { default as IconKeyframe } from './keyframe.svelte';
2633
2640
  export { default as IconKeyframes } from './keyframes.svelte';
2641
+ export { default as IconLabelOff } from './label-off.svelte';
2642
+ export { default as IconLabel } from './label.svelte';
2634
2643
  export { default as IconLadderOff } from './ladder-off.svelte';
2635
2644
  export { default as IconLadder } from './ladder.svelte';
2636
2645
  export { default as IconLadle } from './ladle.svelte';
@@ -2815,6 +2824,7 @@ export { default as IconLocationX } from './location-x.svelte';
2815
2824
  export { default as IconLocation } from './location.svelte';
2816
2825
  export { default as IconLockAccessOff } from './lock-access-off.svelte';
2817
2826
  export { default as IconLockAccess } from './lock-access.svelte';
2827
+ export { default as IconLockBitcoin } from './lock-bitcoin.svelte';
2818
2828
  export { default as IconLockBolt } from './lock-bolt.svelte';
2819
2829
  export { default as IconLockCancel } from './lock-cancel.svelte';
2820
2830
  export { default as IconLockCheck } from './lock-check.svelte';
@@ -2866,6 +2876,7 @@ export { default as IconMagnetOff } from './magnet-off.svelte';
2866
2876
  export { default as IconMagnet } from './magnet.svelte';
2867
2877
  export { default as IconMagnetic } from './magnetic.svelte';
2868
2878
  export { default as IconMailAi } from './mail-ai.svelte';
2879
+ export { default as IconMailBitcoin } from './mail-bitcoin.svelte';
2869
2880
  export { default as IconMailBolt } from './mail-bolt.svelte';
2870
2881
  export { default as IconMailCancel } from './mail-cancel.svelte';
2871
2882
  export { default as IconMailCheck } from './mail-check.svelte';
@@ -2960,6 +2971,7 @@ export { default as IconMath1Divide2 } from './math-1-divide-2.svelte';
2960
2971
  export { default as IconMath1Divide3 } from './math-1-divide-3.svelte';
2961
2972
  export { default as IconMathAvg } from './math-avg.svelte';
2962
2973
  export { default as IconMathCos } from './math-cos.svelte';
2974
+ export { default as IconMathCtg } from './math-ctg.svelte';
2963
2975
  export { default as IconMathEqualGreater } from './math-equal-greater.svelte';
2964
2976
  export { default as IconMathEqualLower } from './math-equal-lower.svelte';
2965
2977
  export { default as IconMathFunctionOff } from './math-function-off.svelte';
@@ -2977,8 +2989,10 @@ export { default as IconMathNot } from './math-not.svelte';
2977
2989
  export { default as IconMathOff } from './math-off.svelte';
2978
2990
  export { default as IconMathPiDivide2 } from './math-pi-divide-2.svelte';
2979
2991
  export { default as IconMathPi } from './math-pi.svelte';
2992
+ export { default as IconMathSec } from './math-sec.svelte';
2980
2993
  export { default as IconMathSin } from './math-sin.svelte';
2981
2994
  export { default as IconMathSymbols } from './math-symbols.svelte';
2995
+ export { default as IconMathTg } from './math-tg.svelte';
2982
2996
  export { default as IconMathXDivide2 } from './math-x-divide-2.svelte';
2983
2997
  export { default as IconMathXDivideY2 } from './math-x-divide-y-2.svelte';
2984
2998
  export { default as IconMathXDivideY } from './math-x-divide-y.svelte';
@@ -3114,6 +3128,7 @@ export { default as IconMonkeybar } from './monkeybar.svelte';
3114
3128
  export { default as IconMoodAngry } from './mood-angry.svelte';
3115
3129
  export { default as IconMoodAnnoyed2 } from './mood-annoyed-2.svelte';
3116
3130
  export { default as IconMoodAnnoyed } from './mood-annoyed.svelte';
3131
+ export { default as IconMoodBitcoin } from './mood-bitcoin.svelte';
3117
3132
  export { default as IconMoodBoy } from './mood-boy.svelte';
3118
3133
  export { default as IconMoodCheck } from './mood-check.svelte';
3119
3134
  export { default as IconMoodCog } from './mood-cog.svelte';
@@ -3425,6 +3440,7 @@ export { default as IconPhonePlus } from './phone-plus.svelte';
3425
3440
  export { default as IconPhoneX } from './phone-x.svelte';
3426
3441
  export { default as IconPhone } from './phone.svelte';
3427
3442
  export { default as IconPhotoAi } from './photo-ai.svelte';
3443
+ export { default as IconPhotoBitcoin } from './photo-bitcoin.svelte';
3428
3444
  export { default as IconPhotoBolt } from './photo-bolt.svelte';
3429
3445
  export { default as IconPhotoCancel } from './photo-cancel.svelte';
3430
3446
  export { default as IconPhotoCheck } from './photo-check.svelte';
@@ -4428,6 +4444,7 @@ export { default as IconUnlink } from './unlink.svelte';
4428
4444
  export { default as IconUpload } from './upload.svelte';
4429
4445
  export { default as IconUrgent } from './urgent.svelte';
4430
4446
  export { default as IconUsb } from './usb.svelte';
4447
+ export { default as IconUserBitcoin } from './user-bitcoin.svelte';
4431
4448
  export { default as IconUserBolt } from './user-bolt.svelte';
4432
4449
  export { default as IconUserCancel } from './user-cancel.svelte';
4433
4450
  export { default as IconUserCheck } from './user-check.svelte';
@@ -5049,6 +5066,7 @@ export { default as IconKeyframeAlignHorizontalFilled } from './keyframe-align-h
5049
5066
  export { default as IconKeyframeAlignVerticalFilled } from './keyframe-align-vertical-filled.svelte';
5050
5067
  export { default as IconKeyframeFilled } from './keyframe-filled.svelte';
5051
5068
  export { default as IconKeyframesFilled } from './keyframes-filled.svelte';
5069
+ export { default as IconLabelFilled } from './label-filled.svelte';
5052
5070
  export { default as IconLayout2Filled } from './layout-2-filled.svelte';
5053
5071
  export { default as IconLayoutAlignBottomFilled } from './layout-align-bottom-filled.svelte';
5054
5072
  export { default as IconLayoutAlignCenterFilled } from './layout-align-center-filled.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M16.52 6a2 2 0 0 1 1.561 .75l3.7 4.625a1 1 0 0 1 0 1.25l-3.7 4.624a2 2 0 0 1 -1.561 .751h-10.52a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3z" }]];
3
+ </script>
4
+ <Icon type="filled" name="label-filled" {...$$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 LabelFilledProps = typeof __propDef.props;
13
+ export type LabelFilledEvents = typeof __propDef.events;
14
+ export type LabelFilledSlots = typeof __propDef.slots;
15
+ export default class LabelFilled extends SvelteComponentTyped<LabelFilledProps, LabelFilledEvents, LabelFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 7h-1a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h10.52a1 1 0 0 0 .394 -.081m1.86 -2.137l2.226 -2.782l-3.7 -4.625a1 1 0 0 0 -.78 -.375h-5.52" }], ["path", { "d": "M3 3l18 18" }]];
3
+ </script>
4
+ <Icon type="outline" name="label-off" {...$$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 LabelOffProps = typeof __propDef.props;
13
+ export type LabelOffEvents = typeof __propDef.events;
14
+ export type LabelOffSlots = typeof __propDef.slots;
15
+ export default class LabelOff extends SvelteComponentTyped<LabelOffProps, LabelOffEvents, LabelOffSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M16.52 7h-10.52a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h10.52a1 1 0 0 0 .78 -.375l3.7 -4.625l-3.7 -4.625a1 1 0 0 0 -.78 -.375" }]];
3
+ </script>
4
+ <Icon type="outline" name="label" {...$$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 LabelProps = typeof __propDef.props;
13
+ export type LabelEvents = typeof __propDef.events;
14
+ export type LabelSlots = typeof __propDef.slots;
15
+ export default class Label extends SvelteComponentTyped<LabelProps, LabelEvents, LabelSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }], ["path", { "d": "M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10" }], ["path", { "d": "M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0" }], ["path", { "d": "M8 11v-4a4 4 0 1 1 8 0v4" }]];
3
+ </script>
4
+ <Icon type="outline" name="lock-bitcoin" {...$$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 LockBitcoinProps = typeof __propDef.props;
13
+ export type LockBitcoinEvents = typeof __propDef.events;
14
+ export type LockBitcoinSlots = typeof __propDef.slots;
15
+ export default class LockBitcoin extends SvelteComponentTyped<LockBitcoinProps, LockBitcoinEvents, LockBitcoinSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }], ["path", { "d": "M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4" }], ["path", { "d": "M3 7l9 6l9 -6" }]];
3
+ </script>
4
+ <Icon type="outline" name="mail-bitcoin" {...$$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 MailBitcoinProps = typeof __propDef.props;
13
+ export type MailBitcoinEvents = typeof __propDef.events;
14
+ export type MailBitcoinSlots = typeof __propDef.slots;
15
+ export default class MailBitcoin extends SvelteComponentTyped<MailBitcoinProps, MailBitcoinEvents, MailBitcoinSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M10 8h4" }], ["path", { "d": "M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1" }], ["path", { "d": "M12 8v8" }], ["path", { "d": "M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="math-ctg" {...$$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 MathCtgProps = typeof __propDef.props;
13
+ export type MathCtgEvents = typeof __propDef.events;
14
+ export type MathCtgSlots = typeof __propDef.slots;
15
+ export default class MathCtg extends SvelteComponentTyped<MathCtgProps, MathCtgEvents, MathCtgSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 15c.345 .6 1.258 1 2 1a2 2 0 1 0 0 -4a2 2 0 1 1 0 -4c.746 0 1.656 .394 2 1" }], ["path", { "d": "M21 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0" }], ["path", { "d": "M14 8h-4v8h4" }], ["path", { "d": "M10 12h2.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="math-sec" {...$$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 MathSecProps = typeof __propDef.props;
13
+ export type MathSecEvents = typeof __propDef.events;
14
+ export type MathSecSlots = typeof __propDef.slots;
15
+ export default class MathSec extends SvelteComponentTyped<MathSecProps, MathSecEvents, MathSecSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 8h4" }], ["path", { "d": "M9 8v8" }], ["path", { "d": "M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1" }]];
3
+ </script>
4
+ <Icon type="outline" name="math-tg" {...$$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 MathTgProps = typeof __propDef.props;
13
+ export type MathTgEvents = typeof __propDef.events;
14
+ export type MathTgSlots = typeof __propDef.slots;
15
+ export default class MathTg extends SvelteComponentTyped<MathTgProps, MathTgEvents, MathTgSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }], ["path", { "d": "M20.87 10.48a9 9 0 1 0 -7.876 10.465" }], ["path", { "d": "M9 10h.01" }], ["path", { "d": "M15 10h.01" }], ["path", { "d": "M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151" }]];
3
+ </script>
4
+ <Icon type="outline" name="mood-bitcoin" {...$$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 MoodBitcoinProps = typeof __propDef.props;
13
+ export type MoodBitcoinEvents = typeof __propDef.events;
14
+ export type MoodBitcoinSlots = typeof __propDef.slots;
15
+ export default class MoodBitcoin extends SvelteComponentTyped<MoodBitcoinProps, MoodBitcoinEvents, MoodBitcoinSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }], ["path", { "d": "M15 8h.01" }], ["path", { "d": "M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5" }], ["path", { "d": "M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="photo-bitcoin" {...$$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 PhotoBitcoinProps = typeof __propDef.props;
13
+ export type PhotoBitcoinEvents = typeof __propDef.events;
14
+ export type PhotoBitcoinSlots = typeof __propDef.slots;
15
+ export default class PhotoBitcoin extends SvelteComponentTyped<PhotoBitcoinProps, PhotoBitcoinEvents, PhotoBitcoinSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }], ["path", { "d": "M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0" }], ["path", { "d": "M6 21v-2a4 4 0 0 1 4 -4h3" }]];
3
+ </script>
4
+ <Icon type="outline" name="user-bitcoin" {...$$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 UserBitcoinProps = typeof __propDef.props;
13
+ export type UserBitcoinEvents = typeof __propDef.events;
14
+ export type UserBitcoinSlots = typeof __propDef.slots;
15
+ export default class UserBitcoin extends SvelteComponentTyped<UserBitcoinProps, UserBitcoinEvents, UserBitcoinSlots> {
16
+ }
17
+ export {};
@@ -1016,6 +1016,7 @@ export default [
1016
1016
  "building-warehouse",
1017
1017
  "building-wind-turbine",
1018
1018
  "building",
1019
+ "buildings",
1019
1020
  "bulb-off",
1020
1021
  "bulb",
1021
1022
  "bulldozer",
@@ -1367,6 +1368,7 @@ export default [
1367
1368
  "clock-12",
1368
1369
  "clock-2",
1369
1370
  "clock-24",
1371
+ "clock-bitcoin",
1370
1372
  "clock-bolt",
1371
1373
  "clock-cancel",
1372
1374
  "clock-check",
@@ -1407,6 +1409,7 @@ export default [
1407
1409
  "clock",
1408
1410
  "clothes-rack-off",
1409
1411
  "clothes-rack",
1412
+ "cloud-bitcoin",
1410
1413
  "cloud-bolt",
1411
1414
  "cloud-cancel",
1412
1415
  "cloud-check",
@@ -2023,6 +2026,7 @@ export default [
2023
2026
  "exposure",
2024
2027
  "external-link-off",
2025
2028
  "external-link",
2029
+ "eye-bitcoin",
2026
2030
  "eye-bolt",
2027
2031
  "eye-cancel",
2028
2032
  "eye-check",
@@ -2198,6 +2202,7 @@ export default [
2198
2202
  "flag-2-off",
2199
2203
  "flag-2",
2200
2204
  "flag-3",
2205
+ "flag-bitcoin",
2201
2206
  "flag-bolt",
2202
2207
  "flag-cancel",
2203
2208
  "flag-check",
@@ -2405,6 +2410,7 @@ export default [
2405
2410
  "headset-off",
2406
2411
  "headset",
2407
2412
  "health-recognition",
2413
+ "heart-bitcoin",
2408
2414
  "heart-bolt",
2409
2415
  "heart-broken",
2410
2416
  "heart-cancel",
@@ -2509,6 +2515,7 @@ export default [
2509
2515
  "history-toggle",
2510
2516
  "history",
2511
2517
  "home-2",
2518
+ "home-bitcoin",
2512
2519
  "home-bolt",
2513
2520
  "home-cancel",
2514
2521
  "home-check",
@@ -2632,6 +2639,8 @@ export default [
2632
2639
  "keyframe-align-vertical",
2633
2640
  "keyframe",
2634
2641
  "keyframes",
2642
+ "label-off",
2643
+ "label",
2635
2644
  "ladder-off",
2636
2645
  "ladder",
2637
2646
  "ladle",
@@ -2816,6 +2825,7 @@ export default [
2816
2825
  "location",
2817
2826
  "lock-access-off",
2818
2827
  "lock-access",
2828
+ "lock-bitcoin",
2819
2829
  "lock-bolt",
2820
2830
  "lock-cancel",
2821
2831
  "lock-check",
@@ -2867,6 +2877,7 @@ export default [
2867
2877
  "magnet",
2868
2878
  "magnetic",
2869
2879
  "mail-ai",
2880
+ "mail-bitcoin",
2870
2881
  "mail-bolt",
2871
2882
  "mail-cancel",
2872
2883
  "mail-check",
@@ -2961,6 +2972,7 @@ export default [
2961
2972
  "math-1-divide-3",
2962
2973
  "math-avg",
2963
2974
  "math-cos",
2975
+ "math-ctg",
2964
2976
  "math-equal-greater",
2965
2977
  "math-equal-lower",
2966
2978
  "math-function-off",
@@ -2978,8 +2990,10 @@ export default [
2978
2990
  "math-off",
2979
2991
  "math-pi-divide-2",
2980
2992
  "math-pi",
2993
+ "math-sec",
2981
2994
  "math-sin",
2982
2995
  "math-symbols",
2996
+ "math-tg",
2983
2997
  "math-x-divide-2",
2984
2998
  "math-x-divide-y-2",
2985
2999
  "math-x-divide-y",
@@ -3115,6 +3129,7 @@ export default [
3115
3129
  "mood-angry",
3116
3130
  "mood-annoyed-2",
3117
3131
  "mood-annoyed",
3132
+ "mood-bitcoin",
3118
3133
  "mood-boy",
3119
3134
  "mood-check",
3120
3135
  "mood-cog",
@@ -3426,6 +3441,7 @@ export default [
3426
3441
  "phone-x",
3427
3442
  "phone",
3428
3443
  "photo-ai",
3444
+ "photo-bitcoin",
3429
3445
  "photo-bolt",
3430
3446
  "photo-cancel",
3431
3447
  "photo-check",
@@ -4429,6 +4445,7 @@ export default [
4429
4445
  "upload",
4430
4446
  "urgent",
4431
4447
  "usb",
4448
+ "user-bitcoin",
4432
4449
  "user-bolt",
4433
4450
  "user-cancel",
4434
4451
  "user-check",
@@ -5050,6 +5067,7 @@ export default [
5050
5067
  "keyframe-align-vertical-filled",
5051
5068
  "keyframe-filled",
5052
5069
  "keyframes-filled",
5070
+ "label-filled",
5053
5071
  "layout-2-filled",
5054
5072
  "layout-align-bottom-filled",
5055
5073
  "layout-align-center-filled",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.8.0",
3
+ "version": "3.9.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.",
@@ -49,7 +49,7 @@
49
49
  "imports-check": "attw $(npm pack)"
50
50
  },
51
51
  "dependencies": {
52
- "@tabler/icons": "3.8.0"
52
+ "@tabler/icons": "3.9.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@sveltejs/package": "^2.2.7",