@tabler/icons-svelte 3.41.0 → 3.42.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/README.md +2 -2
  2. package/dist/icons/brand-stellar.svelte +6 -0
  3. package/dist/icons/brand-stellar.svelte.d.ts +17 -0
  4. package/dist/icons/brand-vechain.svelte +6 -0
  5. package/dist/icons/brand-vechain.svelte.d.ts +17 -0
  6. package/dist/icons/clef-staff.svelte +6 -0
  7. package/dist/icons/clef-staff.svelte.d.ts +17 -0
  8. package/dist/icons/clef.svelte +6 -0
  9. package/dist/icons/clef.svelte.d.ts +17 -0
  10. package/dist/icons/currency-husd.svelte +6 -0
  11. package/dist/icons/currency-husd.svelte.d.ts +17 -0
  12. package/dist/icons/currency-tether.svelte +6 -0
  13. package/dist/icons/currency-tether.svelte.d.ts +17 -0
  14. package/dist/icons/currency-zcash.svelte +6 -0
  15. package/dist/icons/currency-zcash.svelte.d.ts +17 -0
  16. package/dist/icons/device-computer-camera-2.svelte +6 -0
  17. package/dist/icons/device-computer-camera-2.svelte.d.ts +17 -0
  18. package/dist/icons/door-hanger.svelte +6 -0
  19. package/dist/icons/door-hanger.svelte.d.ts +17 -0
  20. package/dist/icons/earphone-bluetooth.svelte +6 -0
  21. package/dist/icons/earphone-bluetooth.svelte.d.ts +17 -0
  22. package/dist/icons/grape.svelte +6 -0
  23. package/dist/icons/grape.svelte.d.ts +17 -0
  24. package/dist/icons/hammer-drill.svelte +6 -0
  25. package/dist/icons/hammer-drill.svelte.d.ts +17 -0
  26. package/dist/icons/index.d.ts +18 -0
  27. package/dist/icons/index.js +18 -0
  28. package/dist/icons/infinity-2.svelte +6 -0
  29. package/dist/icons/infinity-2.svelte.d.ts +17 -0
  30. package/dist/icons/lawn-mower.svelte +6 -0
  31. package/dist/icons/lawn-mower.svelte.d.ts +17 -0
  32. package/dist/icons/loader-4.svelte +6 -0
  33. package/dist/icons/loader-4.svelte.d.ts +17 -0
  34. package/dist/icons/mosque.svelte +6 -0
  35. package/dist/icons/mosque.svelte.d.ts +17 -0
  36. package/dist/icons/pendulum.svelte +6 -0
  37. package/dist/icons/pendulum.svelte.d.ts +17 -0
  38. package/dist/icons/plunger.svelte +6 -0
  39. package/dist/icons/plunger.svelte.d.ts +17 -0
  40. package/dist/icons/x-mark.svelte +1 -1
  41. package/dist/icons-list.js +18 -0
  42. package/package.json +4 -4
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Tabler Icons for Svelte
2
2
 
3
3
  <p align="center">
4
- <img src="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/packages/og-package-svelte.png" alt="Tabler Icons" width="838">
4
+ <a href="https://tabler.io/icons?ref=tabler-icons-readme"><img src="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/packages/og-package-svelte.png" alt="Tabler Icons" width="838"></a>
5
5
  </p>
6
6
 
7
7
  <p align="center">
@@ -9,7 +9,7 @@ Implementation of the Tabler Icons library for Svelte applications.
9
9
  <p>
10
10
 
11
11
  <p align="center">
12
- <a href="https://tabler-icons.io/"><strong>Browse all icons at tabler-icons.io &rarr;</strong></a>
12
+ <a href="https://tabler.io/icons"><strong>Browse all icons at tabler.io &rarr;</strong></a>
13
13
  </p>
14
14
 
15
15
  <p align="center">
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M21 6l-17 7v-1c-.004 -1.259 .234 -2.5 .81 -3.62c1.363 -2.686 4.178 -4.378 7.19 -4.38a7.5 7.5 0 0 1 2.61 .46" }], ["path", { "d": "M9.38 19.54a8 8 0 0 0 9.81 -3.92c.576 -1.12 .814 -2.361 .81 -3.62v-1l-17 7" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-stellar" {...$$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 BrandStellarProps = typeof __propDef.props;
13
+ export type BrandStellarEvents = typeof __propDef.events;
14
+ export type BrandStellarSlots = typeof __propDef.slots;
15
+ export default class BrandStellar extends SvelteComponentTyped<BrandStellarProps, BrandStellarEvents, BrandStellarSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M20 4l-8 16l-8 -16h2.028a4 4 0 0 1 3.578 2.211l2.894 5.789" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-vechain" {...$$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 BrandVechainProps = typeof __propDef.props;
13
+ export type BrandVechainEvents = typeof __propDef.events;
14
+ export type BrandVechainSlots = typeof __propDef.slots;
15
+ export default class BrandVechain extends SvelteComponentTyped<BrandVechainProps, BrandVechainEvents, BrandVechainSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M15 15h6" }], ["path", { "d": "M15 11h6" }], ["path", { "d": "M11 19h10" }], ["path", { "d": "M11 12a4.16 4.16 0 0 1 -5.62 3.89a3.78 3.78 0 0 1 -2.38 -3.39a3.42 3.42 0 0 1 2.34 -3.38l3.79 -1.42a2.89 2.89 0 0 0 1.87 -2.7a2 2 0 0 0 -2 -2a2 2 0 0 0 -2 2v14a2 2 0 0 1 -2 2a2 2 0 0 1 -2 -2" }]];
3
+ </script>
4
+ <Icon type="outline" name="clef-staff" {...$$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 ClefStaffProps = typeof __propDef.props;
13
+ export type ClefStaffEvents = typeof __propDef.events;
14
+ export type ClefStaffSlots = typeof __propDef.slots;
15
+ export default class ClefStaff extends SvelteComponentTyped<ClefStaffProps, ClefStaffEvents, ClefStaffSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M16 12a4.16 4.16 0 0 1 -5.62 3.89a3.78 3.78 0 0 1 -2.38 -3.39a3.42 3.42 0 0 1 2.34 -3.38l3.79 -1.42a2.89 2.89 0 0 0 1.87 -2.7a2 2 0 1 0 -4 0v14a2 2 0 1 1 -4 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="clef" {...$$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 ClefProps = typeof __propDef.props;
13
+ export type ClefEvents = typeof __propDef.events;
14
+ export type ClefSlots = typeof __propDef.slots;
15
+ export default class Clef extends SvelteComponentTyped<ClefProps, ClefEvents, ClefSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 20v-5" }], ["path", { "d": "M17 9v-5" }], ["path", { "d": "M17 20v-6a2 2 0 0 0 -2 -2h-6a2 2 0 0 1 -2 -2v-6" }]];
3
+ </script>
4
+ <Icon type="outline" name="currency-husd" {...$$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 CurrencyHusdProps = typeof __propDef.props;
13
+ export type CurrencyHusdEvents = typeof __propDef.events;
14
+ export type CurrencyHusdSlots = typeof __propDef.slots;
15
+ export default class CurrencyHusd extends SvelteComponentTyped<CurrencyHusdProps, CurrencyHusdEvents, CurrencyHusdSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 11a8 2 0 1 0 16 0a8 2 0 1 0 -16 0" }], ["path", { "d": "M12 20v-16" }], ["path", { "d": "M4 4h16" }]];
3
+ </script>
4
+ <Icon type="outline" name="currency-tether" {...$$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 CurrencyTetherProps = typeof __propDef.props;
13
+ export type CurrencyTetherEvents = typeof __propDef.events;
14
+ export type CurrencyTetherSlots = typeof __propDef.slots;
15
+ export default class CurrencyTether extends SvelteComponentTyped<CurrencyTetherProps, CurrencyTetherEvents, CurrencyTetherSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 6h10l-10 12h10" }], ["path", { "d": "M12 4v2" }], ["path", { "d": "M12 18v2" }]];
3
+ </script>
4
+ <Icon type="outline" name="currency-zcash" {...$$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 CurrencyZcashProps = typeof __propDef.props;
13
+ export type CurrencyZcashEvents = typeof __propDef.events;
14
+ export type CurrencyZcashSlots = typeof __propDef.slots;
15
+ export default class CurrencyZcash extends SvelteComponentTyped<CurrencyZcashProps, CurrencyZcashEvents, CurrencyZcashSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 14h-10a4 4 0 0 1 -4 -4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4a4 4 0 0 1 -4 4" }], ["path", { "d": "M15 14h-6v4h6v-4" }], ["path", { "d": "M17 18h-10" }], ["path", { "d": "M12 10.02v.01" }]];
3
+ </script>
4
+ <Icon type="outline" name="device-computer-camera-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 DeviceComputerCamera2Props = typeof __propDef.props;
13
+ export type DeviceComputerCamera2Events = typeof __propDef.events;
14
+ export type DeviceComputerCamera2Slots = typeof __propDef.slots;
15
+ export default class DeviceComputerCamera2 extends SvelteComponentTyped<DeviceComputerCamera2Props, DeviceComputerCamera2Events, DeviceComputerCamera2Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3a7 7 0 0 0 -5.48 2.64a1 1 0 0 0 .31 1.49l1.76 1a1 1 0 0 0 1.22 -.13a3 3 0 0 1 2.82 -.88a3.09 3.09 0 0 1 2.37 3.01v.87l-9.2 1.84a1 1 0 0 0 -.8 1v6.16a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-9.72a7.18 7.18 0 0 0 -7 -7.28" }], ["path", { "d": "M12 17v.01" }]];
3
+ </script>
4
+ <Icon type="outline" name="door-hanger" {...$$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 DoorHangerProps = typeof __propDef.props;
13
+ export type DoorHangerEvents = typeof __propDef.events;
14
+ export type DoorHangerSlots = typeof __propDef.slots;
15
+ export default class DoorHanger extends SvelteComponentTyped<DoorHangerProps, DoorHangerEvents, DoorHangerSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M6.57 12.77a6.9 6.9 0 0 1 -.57 -2.77a7 7 0 0 1 14 0" }], ["path", { "d": "M9 16l-1 1" }], ["path", { "d": "M10.83 19.83l6.36 -6.37a1 1 0 0 0 0 -1.41l-4.19 -4.24a1 1 0 0 0 -1.41 0l-6.42 6.36a4 4 0 0 0 0 5.66a4 4 0 0 0 5.66 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="earphone-bluetooth" {...$$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 EarphoneBluetoothProps = typeof __propDef.props;
13
+ export type EarphoneBluetoothEvents = typeof __propDef.events;
14
+ export type EarphoneBluetoothSlots = typeof __propDef.slots;
15
+ export default class EarphoneBluetooth extends SvelteComponentTyped<EarphoneBluetoothProps, EarphoneBluetoothEvents, EarphoneBluetoothSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M13 3a14.5 14.5 0 0 0 -1 6" }], ["path", { "d": "M12 8.9s-2.77 .52 -4.1 -.8s-.8 -4 -.8 -4s2.57 -.53 3.88 .8s1.02 4 1.02 4" }], ["path", { "d": "M14 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0" }], ["path", { "d": "M14 17a2 2 0 1 1 0 -4a2 2 0 0 1 0 4" }], ["path", { "d": "M10 17a2 2 0 1 1 0 -4a2 2 0 0 1 0 4" }], ["path", { "d": "M12 13a2 2 0 1 1 0 -4a2 2 0 0 1 0 4" }], ["path", { "d": "M16 13a2 2 0 1 1 0 -4a2 2 0 0 1 0 4" }], ["path", { "d": "M8 13a2 2 0 1 1 0 -4a2 2 0 0 1 0 4" }]];
3
+ </script>
4
+ <Icon type="outline" name="grape" {...$$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 GrapeProps = typeof __propDef.props;
13
+ export type GrapeEvents = typeof __propDef.events;
14
+ export type GrapeSlots = typeof __propDef.slots;
15
+ export default class Grape extends SvelteComponentTyped<GrapeProps, GrapeEvents, GrapeSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 15v6" }], ["path", { "d": "M16 5h4" }], ["path", { "d": "M8 5h-4" }], ["path", { "d": "M15 11h-6a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1" }], ["path", { "d": "M14 11h-4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-3" }]];
3
+ </script>
4
+ <Icon type="outline" name="hammer-drill" {...$$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 HammerDrillProps = typeof __propDef.props;
13
+ export type HammerDrillEvents = typeof __propDef.events;
14
+ export type HammerDrillSlots = typeof __propDef.slots;
15
+ export default class HammerDrill extends SvelteComponentTyped<HammerDrillProps, HammerDrillEvents, HammerDrillSlots> {
16
+ }
17
+ export {};
@@ -901,6 +901,7 @@ export { default as IconBrandSpotify } from './brand-spotify.svelte';
901
901
  export { default as IconBrandStackoverflow } from './brand-stackoverflow.svelte';
902
902
  export { default as IconBrandStackshare } from './brand-stackshare.svelte';
903
903
  export { default as IconBrandSteam } from './brand-steam.svelte';
904
+ export { default as IconBrandStellar } from './brand-stellar.svelte';
904
905
  export { default as IconBrandStocktwits } from './brand-stocktwits.svelte';
905
906
  export { default as IconBrandStorj } from './brand-storj.svelte';
906
907
  export { default as IconBrandStorybook } from './brand-storybook.svelte';
@@ -948,6 +949,7 @@ export { default as IconBrandUnity } from './brand-unity.svelte';
948
949
  export { default as IconBrandUnsplash } from './brand-unsplash.svelte';
949
950
  export { default as IconBrandUpwork } from './brand-upwork.svelte';
950
951
  export { default as IconBrandValorant } from './brand-valorant.svelte';
952
+ export { default as IconBrandVechain } from './brand-vechain.svelte';
951
953
  export { default as IconBrandVercel } from './brand-vercel.svelte';
952
954
  export { default as IconBrandVimeo } from './brand-vimeo.svelte';
953
955
  export { default as IconBrandVinted } from './brand-vinted.svelte';
@@ -1477,6 +1479,8 @@ export { default as IconCircuitSwitchOpen } from './circuit-switch-open.svelte';
1477
1479
  export { default as IconCircuitVoltmeter } from './circuit-voltmeter.svelte';
1478
1480
  export { default as IconClearAll } from './clear-all.svelte';
1479
1481
  export { default as IconClearFormatting } from './clear-formatting.svelte';
1482
+ export { default as IconClefStaff } from './clef-staff.svelte';
1483
+ export { default as IconClef } from './clef.svelte';
1480
1484
  export { default as IconClick } from './click.svelte';
1481
1485
  export { default as IconCliffJumping } from './cliff-jumping.svelte';
1482
1486
  export { default as IconClipboardCheck } from './clipboard-check.svelte';
@@ -1738,6 +1742,7 @@ export { default as IconCurrencyForint } from './currency-forint.svelte';
1738
1742
  export { default as IconCurrencyFrank } from './currency-frank.svelte';
1739
1743
  export { default as IconCurrencyGuarani } from './currency-guarani.svelte';
1740
1744
  export { default as IconCurrencyHryvnia } from './currency-hryvnia.svelte';
1745
+ export { default as IconCurrencyHusd } from './currency-husd.svelte';
1741
1746
  export { default as IconCurrencyIranianRial } from './currency-iranian-rial.svelte';
1742
1747
  export { default as IconCurrencyKip } from './currency-kip.svelte';
1743
1748
  export { default as IconCurrencyKroneCzech } from './currency-krone-czech.svelte';
@@ -1771,12 +1776,14 @@ export { default as IconCurrencySolana } from './currency-solana.svelte';
1771
1776
  export { default as IconCurrencySom } from './currency-som.svelte';
1772
1777
  export { default as IconCurrencyTaka } from './currency-taka.svelte';
1773
1778
  export { default as IconCurrencyTenge } from './currency-tenge.svelte';
1779
+ export { default as IconCurrencyTether } from './currency-tether.svelte';
1774
1780
  export { default as IconCurrencyTugrik } from './currency-tugrik.svelte';
1775
1781
  export { default as IconCurrencyWon } from './currency-won.svelte';
1776
1782
  export { default as IconCurrencyXrp } from './currency-xrp.svelte';
1777
1783
  export { default as IconCurrencyYenOff } from './currency-yen-off.svelte';
1778
1784
  export { default as IconCurrencyYen } from './currency-yen.svelte';
1779
1785
  export { default as IconCurrencyYuan } from './currency-yuan.svelte';
1786
+ export { default as IconCurrencyZcash } from './currency-zcash.svelte';
1780
1787
  export { default as IconCurrencyZloty } from './currency-zloty.svelte';
1781
1788
  export { default as IconCurrency } from './currency.svelte';
1782
1789
  export { default as IconCurrentLocationOff } from './current-location-off.svelte';
@@ -1827,6 +1834,7 @@ export { default as IconDeviceAudioTape } from './device-audio-tape.svelte';
1827
1834
  export { default as IconDeviceCameraPhone } from './device-camera-phone.svelte';
1828
1835
  export { default as IconDeviceCctvOff } from './device-cctv-off.svelte';
1829
1836
  export { default as IconDeviceCctv } from './device-cctv.svelte';
1837
+ export { default as IconDeviceComputerCamera2 } from './device-computer-camera-2.svelte';
1830
1838
  export { default as IconDeviceComputerCameraOff } from './device-computer-camera-off.svelte';
1831
1839
  export { default as IconDeviceComputerCamera } from './device-computer-camera.svelte';
1832
1840
  export { default as IconDeviceDesktopAnalytics } from './device-desktop-analytics.svelte';
@@ -2074,6 +2082,7 @@ export { default as IconDogBowl } from './dog-bowl.svelte';
2074
2082
  export { default as IconDog } from './dog.svelte';
2075
2083
  export { default as IconDoorEnter } from './door-enter.svelte';
2076
2084
  export { default as IconDoorExit } from './door-exit.svelte';
2085
+ export { default as IconDoorHanger } from './door-hanger.svelte';
2077
2086
  export { default as IconDoorOff } from './door-off.svelte';
2078
2087
  export { default as IconDoor } from './door.svelte';
2079
2088
  export { default as IconDotsCircleHorizontal } from './dots-circle-horizontal.svelte';
@@ -2118,6 +2127,7 @@ export { default as IconEPassport } from './e-passport.svelte';
2118
2127
  export { default as IconEarOff } from './ear-off.svelte';
2119
2128
  export { default as IconEarScan } from './ear-scan.svelte';
2120
2129
  export { default as IconEar } from './ear.svelte';
2130
+ export { default as IconEarphoneBluetooth } from './earphone-bluetooth.svelte';
2121
2131
  export { default as IconEaseInControlPoint } from './ease-in-control-point.svelte';
2122
2132
  export { default as IconEaseInOutControlPoints } from './ease-in-out-control-points.svelte';
2123
2133
  export { default as IconEaseInOut } from './ease-in-out.svelte';
@@ -2528,6 +2538,7 @@ export { default as IconGolf } from './golf.svelte';
2528
2538
  export { default as IconGps } from './gps.svelte';
2529
2539
  export { default as IconGradienter } from './gradienter.svelte';
2530
2540
  export { default as IconGrain } from './grain.svelte';
2541
+ export { default as IconGrape } from './grape.svelte';
2531
2542
  export { default as IconGraphOff } from './graph-off.svelte';
2532
2543
  export { default as IconGraph } from './graph.svelte';
2533
2544
  export { default as IconGrave2 } from './grave-2.svelte';
@@ -2553,6 +2564,7 @@ export { default as IconH3 } from './h-3.svelte';
2553
2564
  export { default as IconH4 } from './h-4.svelte';
2554
2565
  export { default as IconH5 } from './h-5.svelte';
2555
2566
  export { default as IconH6 } from './h-6.svelte';
2567
+ export { default as IconHammerDrill } from './hammer-drill.svelte';
2556
2568
  export { default as IconHammerOff } from './hammer-off.svelte';
2557
2569
  export { default as IconHammer } from './hammer.svelte';
2558
2570
  export { default as IconHandClickOff } from './hand-click-off.svelte';
@@ -2779,6 +2791,7 @@ export { default as IconInboxOff } from './inbox-off.svelte';
2779
2791
  export { default as IconInbox } from './inbox.svelte';
2780
2792
  export { default as IconIndentDecrease } from './indent-decrease.svelte';
2781
2793
  export { default as IconIndentIncrease } from './indent-increase.svelte';
2794
+ export { default as IconInfinity2 } from './infinity-2.svelte';
2782
2795
  export { default as IconInfinityOff } from './infinity-off.svelte';
2783
2796
  export { default as IconInfinity } from './infinity.svelte';
2784
2797
  export { default as IconInfoCircle } from './info-circle.svelte';
@@ -2860,6 +2873,7 @@ export { default as IconLaurelWreath1 } from './laurel-wreath-1.svelte';
2860
2873
  export { default as IconLaurelWreath2 } from './laurel-wreath-2.svelte';
2861
2874
  export { default as IconLaurelWreath3 } from './laurel-wreath-3.svelte';
2862
2875
  export { default as IconLaurelWreath } from './laurel-wreath.svelte';
2876
+ export { default as IconLawnMower } from './lawn-mower.svelte';
2863
2877
  export { default as IconLayersDifference } from './layers-difference.svelte';
2864
2878
  export { default as IconLayersIntersect2 } from './layers-intersect-2.svelte';
2865
2879
  export { default as IconLayersIntersect } from './layers-intersect.svelte';
@@ -3003,6 +3017,7 @@ export { default as IconLiveView } from './live-view.svelte';
3003
3017
  export { default as IconLoadBalancer } from './load-balancer.svelte';
3004
3018
  export { default as IconLoader2 } from './loader-2.svelte';
3005
3019
  export { default as IconLoader3 } from './loader-3.svelte';
3020
+ export { default as IconLoader4 } from './loader-4.svelte';
3006
3021
  export { default as IconLoaderQuarter } from './loader-quarter.svelte';
3007
3022
  export { default as IconLoader } from './loader.svelte';
3008
3023
  export { default as IconLocationBolt } from './location-bolt.svelte';
@@ -3405,6 +3420,7 @@ export { default as IconMoonOff } from './moon-off.svelte';
3405
3420
  export { default as IconMoonStars } from './moon-stars.svelte';
3406
3421
  export { default as IconMoon } from './moon.svelte';
3407
3422
  export { default as IconMoped } from './moped.svelte';
3423
+ export { default as IconMosque } from './mosque.svelte';
3408
3424
  export { default as IconMotorbike } from './motorbike.svelte';
3409
3425
  export { default as IconMountainOff } from './mountain-off.svelte';
3410
3426
  export { default as IconMountain } from './mountain.svelte';
@@ -3689,6 +3705,7 @@ export { default as IconPencilStar } from './pencil-star.svelte';
3689
3705
  export { default as IconPencilUp } from './pencil-up.svelte';
3690
3706
  export { default as IconPencilX } from './pencil-x.svelte';
3691
3707
  export { default as IconPencil } from './pencil.svelte';
3708
+ export { default as IconPendulum } from './pendulum.svelte';
3692
3709
  export { default as IconPennant2 } from './pennant-2.svelte';
3693
3710
  export { default as IconPennantOff } from './pennant-off.svelte';
3694
3711
  export { default as IconPennant } from './pennant.svelte';
@@ -3863,6 +3880,7 @@ export { default as IconPlugConnected } from './plug-connected.svelte';
3863
3880
  export { default as IconPlugOff } from './plug-off.svelte';
3864
3881
  export { default as IconPlugX } from './plug-x.svelte';
3865
3882
  export { default as IconPlug } from './plug.svelte';
3883
+ export { default as IconPlunger } from './plunger.svelte';
3866
3884
  export { default as IconPlusEqual } from './plus-equal.svelte';
3867
3885
  export { default as IconPlusMinus } from './plus-minus.svelte';
3868
3886
  export { default as IconPlus } from './plus.svelte';
@@ -901,6 +901,7 @@ export { default as IconBrandSpotify } from './brand-spotify.svelte';
901
901
  export { default as IconBrandStackoverflow } from './brand-stackoverflow.svelte';
902
902
  export { default as IconBrandStackshare } from './brand-stackshare.svelte';
903
903
  export { default as IconBrandSteam } from './brand-steam.svelte';
904
+ export { default as IconBrandStellar } from './brand-stellar.svelte';
904
905
  export { default as IconBrandStocktwits } from './brand-stocktwits.svelte';
905
906
  export { default as IconBrandStorj } from './brand-storj.svelte';
906
907
  export { default as IconBrandStorybook } from './brand-storybook.svelte';
@@ -948,6 +949,7 @@ export { default as IconBrandUnity } from './brand-unity.svelte';
948
949
  export { default as IconBrandUnsplash } from './brand-unsplash.svelte';
949
950
  export { default as IconBrandUpwork } from './brand-upwork.svelte';
950
951
  export { default as IconBrandValorant } from './brand-valorant.svelte';
952
+ export { default as IconBrandVechain } from './brand-vechain.svelte';
951
953
  export { default as IconBrandVercel } from './brand-vercel.svelte';
952
954
  export { default as IconBrandVimeo } from './brand-vimeo.svelte';
953
955
  export { default as IconBrandVinted } from './brand-vinted.svelte';
@@ -1477,6 +1479,8 @@ export { default as IconCircuitSwitchOpen } from './circuit-switch-open.svelte';
1477
1479
  export { default as IconCircuitVoltmeter } from './circuit-voltmeter.svelte';
1478
1480
  export { default as IconClearAll } from './clear-all.svelte';
1479
1481
  export { default as IconClearFormatting } from './clear-formatting.svelte';
1482
+ export { default as IconClefStaff } from './clef-staff.svelte';
1483
+ export { default as IconClef } from './clef.svelte';
1480
1484
  export { default as IconClick } from './click.svelte';
1481
1485
  export { default as IconCliffJumping } from './cliff-jumping.svelte';
1482
1486
  export { default as IconClipboardCheck } from './clipboard-check.svelte';
@@ -1738,6 +1742,7 @@ export { default as IconCurrencyForint } from './currency-forint.svelte';
1738
1742
  export { default as IconCurrencyFrank } from './currency-frank.svelte';
1739
1743
  export { default as IconCurrencyGuarani } from './currency-guarani.svelte';
1740
1744
  export { default as IconCurrencyHryvnia } from './currency-hryvnia.svelte';
1745
+ export { default as IconCurrencyHusd } from './currency-husd.svelte';
1741
1746
  export { default as IconCurrencyIranianRial } from './currency-iranian-rial.svelte';
1742
1747
  export { default as IconCurrencyKip } from './currency-kip.svelte';
1743
1748
  export { default as IconCurrencyKroneCzech } from './currency-krone-czech.svelte';
@@ -1771,12 +1776,14 @@ export { default as IconCurrencySolana } from './currency-solana.svelte';
1771
1776
  export { default as IconCurrencySom } from './currency-som.svelte';
1772
1777
  export { default as IconCurrencyTaka } from './currency-taka.svelte';
1773
1778
  export { default as IconCurrencyTenge } from './currency-tenge.svelte';
1779
+ export { default as IconCurrencyTether } from './currency-tether.svelte';
1774
1780
  export { default as IconCurrencyTugrik } from './currency-tugrik.svelte';
1775
1781
  export { default as IconCurrencyWon } from './currency-won.svelte';
1776
1782
  export { default as IconCurrencyXrp } from './currency-xrp.svelte';
1777
1783
  export { default as IconCurrencyYenOff } from './currency-yen-off.svelte';
1778
1784
  export { default as IconCurrencyYen } from './currency-yen.svelte';
1779
1785
  export { default as IconCurrencyYuan } from './currency-yuan.svelte';
1786
+ export { default as IconCurrencyZcash } from './currency-zcash.svelte';
1780
1787
  export { default as IconCurrencyZloty } from './currency-zloty.svelte';
1781
1788
  export { default as IconCurrency } from './currency.svelte';
1782
1789
  export { default as IconCurrentLocationOff } from './current-location-off.svelte';
@@ -1827,6 +1834,7 @@ export { default as IconDeviceAudioTape } from './device-audio-tape.svelte';
1827
1834
  export { default as IconDeviceCameraPhone } from './device-camera-phone.svelte';
1828
1835
  export { default as IconDeviceCctvOff } from './device-cctv-off.svelte';
1829
1836
  export { default as IconDeviceCctv } from './device-cctv.svelte';
1837
+ export { default as IconDeviceComputerCamera2 } from './device-computer-camera-2.svelte';
1830
1838
  export { default as IconDeviceComputerCameraOff } from './device-computer-camera-off.svelte';
1831
1839
  export { default as IconDeviceComputerCamera } from './device-computer-camera.svelte';
1832
1840
  export { default as IconDeviceDesktopAnalytics } from './device-desktop-analytics.svelte';
@@ -2074,6 +2082,7 @@ export { default as IconDogBowl } from './dog-bowl.svelte';
2074
2082
  export { default as IconDog } from './dog.svelte';
2075
2083
  export { default as IconDoorEnter } from './door-enter.svelte';
2076
2084
  export { default as IconDoorExit } from './door-exit.svelte';
2085
+ export { default as IconDoorHanger } from './door-hanger.svelte';
2077
2086
  export { default as IconDoorOff } from './door-off.svelte';
2078
2087
  export { default as IconDoor } from './door.svelte';
2079
2088
  export { default as IconDotsCircleHorizontal } from './dots-circle-horizontal.svelte';
@@ -2118,6 +2127,7 @@ export { default as IconEPassport } from './e-passport.svelte';
2118
2127
  export { default as IconEarOff } from './ear-off.svelte';
2119
2128
  export { default as IconEarScan } from './ear-scan.svelte';
2120
2129
  export { default as IconEar } from './ear.svelte';
2130
+ export { default as IconEarphoneBluetooth } from './earphone-bluetooth.svelte';
2121
2131
  export { default as IconEaseInControlPoint } from './ease-in-control-point.svelte';
2122
2132
  export { default as IconEaseInOutControlPoints } from './ease-in-out-control-points.svelte';
2123
2133
  export { default as IconEaseInOut } from './ease-in-out.svelte';
@@ -2528,6 +2538,7 @@ export { default as IconGolf } from './golf.svelte';
2528
2538
  export { default as IconGps } from './gps.svelte';
2529
2539
  export { default as IconGradienter } from './gradienter.svelte';
2530
2540
  export { default as IconGrain } from './grain.svelte';
2541
+ export { default as IconGrape } from './grape.svelte';
2531
2542
  export { default as IconGraphOff } from './graph-off.svelte';
2532
2543
  export { default as IconGraph } from './graph.svelte';
2533
2544
  export { default as IconGrave2 } from './grave-2.svelte';
@@ -2553,6 +2564,7 @@ export { default as IconH3 } from './h-3.svelte';
2553
2564
  export { default as IconH4 } from './h-4.svelte';
2554
2565
  export { default as IconH5 } from './h-5.svelte';
2555
2566
  export { default as IconH6 } from './h-6.svelte';
2567
+ export { default as IconHammerDrill } from './hammer-drill.svelte';
2556
2568
  export { default as IconHammerOff } from './hammer-off.svelte';
2557
2569
  export { default as IconHammer } from './hammer.svelte';
2558
2570
  export { default as IconHandClickOff } from './hand-click-off.svelte';
@@ -2779,6 +2791,7 @@ export { default as IconInboxOff } from './inbox-off.svelte';
2779
2791
  export { default as IconInbox } from './inbox.svelte';
2780
2792
  export { default as IconIndentDecrease } from './indent-decrease.svelte';
2781
2793
  export { default as IconIndentIncrease } from './indent-increase.svelte';
2794
+ export { default as IconInfinity2 } from './infinity-2.svelte';
2782
2795
  export { default as IconInfinityOff } from './infinity-off.svelte';
2783
2796
  export { default as IconInfinity } from './infinity.svelte';
2784
2797
  export { default as IconInfoCircle } from './info-circle.svelte';
@@ -2860,6 +2873,7 @@ export { default as IconLaurelWreath1 } from './laurel-wreath-1.svelte';
2860
2873
  export { default as IconLaurelWreath2 } from './laurel-wreath-2.svelte';
2861
2874
  export { default as IconLaurelWreath3 } from './laurel-wreath-3.svelte';
2862
2875
  export { default as IconLaurelWreath } from './laurel-wreath.svelte';
2876
+ export { default as IconLawnMower } from './lawn-mower.svelte';
2863
2877
  export { default as IconLayersDifference } from './layers-difference.svelte';
2864
2878
  export { default as IconLayersIntersect2 } from './layers-intersect-2.svelte';
2865
2879
  export { default as IconLayersIntersect } from './layers-intersect.svelte';
@@ -3003,6 +3017,7 @@ export { default as IconLiveView } from './live-view.svelte';
3003
3017
  export { default as IconLoadBalancer } from './load-balancer.svelte';
3004
3018
  export { default as IconLoader2 } from './loader-2.svelte';
3005
3019
  export { default as IconLoader3 } from './loader-3.svelte';
3020
+ export { default as IconLoader4 } from './loader-4.svelte';
3006
3021
  export { default as IconLoaderQuarter } from './loader-quarter.svelte';
3007
3022
  export { default as IconLoader } from './loader.svelte';
3008
3023
  export { default as IconLocationBolt } from './location-bolt.svelte';
@@ -3405,6 +3420,7 @@ export { default as IconMoonOff } from './moon-off.svelte';
3405
3420
  export { default as IconMoonStars } from './moon-stars.svelte';
3406
3421
  export { default as IconMoon } from './moon.svelte';
3407
3422
  export { default as IconMoped } from './moped.svelte';
3423
+ export { default as IconMosque } from './mosque.svelte';
3408
3424
  export { default as IconMotorbike } from './motorbike.svelte';
3409
3425
  export { default as IconMountainOff } from './mountain-off.svelte';
3410
3426
  export { default as IconMountain } from './mountain.svelte';
@@ -3689,6 +3705,7 @@ export { default as IconPencilStar } from './pencil-star.svelte';
3689
3705
  export { default as IconPencilUp } from './pencil-up.svelte';
3690
3706
  export { default as IconPencilX } from './pencil-x.svelte';
3691
3707
  export { default as IconPencil } from './pencil.svelte';
3708
+ export { default as IconPendulum } from './pendulum.svelte';
3692
3709
  export { default as IconPennant2 } from './pennant-2.svelte';
3693
3710
  export { default as IconPennantOff } from './pennant-off.svelte';
3694
3711
  export { default as IconPennant } from './pennant.svelte';
@@ -3863,6 +3880,7 @@ export { default as IconPlugConnected } from './plug-connected.svelte';
3863
3880
  export { default as IconPlugOff } from './plug-off.svelte';
3864
3881
  export { default as IconPlugX } from './plug-x.svelte';
3865
3882
  export { default as IconPlug } from './plug.svelte';
3883
+ export { default as IconPlunger } from './plunger.svelte';
3866
3884
  export { default as IconPlusEqual } from './plus-equal.svelte';
3867
3885
  export { default as IconPlusMinus } from './plus-minus.svelte';
3868
3886
  export { default as IconPlus } from './plus.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M13.94 9.39a10 10 0 0 1 .232 -.218a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828a4 4 0 1 0 0 5.656a10 10 0 0 0 .234 -.219" }]];
3
+ </script>
4
+ <Icon type="outline" name="infinity-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 Infinity2Props = typeof __propDef.props;
13
+ export type Infinity2Events = typeof __propDef.events;
14
+ export type Infinity2Slots = typeof __propDef.slots;
15
+ export default class Infinity2 extends SvelteComponentTyped<Infinity2Props, Infinity2Events, Infinity2Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M6 11h5.38a1 1 0 0 1 .9 .55l.72 1.45h5a1 1 0 0 1 1 1v2" }], ["path", { "d": "M3 4h1.13a1 1 0 0 1 1 .86l1.59 11.14" }], ["path", { "d": "M17 18h-8" }], ["path", { "d": "M9 18a2 2 0 1 1 -4 0a2 2 0 0 1 4 0" }], ["path", { "d": "M21 18a2 2 0 1 1 -4 0a2 2 0 0 1 4 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="lawn-mower" {...$$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 LawnMowerProps = typeof __propDef.props;
13
+ export type LawnMowerEvents = typeof __propDef.events;
14
+ export type LawnMowerSlots = typeof __propDef.slots;
15
+ export default class LawnMower extends SvelteComponentTyped<LawnMowerProps, LawnMowerEvents, LawnMowerSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 21v-3m6.36 .36l-2.12 -2.12m4.76 -4.24h-3m.36 -6.36l-2.12 2.12m-4.24 -4.76v3m-6.36 -.36l2.12 2.12m-3.76 4.24h2m1 4.95l.71 -.71" }]];
3
+ </script>
4
+ <Icon type="outline" name="loader-4" {...$$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 Loader4Props = typeof __propDef.props;
13
+ export type Loader4Events = typeof __propDef.events;
14
+ export type Loader4Slots = typeof __propDef.slots;
15
+ export default class Loader4 extends SvelteComponentTyped<Loader4Props, Loader4Events, Loader4Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M13.5 5.49a1.764 1.764 0 0 1 -2.5 -2.49" }], ["path", { "d": "M12 6v3" }], ["path", { "d": "M19 21a8.9 8.9 0 0 0 1 -3.67c0 -2 -.92 -3.25 -3.24 -4.51a17.4 17.4 0 0 1 -4.76 -3.82a17.4 17.4 0 0 1 -4.76 3.82c-2.32 1.26 -3.24 2.55 -3.24 4.51a8.9 8.9 0 0 0 1 3.67h14" }]];
3
+ </script>
4
+ <Icon type="outline" name="mosque" {...$$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 MosqueProps = typeof __propDef.props;
13
+ export type MosqueEvents = typeof __propDef.events;
14
+ export type MosqueSlots = typeof __propDef.slots;
15
+ export default class Mosque extends SvelteComponentTyped<MosqueProps, MosqueEvents, MosqueSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M5 19a2 2 0 1 1 4 0a2 2 0 0 1 -4 0" }], ["path", { "d": "M12 3l-4.4 14.09" }], ["path", { "d": "M19 3h-14" }]];
3
+ </script>
4
+ <Icon type="outline" name="pendulum" {...$$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 PendulumProps = typeof __propDef.props;
13
+ export type PendulumEvents = typeof __propDef.events;
14
+ export type PendulumSlots = typeof __propDef.slots;
15
+ export default class Pendulum extends SvelteComponentTyped<PendulumProps, PendulumEvents, PendulumSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12.71 14.12l7.81 -7.82a2 2 0 0 0 -2.82 -2.82l-7.82 7.81" }], ["path", { "d": "M3.71 13.22l.7 -.71a5 5 0 0 1 7.08 0a5 5 0 0 1 0 7.08l-.71 .7" }], ["path", { "d": "M3 12.5l8.5 8.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="plunger" {...$$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 PlungerProps = typeof __propDef.props;
13
+ export type PlungerEvents = typeof __propDef.events;
14
+ export type PlungerSlots = typeof __propDef.slots;
15
+ export default class Plunger extends SvelteComponentTyped<PlungerProps, PlungerEvents, PlungerSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M12 16l3.644 3.644a1.21 1.21 0 0 0 1.712 0l2.288 -2.288a1.21 1.21 0 0 0 0 -1.712l-3.644 -3.644l3.644 -3.644a1.21 1.21 0 0 0 0 -1.712l-2.288 -2.288a1.21 1.21 0 0 0 -1.712 0l-3.644 3.644l-3.644 -3.644a1.21 1.21 0 0 0 -1.712 0l-2.288 2.288a1.21 1.21 0 0 0 0 1.712l3.644 3.644l-3.644 3.644a1.21 1.21 0 0 0 0 1.712l2.288 2.288a1.21 1.21 0 0 0 1.712 0m3.644 -3.644" }]];
2
+ const iconNode = [["path", { "d": "M12 16l3.644 3.644a1.21 1.21 0 0 0 1.712 0l2.288 -2.288a1.21 1.21 0 0 0 0 -1.712l-3.644 -3.644l3.644 -3.644a1.21 1.21 0 0 0 0 -1.712l-2.288 -2.288a1.21 1.21 0 0 0 -1.712 0l-3.644 3.644l-3.644 -3.644a1.21 1.21 0 0 0 -1.712 0l-2.288 2.288a1.21 1.21 0 0 0 0 1.712l3.644 3.644l-3.644 3.644a1.21 1.21 0 0 0 0 1.712l2.288 2.288a1.21 1.21 0 0 0 1.712 0l3.644 -3.644" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="x-mark" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -902,6 +902,7 @@ export default [
902
902
  "brand-stackoverflow",
903
903
  "brand-stackshare",
904
904
  "brand-steam",
905
+ "brand-stellar",
905
906
  "brand-stocktwits",
906
907
  "brand-storj",
907
908
  "brand-storybook",
@@ -949,6 +950,7 @@ export default [
949
950
  "brand-unsplash",
950
951
  "brand-upwork",
951
952
  "brand-valorant",
953
+ "brand-vechain",
952
954
  "brand-vercel",
953
955
  "brand-vimeo",
954
956
  "brand-vinted",
@@ -1478,6 +1480,8 @@ export default [
1478
1480
  "circuit-voltmeter",
1479
1481
  "clear-all",
1480
1482
  "clear-formatting",
1483
+ "clef-staff",
1484
+ "clef",
1481
1485
  "click",
1482
1486
  "cliff-jumping",
1483
1487
  "clipboard-check",
@@ -1739,6 +1743,7 @@ export default [
1739
1743
  "currency-frank",
1740
1744
  "currency-guarani",
1741
1745
  "currency-hryvnia",
1746
+ "currency-husd",
1742
1747
  "currency-iranian-rial",
1743
1748
  "currency-kip",
1744
1749
  "currency-krone-czech",
@@ -1772,12 +1777,14 @@ export default [
1772
1777
  "currency-som",
1773
1778
  "currency-taka",
1774
1779
  "currency-tenge",
1780
+ "currency-tether",
1775
1781
  "currency-tugrik",
1776
1782
  "currency-won",
1777
1783
  "currency-xrp",
1778
1784
  "currency-yen-off",
1779
1785
  "currency-yen",
1780
1786
  "currency-yuan",
1787
+ "currency-zcash",
1781
1788
  "currency-zloty",
1782
1789
  "currency",
1783
1790
  "current-location-off",
@@ -1828,6 +1835,7 @@ export default [
1828
1835
  "device-camera-phone",
1829
1836
  "device-cctv-off",
1830
1837
  "device-cctv",
1838
+ "device-computer-camera-2",
1831
1839
  "device-computer-camera-off",
1832
1840
  "device-computer-camera",
1833
1841
  "device-desktop-analytics",
@@ -2075,6 +2083,7 @@ export default [
2075
2083
  "dog",
2076
2084
  "door-enter",
2077
2085
  "door-exit",
2086
+ "door-hanger",
2078
2087
  "door-off",
2079
2088
  "door",
2080
2089
  "dots-circle-horizontal",
@@ -2119,6 +2128,7 @@ export default [
2119
2128
  "ear-off",
2120
2129
  "ear-scan",
2121
2130
  "ear",
2131
+ "earphone-bluetooth",
2122
2132
  "ease-in-control-point",
2123
2133
  "ease-in-out-control-points",
2124
2134
  "ease-in-out",
@@ -2529,6 +2539,7 @@ export default [
2529
2539
  "gps",
2530
2540
  "gradienter",
2531
2541
  "grain",
2542
+ "grape",
2532
2543
  "graph-off",
2533
2544
  "graph",
2534
2545
  "grave-2",
@@ -2554,6 +2565,7 @@ export default [
2554
2565
  "h-4",
2555
2566
  "h-5",
2556
2567
  "h-6",
2568
+ "hammer-drill",
2557
2569
  "hammer-off",
2558
2570
  "hammer",
2559
2571
  "hand-click-off",
@@ -2780,6 +2792,7 @@ export default [
2780
2792
  "inbox",
2781
2793
  "indent-decrease",
2782
2794
  "indent-increase",
2795
+ "infinity-2",
2783
2796
  "infinity-off",
2784
2797
  "infinity",
2785
2798
  "info-circle",
@@ -2861,6 +2874,7 @@ export default [
2861
2874
  "laurel-wreath-2",
2862
2875
  "laurel-wreath-3",
2863
2876
  "laurel-wreath",
2877
+ "lawn-mower",
2864
2878
  "layers-difference",
2865
2879
  "layers-intersect-2",
2866
2880
  "layers-intersect",
@@ -3004,6 +3018,7 @@ export default [
3004
3018
  "load-balancer",
3005
3019
  "loader-2",
3006
3020
  "loader-3",
3021
+ "loader-4",
3007
3022
  "loader-quarter",
3008
3023
  "loader",
3009
3024
  "location-bolt",
@@ -3406,6 +3421,7 @@ export default [
3406
3421
  "moon-stars",
3407
3422
  "moon",
3408
3423
  "moped",
3424
+ "mosque",
3409
3425
  "motorbike",
3410
3426
  "mountain-off",
3411
3427
  "mountain",
@@ -3690,6 +3706,7 @@ export default [
3690
3706
  "pencil-up",
3691
3707
  "pencil-x",
3692
3708
  "pencil",
3709
+ "pendulum",
3693
3710
  "pennant-2",
3694
3711
  "pennant-off",
3695
3712
  "pennant",
@@ -3864,6 +3881,7 @@ export default [
3864
3881
  "plug-off",
3865
3882
  "plug-x",
3866
3883
  "plug",
3884
+ "plunger",
3867
3885
  "plus-equal",
3868
3886
  "plus-minus",
3869
3887
  "plus",
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.41.0",
3
+ "version": "3.42.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.",
7
- "homepage": "https://tabler-icons.io",
7
+ "homepage": "https://tabler.io/icons",
8
8
  "bugs": {
9
9
  "url": "https://github.com/tabler/tabler-icons/issues"
10
10
  },
@@ -41,7 +41,7 @@
41
41
  "dist"
42
42
  ],
43
43
  "dependencies": {
44
- "@tabler/icons": "3.41.0"
44
+ "@tabler/icons": "3.42.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@sveltejs/package": "^2.2.7",
@@ -51,7 +51,7 @@
51
51
  "svelte": "^4.2.12",
52
52
  "svelte-check": "^3.6.5",
53
53
  "svelte-preprocess": "^5.1.3",
54
- "vite": "^5.4.0"
54
+ "vite": "^7.3.0"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "svelte": ">=3 <6 || >=5.0.0-next.0"