@tabler/icons-svelte 3.46.0 → 3.47.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 +33 -39
  2. package/dist/Icon.svelte +1 -1
  3. package/dist/icons/airpods-l.svelte +6 -0
  4. package/dist/icons/airpods-l.svelte.d.ts +17 -0
  5. package/dist/icons/airpods-r.svelte +6 -0
  6. package/dist/icons/airpods-r.svelte.d.ts +17 -0
  7. package/dist/icons/cash-coin.svelte +6 -0
  8. package/dist/icons/cash-coin.svelte.d.ts +17 -0
  9. package/dist/icons/edit-bulk.svelte +6 -0
  10. package/dist/icons/edit-bulk.svelte.d.ts +17 -0
  11. package/dist/icons/folder-stats.svelte +6 -0
  12. package/dist/icons/folder-stats.svelte.d.ts +17 -0
  13. package/dist/icons/folder-user.svelte +6 -0
  14. package/dist/icons/folder-user.svelte.d.ts +17 -0
  15. package/dist/icons/gpu-2.svelte +6 -0
  16. package/dist/icons/gpu-2.svelte.d.ts +17 -0
  17. package/dist/icons/gpu.svelte +6 -0
  18. package/dist/icons/gpu.svelte.d.ts +17 -0
  19. package/dist/icons/index.d.ts +18 -0
  20. package/dist/icons/index.js +18 -0
  21. package/dist/icons/map-pinned.svelte +6 -0
  22. package/dist/icons/map-pinned.svelte.d.ts +17 -0
  23. package/dist/icons/orbit-vertical.svelte +6 -0
  24. package/dist/icons/orbit-vertical.svelte.d.ts +17 -0
  25. package/dist/icons/orbit.svelte +6 -0
  26. package/dist/icons/orbit.svelte.d.ts +17 -0
  27. package/dist/icons/orbits.svelte +6 -0
  28. package/dist/icons/orbits.svelte.d.ts +17 -0
  29. package/dist/icons/reduce-motion.svelte +6 -0
  30. package/dist/icons/reduce-motion.svelte.d.ts +17 -0
  31. package/dist/icons/reference-image.svelte +6 -0
  32. package/dist/icons/reference-image.svelte.d.ts +17 -0
  33. package/dist/icons/secret-phrases.svelte +6 -0
  34. package/dist/icons/secret-phrases.svelte.d.ts +17 -0
  35. package/dist/icons/sticker-smile.svelte +6 -0
  36. package/dist/icons/sticker-smile.svelte.d.ts +17 -0
  37. package/dist/icons/voice-2.svelte +6 -0
  38. package/dist/icons/voice-2.svelte.d.ts +17 -0
  39. package/dist/icons/voice.svelte +6 -0
  40. package/dist/icons/voice.svelte.d.ts +17 -0
  41. package/dist/icons-list.js +18 -0
  42. package/package.json +2 -2
package/README.md CHANGED
@@ -5,21 +5,21 @@
5
5
  </p>
6
6
 
7
7
  <p align="center">
8
- Implementation of the Tabler Icons library for Svelte applications.
9
- <p>
8
+ Implementation of the Tabler Icons library for Svelte applications.
9
+ </p>
10
10
 
11
11
  <p align="center">
12
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">
16
- <a href="https://github.com/tabler/tabler-icons/releases"><img src="https://img.shields.io/npm/v/@tabler/icons" alt="Latest Release"></a>
17
- <a href="https://github.com/tabler/tabler-icons/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/@tabler/icons.svg" alt="License"></a>
16
+ <a href="https://www.npmjs.com/package/@tabler/icons-svelte"><img src="https://img.shields.io/npm/v/@tabler/icons-svelte" alt="Latest release"></a>
17
+ <a href="https://github.com/tabler/tabler-icons/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/@tabler/icons-svelte.svg" alt="License"></a>
18
18
  </p>
19
19
 
20
20
  ## Sponsors
21
21
 
22
- **If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)**
22
+ **If you want to support our project and help us grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or [donate on PayPal](https://paypal.me/codecalm).**
23
23
 
24
24
  <a href="https://github.com/sponsors/codecalm">
25
25
  <img src="https://cdn.jsdelivr.net/gh/tabler/sponsors@latest/sponsors.svg" alt="Tabler sponsors">
@@ -27,63 +27,57 @@ Implementation of the Tabler Icons library for Svelte applications.
27
27
 
28
28
  ## Installation
29
29
 
30
- ```
31
- yarn add @tabler/icons-svelte
32
- ```
33
-
34
- or
35
-
36
- ```
30
+ ```sh
37
31
  npm install @tabler/icons-svelte
38
32
  ```
39
33
 
40
- or
41
-
34
+ ```sh
35
+ yarn add @tabler/icons-svelte
42
36
  ```
43
- pnpm install @tabler/icons-svelte
37
+
38
+ ```sh
39
+ pnpm add @tabler/icons-svelte
44
40
  ```
45
41
 
46
- or just [download from GitHub](https://github.com/tabler/tabler-icons/releases).
42
+ You can also [download the latest release from GitHub](https://github.com/tabler/tabler-icons/releases).
47
43
 
48
- ## How to use
44
+ ## Usage
49
45
 
50
- It's build with ESmodules so it's completely tree-shakable. Each icon can be imported as a component.
46
+ The package is built with ES modules, so unused icons are tree-shaken from your bundle. Each icon is exported as a component.
51
47
 
52
- ```sveltehtml
48
+ ```svelte
53
49
  <script lang="ts">
54
- import { IconHeart } from '@tabler/icons-svelte';
50
+ import { IconHeart } from '@tabler/icons-svelte';
55
51
  </script>
56
52
 
57
- <main>
58
- <IconHeart />
59
- </main>
53
+ <IconHeart />
60
54
  ```
61
55
 
62
- You can pass additional props to adjust the icon.
56
+ Pass props to adjust the icon:
63
57
 
64
- ```html
65
- <IconHeart size={48} stroke={1} />
58
+ ```svelte
59
+ <IconHeart color="red" size={48} stroke={1.5} />
66
60
  ```
67
61
 
68
62
  ### Props
69
63
 
70
- | name | type | default |
71
- | ------------- | -------- | ------------ |
72
- | `size` | _Number_ | 24 |
73
- | `color` | _String_ | currentColor |
74
- | `stroke` | _Number_ | 2 |
75
- | `class` | _String_ | |
64
+ | Name | Type | Default | Description |
65
+ | --- | --- | --- | --- |
66
+ | `size` | _number | string_ | 24 | Width and height of the icon |
67
+ | `color` | _string_ | currentColor | Stroke color for outline icons, fill color for filled icons |
68
+ | `stroke` | _number | string_ | 2 | Stroke width, outline icons only |
69
+ | `class` | _string_ || Extra classes added to `tabler-icon tabler-icon-{{name}}` |
76
70
 
77
- ## Contributing
71
+ Any other attribute is forwarded to the rendered `<svg>` element. The package ships with TypeScript declarations.
78
72
 
79
- For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md).
73
+ ## Svelte 5
80
74
 
81
- Caught a mistake or want to contribute to the documentation? [Edit this page on GitHub](https://github.com/tabler/tabler-icons/blob/main/packages/icons-svelte/README.md)
75
+ This package targets Svelte 3 and 4 and also works in Svelte 5 in legacy mode. For projects using runes, install [`@tabler/icons-svelte-runes`](https://www.npmjs.com/package/@tabler/icons-svelte-runes) instead. The API is identical, only the package name changes.
82
76
 
83
- ## License
77
+ ## Contributing
84
78
 
85
- Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/main/LICENSE).
79
+ Bug reports and icon requests are welcome in the [issue tracker](https://github.com/tabler/tabler-icons/issues). Caught a mistake in this page? [Edit it on GitHub](https://github.com/tabler/tabler-icons/blob/main/packages/icons-svelte/README.md).
86
80
 
87
- ## Sponsor Tabler
81
+ ## License
88
82
 
89
- <a href="https://github.com/sponsors/codecalm" target="_blank"><img src="https://github.com/tabler/tabler/raw/dev/src/static/sponsor-banner-readme.png?raw=true" alt="Sponsor Tabler" /></a>
83
+ Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/main/LICENSE).
package/dist/Icon.svelte CHANGED
@@ -12,7 +12,7 @@ export let iconNode;
12
12
  {...$$restProps}
13
13
  width={size}
14
14
  height={size}
15
- class={`tabler-icon tabler-icon-${name} ${$$props.class ?? ''}`}
15
+ class={`tabler-icon tabler-icon-${name}${$$props.class ? ` ${$$props.class}` : ''}`}
16
16
  {...type === 'filled'
17
17
  ? {
18
18
  fill: color,
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M6 4a4 4 0 0 1 4 3.8v10.7a1.5 1.5 0 1 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8v-.2a4 4 0 0 1 4 -4" }], ["path", { "d": "M15 8v8h4" }]];
3
+ </script>
4
+ <Icon type="outline" name="airpods-l" {...$$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 AirpodsLProps = typeof __propDef.props;
13
+ export type AirpodsLEvents = typeof __propDef.events;
14
+ export type AirpodsLSlots = typeof __propDef.slots;
15
+ export default class AirpodsL extends SvelteComponentTyped<AirpodsLProps, AirpodsLEvents, AirpodsLSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M18 4a4 4 0 0 0 -4 3.8v10.7a1.5 1.5 0 1 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8v-.2a4 4 0 0 0 -4 -4" }], ["path", { "d": "M5 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4" }]];
3
+ </script>
4
+ <Icon type="outline" name="airpods-r" {...$$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 AirpodsRProps = typeof __propDef.props;
13
+ export type AirpodsREvents = typeof __propDef.events;
14
+ export type AirpodsRSlots = typeof __propDef.slots;
15
+ export default class AirpodsR extends SvelteComponentTyped<AirpodsRProps, AirpodsREvents, AirpodsRSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14.273 10.042a3 3 0 1 0 -3.282 4.784" }], ["path", { "d": "M11 18h-6a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v2.5" }], ["path", { "d": "M6 12h.01" }], ["path", { "d": "M14 15c0 1.105 1.79 2 4 2s4 -.895 4 -2s-1.79 -2 -4 -2s-4 .895 -4 2" }], ["path", { "d": "M14 15v3c0 1.105 1.79 2 4 2s4 -.895 4 -2v-3" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-coin" {...$$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 CashCoinProps = typeof __propDef.props;
13
+ export type CashCoinEvents = typeof __propDef.events;
14
+ export type CashCoinSlots = typeof __propDef.slots;
15
+ export default class CashCoin extends SvelteComponentTyped<CashCoinProps, CashCoinEvents, CashCoinSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2" }], ["path", { "d": "M3 11a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2" }], ["path", { "d": "M20.385 9.585a2.1 2.1 0 0 0 -2.97 -2.97l-6.415 6.385v3h3l6.385 -6.415" }], ["path", { "d": "M16 8l3 3" }], ["path", { "d": "M3 18a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2" }]];
3
+ </script>
4
+ <Icon type="outline" name="edit-bulk" {...$$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 EditBulkProps = typeof __propDef.props;
13
+ export type EditBulkEvents = typeof __propDef.events;
14
+ export type EditBulkSlots = typeof __propDef.slots;
15
+ export default class EditBulk extends SvelteComponentTyped<EditBulkProps, EditBulkEvents, EditBulkSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M10.25 19h-5.25a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3" }], ["path", { "d": "M13 22l3 -3l2 2l4 -4" }], ["path", { "d": "M19 17h3v3" }]];
3
+ </script>
4
+ <Icon type="outline" name="folder-stats" {...$$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 FolderStatsProps = typeof __propDef.props;
13
+ export type FolderStatsEvents = typeof __propDef.events;
14
+ export type FolderStatsSlots = typeof __propDef.slots;
15
+ export default class FolderStats extends SvelteComponentTyped<FolderStatsProps, FolderStatsEvents, FolderStatsSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12.75 19h-7.75a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5" }], ["path", { "d": "M17 17a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" }], ["path", { "d": "M22 22a2 2 0 0 0 -2 -2h-2a2 2 0 0 0 -2 2" }]];
3
+ </script>
4
+ <Icon type="outline" name="folder-user" {...$$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 FolderUserProps = typeof __propDef.props;
13
+ export type FolderUserEvents = typeof __propDef.events;
14
+ export type FolderUserSlots = typeof __propDef.slots;
15
+ export default class FolderUser extends SvelteComponentTyped<FolderUserProps, FolderUserEvents, FolderUserSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M5 6a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1l0 -12" }], ["path", { "d": "M14 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2v-3h-1" }], ["path", { "d": "M3 10h2" }], ["path", { "d": "M3 14h2" }], ["path", { "d": "M10 3v2" }], ["path", { "d": "M14 3v2" }], ["path", { "d": "M21 10h-2" }], ["path", { "d": "M21 14h-2" }], ["path", { "d": "M14 21v-2" }], ["path", { "d": "M10 21v-2" }]];
3
+ </script>
4
+ <Icon type="outline" name="gpu-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 Gpu2Props = typeof __propDef.props;
13
+ export type Gpu2Events = typeof __propDef.events;
14
+ export type Gpu2Slots = typeof __propDef.slots;
15
+ export default class Gpu2 extends SvelteComponentTyped<Gpu2Props, Gpu2Events, Gpu2Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 4v14" }], ["path", { "d": "M3 6h17a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-17" }], ["path", { "d": "M9 13a2 2 0 1 0 0 -4a2 2 0 0 0 0 4" }], ["path", { "d": "M15 9v4" }], ["path", { "d": "M18 9v4" }], ["path", { "d": "M7 16v3h8v-3" }]];
3
+ </script>
4
+ <Icon type="outline" name="gpu" {...$$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 GpuProps = typeof __propDef.props;
13
+ export type GpuEvents = typeof __propDef.events;
14
+ export type GpuSlots = typeof __propDef.slots;
15
+ export default class Gpu extends SvelteComponentTyped<GpuProps, GpuEvents, GpuSlots> {
16
+ }
17
+ export {};
@@ -53,6 +53,8 @@ export { default as IconAirBalloon } from './air-balloon.svelte';
53
53
  export { default as IconAirConditioningDisabled } from './air-conditioning-disabled.svelte';
54
54
  export { default as IconAirConditioning } from './air-conditioning.svelte';
55
55
  export { default as IconAirTrafficControl } from './air-traffic-control.svelte';
56
+ export { default as IconAirpodsL } from './airpods-l.svelte';
57
+ export { default as IconAirpodsR } from './airpods-r.svelte';
56
58
  export { default as IconAlarmAverage } from './alarm-average.svelte';
57
59
  export { default as IconAlarmMinus } from './alarm-minus.svelte';
58
60
  export { default as IconAlarmOff } from './alarm-off.svelte';
@@ -1207,6 +1209,7 @@ export { default as IconCashBanknoteMove } from './cash-banknote-move.svelte';
1207
1209
  export { default as IconCashBanknoteOff } from './cash-banknote-off.svelte';
1208
1210
  export { default as IconCashBanknotePlus } from './cash-banknote-plus.svelte';
1209
1211
  export { default as IconCashBanknote } from './cash-banknote.svelte';
1212
+ export { default as IconCashCoin } from './cash-coin.svelte';
1210
1213
  export { default as IconCashEdit } from './cash-edit.svelte';
1211
1214
  export { default as IconCashHeart } from './cash-heart.svelte';
1212
1215
  export { default as IconCashMinus } from './cash-minus.svelte';
@@ -2153,6 +2156,7 @@ export { default as IconEaseInOut } from './ease-in-out.svelte';
2153
2156
  export { default as IconEaseIn } from './ease-in.svelte';
2154
2157
  export { default as IconEaseOutControlPoint } from './ease-out-control-point.svelte';
2155
2158
  export { default as IconEaseOut } from './ease-out.svelte';
2159
+ export { default as IconEditBulk } from './edit-bulk.svelte';
2156
2160
  export { default as IconEditCircleOff } from './edit-circle-off.svelte';
2157
2161
  export { default as IconEditCircle } from './edit-circle.svelte';
2158
2162
  export { default as IconEditOff } from './edit-off.svelte';
@@ -2473,8 +2477,10 @@ export { default as IconFolderRoot } from './folder-root.svelte';
2473
2477
  export { default as IconFolderSearch } from './folder-search.svelte';
2474
2478
  export { default as IconFolderShare } from './folder-share.svelte';
2475
2479
  export { default as IconFolderStar } from './folder-star.svelte';
2480
+ export { default as IconFolderStats } from './folder-stats.svelte';
2476
2481
  export { default as IconFolderSymlink } from './folder-symlink.svelte';
2477
2482
  export { default as IconFolderUp } from './folder-up.svelte';
2483
+ export { default as IconFolderUser } from './folder-user.svelte';
2478
2484
  export { default as IconFolderX } from './folder-x.svelte';
2479
2485
  export { default as IconFolder } from './folder.svelte';
2480
2486
  export { default as IconFoldersOff } from './folders-off.svelte';
@@ -2560,6 +2566,8 @@ export { default as IconGoGame } from './go-game.svelte';
2560
2566
  export { default as IconGolfOff } from './golf-off.svelte';
2561
2567
  export { default as IconGolf } from './golf.svelte';
2562
2568
  export { default as IconGps } from './gps.svelte';
2569
+ export { default as IconGpu2 } from './gpu-2.svelte';
2570
+ export { default as IconGpu } from './gpu.svelte';
2563
2571
  export { default as IconGradienter } from './gradienter.svelte';
2564
2572
  export { default as IconGrain } from './grain.svelte';
2565
2573
  export { default as IconGrape } from './grape.svelte';
@@ -3194,6 +3202,7 @@ export { default as IconMapPinStar } from './map-pin-star.svelte';
3194
3202
  export { default as IconMapPinUp } from './map-pin-up.svelte';
3195
3203
  export { default as IconMapPinX } from './map-pin-x.svelte';
3196
3204
  export { default as IconMapPin } from './map-pin.svelte';
3205
+ export { default as IconMapPinned } from './map-pinned.svelte';
3197
3206
  export { default as IconMapPins } from './map-pins.svelte';
3198
3207
  export { default as IconMapPlus } from './map-plus.svelte';
3199
3208
  export { default as IconMapQuestion } from './map-question.svelte';
@@ -3672,6 +3681,9 @@ export { default as IconOlympics } from './olympics.svelte';
3672
3681
  export { default as IconOm } from './om.svelte';
3673
3682
  export { default as IconOmega } from './omega.svelte';
3674
3683
  export { default as IconOption } from './option.svelte';
3684
+ export { default as IconOrbitVertical } from './orbit-vertical.svelte';
3685
+ export { default as IconOrbit } from './orbit.svelte';
3686
+ export { default as IconOrbits } from './orbits.svelte';
3675
3687
  export { default as IconOutbound } from './outbound.svelte';
3676
3688
  export { default as IconOutlet } from './outlet.svelte';
3677
3689
  export { default as IconOvalVertical } from './oval-vertical.svelte';
@@ -4040,6 +4052,8 @@ export { default as IconRectangularPrismPlus } from './rectangular-prism-plus.sv
4040
4052
  export { default as IconRectangularPrism } from './rectangular-prism.svelte';
4041
4053
  export { default as IconRecycleOff } from './recycle-off.svelte';
4042
4054
  export { default as IconRecycle } from './recycle.svelte';
4055
+ export { default as IconReduceMotion } from './reduce-motion.svelte';
4056
+ export { default as IconReferenceImage } from './reference-image.svelte';
4043
4057
  export { default as IconRefreshAlert } from './refresh-alert.svelte';
4044
4058
  export { default as IconRefreshDot } from './refresh-dot.svelte';
4045
4059
  export { default as IconRefreshOff } from './refresh-off.svelte';
@@ -4206,6 +4220,7 @@ export { default as IconScubaMask } from './scuba-mask.svelte';
4206
4220
  export { default as IconSdk } from './sdk.svelte';
4207
4221
  export { default as IconSearchOff } from './search-off.svelte';
4208
4222
  export { default as IconSearch } from './search.svelte';
4223
+ export { default as IconSecretPhrases } from './secret-phrases.svelte';
4209
4224
  export { default as IconSectionSign } from './section-sign.svelte';
4210
4225
  export { default as IconSection } from './section.svelte';
4211
4226
  export { default as IconSeedlingOff } from './seedling-off.svelte';
@@ -4596,6 +4611,7 @@ export { default as IconStereoGlasses } from './stereo-glasses.svelte';
4596
4611
  export { default as IconStethoscopeOff } from './stethoscope-off.svelte';
4597
4612
  export { default as IconStethoscope } from './stethoscope.svelte';
4598
4613
  export { default as IconSticker2 } from './sticker-2.svelte';
4614
+ export { default as IconStickerSmile } from './sticker-smile.svelte';
4599
4615
  export { default as IconSticker } from './sticker.svelte';
4600
4616
  export { default as IconStopwatch } from './stopwatch.svelte';
4601
4617
  export { default as IconStormOff } from './storm-off.svelte';
@@ -4971,6 +4987,8 @@ export { default as IconVirusSearch } from './virus-search.svelte';
4971
4987
  export { default as IconVirus } from './virus.svelte';
4972
4988
  export { default as IconVocabularyOff } from './vocabulary-off.svelte';
4973
4989
  export { default as IconVocabulary } from './vocabulary.svelte';
4990
+ export { default as IconVoice2 } from './voice-2.svelte';
4991
+ export { default as IconVoice } from './voice.svelte';
4974
4992
  export { default as IconVolcano } from './volcano.svelte';
4975
4993
  export { default as IconVolume2 } from './volume-2.svelte';
4976
4994
  export { default as IconVolume3 } from './volume-3.svelte';
@@ -53,6 +53,8 @@ export { default as IconAirBalloon } from './air-balloon.svelte';
53
53
  export { default as IconAirConditioningDisabled } from './air-conditioning-disabled.svelte';
54
54
  export { default as IconAirConditioning } from './air-conditioning.svelte';
55
55
  export { default as IconAirTrafficControl } from './air-traffic-control.svelte';
56
+ export { default as IconAirpodsL } from './airpods-l.svelte';
57
+ export { default as IconAirpodsR } from './airpods-r.svelte';
56
58
  export { default as IconAlarmAverage } from './alarm-average.svelte';
57
59
  export { default as IconAlarmMinus } from './alarm-minus.svelte';
58
60
  export { default as IconAlarmOff } from './alarm-off.svelte';
@@ -1207,6 +1209,7 @@ export { default as IconCashBanknoteMove } from './cash-banknote-move.svelte';
1207
1209
  export { default as IconCashBanknoteOff } from './cash-banknote-off.svelte';
1208
1210
  export { default as IconCashBanknotePlus } from './cash-banknote-plus.svelte';
1209
1211
  export { default as IconCashBanknote } from './cash-banknote.svelte';
1212
+ export { default as IconCashCoin } from './cash-coin.svelte';
1210
1213
  export { default as IconCashEdit } from './cash-edit.svelte';
1211
1214
  export { default as IconCashHeart } from './cash-heart.svelte';
1212
1215
  export { default as IconCashMinus } from './cash-minus.svelte';
@@ -2153,6 +2156,7 @@ export { default as IconEaseInOut } from './ease-in-out.svelte';
2153
2156
  export { default as IconEaseIn } from './ease-in.svelte';
2154
2157
  export { default as IconEaseOutControlPoint } from './ease-out-control-point.svelte';
2155
2158
  export { default as IconEaseOut } from './ease-out.svelte';
2159
+ export { default as IconEditBulk } from './edit-bulk.svelte';
2156
2160
  export { default as IconEditCircleOff } from './edit-circle-off.svelte';
2157
2161
  export { default as IconEditCircle } from './edit-circle.svelte';
2158
2162
  export { default as IconEditOff } from './edit-off.svelte';
@@ -2473,8 +2477,10 @@ export { default as IconFolderRoot } from './folder-root.svelte';
2473
2477
  export { default as IconFolderSearch } from './folder-search.svelte';
2474
2478
  export { default as IconFolderShare } from './folder-share.svelte';
2475
2479
  export { default as IconFolderStar } from './folder-star.svelte';
2480
+ export { default as IconFolderStats } from './folder-stats.svelte';
2476
2481
  export { default as IconFolderSymlink } from './folder-symlink.svelte';
2477
2482
  export { default as IconFolderUp } from './folder-up.svelte';
2483
+ export { default as IconFolderUser } from './folder-user.svelte';
2478
2484
  export { default as IconFolderX } from './folder-x.svelte';
2479
2485
  export { default as IconFolder } from './folder.svelte';
2480
2486
  export { default as IconFoldersOff } from './folders-off.svelte';
@@ -2560,6 +2566,8 @@ export { default as IconGoGame } from './go-game.svelte';
2560
2566
  export { default as IconGolfOff } from './golf-off.svelte';
2561
2567
  export { default as IconGolf } from './golf.svelte';
2562
2568
  export { default as IconGps } from './gps.svelte';
2569
+ export { default as IconGpu2 } from './gpu-2.svelte';
2570
+ export { default as IconGpu } from './gpu.svelte';
2563
2571
  export { default as IconGradienter } from './gradienter.svelte';
2564
2572
  export { default as IconGrain } from './grain.svelte';
2565
2573
  export { default as IconGrape } from './grape.svelte';
@@ -3194,6 +3202,7 @@ export { default as IconMapPinStar } from './map-pin-star.svelte';
3194
3202
  export { default as IconMapPinUp } from './map-pin-up.svelte';
3195
3203
  export { default as IconMapPinX } from './map-pin-x.svelte';
3196
3204
  export { default as IconMapPin } from './map-pin.svelte';
3205
+ export { default as IconMapPinned } from './map-pinned.svelte';
3197
3206
  export { default as IconMapPins } from './map-pins.svelte';
3198
3207
  export { default as IconMapPlus } from './map-plus.svelte';
3199
3208
  export { default as IconMapQuestion } from './map-question.svelte';
@@ -3672,6 +3681,9 @@ export { default as IconOlympics } from './olympics.svelte';
3672
3681
  export { default as IconOm } from './om.svelte';
3673
3682
  export { default as IconOmega } from './omega.svelte';
3674
3683
  export { default as IconOption } from './option.svelte';
3684
+ export { default as IconOrbitVertical } from './orbit-vertical.svelte';
3685
+ export { default as IconOrbit } from './orbit.svelte';
3686
+ export { default as IconOrbits } from './orbits.svelte';
3675
3687
  export { default as IconOutbound } from './outbound.svelte';
3676
3688
  export { default as IconOutlet } from './outlet.svelte';
3677
3689
  export { default as IconOvalVertical } from './oval-vertical.svelte';
@@ -4040,6 +4052,8 @@ export { default as IconRectangularPrismPlus } from './rectangular-prism-plus.sv
4040
4052
  export { default as IconRectangularPrism } from './rectangular-prism.svelte';
4041
4053
  export { default as IconRecycleOff } from './recycle-off.svelte';
4042
4054
  export { default as IconRecycle } from './recycle.svelte';
4055
+ export { default as IconReduceMotion } from './reduce-motion.svelte';
4056
+ export { default as IconReferenceImage } from './reference-image.svelte';
4043
4057
  export { default as IconRefreshAlert } from './refresh-alert.svelte';
4044
4058
  export { default as IconRefreshDot } from './refresh-dot.svelte';
4045
4059
  export { default as IconRefreshOff } from './refresh-off.svelte';
@@ -4206,6 +4220,7 @@ export { default as IconScubaMask } from './scuba-mask.svelte';
4206
4220
  export { default as IconSdk } from './sdk.svelte';
4207
4221
  export { default as IconSearchOff } from './search-off.svelte';
4208
4222
  export { default as IconSearch } from './search.svelte';
4223
+ export { default as IconSecretPhrases } from './secret-phrases.svelte';
4209
4224
  export { default as IconSectionSign } from './section-sign.svelte';
4210
4225
  export { default as IconSection } from './section.svelte';
4211
4226
  export { default as IconSeedlingOff } from './seedling-off.svelte';
@@ -4596,6 +4611,7 @@ export { default as IconStereoGlasses } from './stereo-glasses.svelte';
4596
4611
  export { default as IconStethoscopeOff } from './stethoscope-off.svelte';
4597
4612
  export { default as IconStethoscope } from './stethoscope.svelte';
4598
4613
  export { default as IconSticker2 } from './sticker-2.svelte';
4614
+ export { default as IconStickerSmile } from './sticker-smile.svelte';
4599
4615
  export { default as IconSticker } from './sticker.svelte';
4600
4616
  export { default as IconStopwatch } from './stopwatch.svelte';
4601
4617
  export { default as IconStormOff } from './storm-off.svelte';
@@ -4971,6 +4987,8 @@ export { default as IconVirusSearch } from './virus-search.svelte';
4971
4987
  export { default as IconVirus } from './virus.svelte';
4972
4988
  export { default as IconVocabularyOff } from './vocabulary-off.svelte';
4973
4989
  export { default as IconVocabulary } from './vocabulary.svelte';
4990
+ export { default as IconVoice2 } from './voice-2.svelte';
4991
+ export { default as IconVoice } from './voice.svelte';
4974
4992
  export { default as IconVolcano } from './volcano.svelte';
4975
4993
  export { default as IconVolume2 } from './volume-2.svelte';
4976
4994
  export { default as IconVolume3 } from './volume-3.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14.828 10.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829" }], ["path", { "d": "M12 8v.01" }], ["path", { "d": "M6 12h-.142a2 2 0 0 0 -1.923 1.45l-.858 3a2 2 0 0 0 1.924 2.55h13.999a2 2 0 0 0 1.923 -2.55l-.857 -3a2 2 0 0 0 -1.923 -1.45h-.143" }]];
3
+ </script>
4
+ <Icon type="outline" name="map-pinned" {...$$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 MapPinnedProps = typeof __propDef.props;
13
+ export type MapPinnedEvents = typeof __propDef.events;
14
+ export type MapPinnedSlots = typeof __propDef.slots;
15
+ export default class MapPinned extends SvelteComponentTyped<MapPinnedProps, MapPinnedEvents, MapPinnedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M16.372 16.372c.4 -1.295 .628 -2.785 .628 -4.372c0 -4.97 -2.239 -9 -5 -9s-5 4.03 -5 9s2.239 9 5 9c.596 0 1.168 -.188 1.698 -.533" }], ["path", { "d": "M10 12a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="orbit-vertical" {...$$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 OrbitVerticalProps = typeof __propDef.props;
13
+ export type OrbitVerticalEvents = typeof __propDef.events;
14
+ export type OrbitVerticalSlots = typeof __propDef.slots;
15
+ export default class OrbitVertical extends SvelteComponentTyped<OrbitVerticalProps, OrbitVerticalEvents, OrbitVerticalSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7.628 7.629c-2.76 .854 -4.628 2.491 -4.628 4.371c0 2.761 4.03 5 9 5s9 -2.239 9 -5s-4.03 -5 -9 -5" }], ["path", { "d": "M10 12a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="orbit" {...$$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 OrbitProps = typeof __propDef.props;
13
+ export type OrbitEvents = typeof __propDef.events;
14
+ export type OrbitSlots = typeof __propDef.slots;
15
+ export default class Orbit extends SvelteComponentTyped<OrbitProps, OrbitEvents, OrbitSlots> {
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 1 0 -4 0" }], ["path", { "d": "M7.628 7.629c-2.76 .854 -4.628 2.491 -4.628 4.371c0 2.761 4.03 5 9 5s9 -2.239 9 -5s-4.03 -5 -9 -5" }], ["path", { "d": "M16.372 16.372c.4 -1.295 .628 -2.785 .628 -4.372c0 -4.97 -2.239 -9 -5 -9s-5 4.03 -5 9s2.239 9 5 9c.596 0 1.168 -.188 1.698 -.533" }]];
3
+ </script>
4
+ <Icon type="outline" name="orbits" {...$$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 OrbitsProps = typeof __propDef.props;
13
+ export type OrbitsEvents = typeof __propDef.events;
14
+ export type OrbitsSlots = typeof __propDef.slots;
15
+ export default class Orbits extends SvelteComponentTyped<OrbitsProps, OrbitsEvents, OrbitsSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8 12a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" }], ["path", { "d": "M5.5 5.941v.007" }], ["path", { "d": "M2.941 8.498v.008" }], ["path", { "d": "M2 11.996v.008" }], ["path", { "d": "M2.941 15.494v.008" }], ["path", { "d": "M5.5 18.052v.007" }], ["path", { "d": "M9 18.992v.008" }], ["path", { "d": "M12.5 18.052v.007" }], ["path", { "d": "M15.059 15.494v.008" }], ["path", { "d": "M16 11.996v.008" }], ["path", { "d": "M15.059 8.498v.008" }], ["path", { "d": "M12.5 5.941v.007" }], ["path", { "d": "M9 5v.008" }]];
3
+ </script>
4
+ <Icon type="outline" name="reduce-motion" {...$$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 ReduceMotionProps = typeof __propDef.props;
13
+ export type ReduceMotionEvents = typeof __propDef.events;
14
+ export type ReduceMotionSlots = typeof __propDef.slots;
15
+ export default class ReduceMotion extends SvelteComponentTyped<ReduceMotionProps, ReduceMotionEvents, ReduceMotionSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14.121 9.879l4.95 4.95" }], ["path", { "d": "M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" }], ["path", { "d": "M5 15h7" }], ["path", { "d": "M12 9h7" }], ["path", { "d": "M9.172 19.071l4.95 -4.949" }], ["path", { "d": "M9.879 9.879l4.95 -4.95" }], ["path", { "d": "M9 5v7" }], ["path", { "d": "M15 12v7" }], ["path", { "d": "M4.93 9.172l4.949 4.95" }], ["path", { "d": "M15 12a3 3 0 1 1 -6 0a3 3 0 0 1 6 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="reference-image" {...$$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 ReferenceImageProps = typeof __propDef.props;
13
+ export type ReferenceImageEvents = typeof __propDef.events;
14
+ export type ReferenceImageSlots = typeof __propDef.slots;
15
+ export default class ReferenceImage extends SvelteComponentTyped<ReferenceImageProps, ReferenceImageEvents, ReferenceImageSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M19 5h-14a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-10a2 2 0 0 0 -2 -2" }], ["path", { "d": "M7 9h3" }], ["path", { "d": "M14 9h3" }], ["path", { "d": "M7 12h3" }], ["path", { "d": "M14 12h3" }], ["path", { "d": "M7 15h3" }], ["path", { "d": "M14 15h3" }]];
3
+ </script>
4
+ <Icon type="outline" name="secret-phrases" {...$$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 SecretPhrasesProps = typeof __propDef.props;
13
+ export type SecretPhrasesEvents = typeof __propDef.events;
14
+ export type SecretPhrasesSlots = typeof __propDef.slots;
15
+ export default class SecretPhrases extends SvelteComponentTyped<SecretPhrasesProps, SecretPhrasesEvents, SecretPhrasesSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M21 12c-.819 -.388 -2.223 -.5 -3.19 -.5a6.31 6.31 0 0 0 -6.31 6.31c0 .966 .113 2.371 .5 3.19" }], ["path", { "d": "M12 21c4 0 9 -5 9 -9a9 9 0 1 0 -9 9" }], ["path", { "d": "M9 10h.01" }], ["path", { "d": "M15 10h.01" }], ["path", { "d": "M8.75 15c.878 .672 1.746 1 3 1" }]];
3
+ </script>
4
+ <Icon type="outline" name="sticker-smile" {...$$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 StickerSmileProps = typeof __propDef.props;
13
+ export type StickerSmileEvents = typeof __propDef.events;
14
+ export type StickerSmileSlots = typeof __propDef.slots;
15
+ export default class StickerSmile extends SvelteComponentTyped<StickerSmileProps, StickerSmileEvents, StickerSmileSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" }], ["path", { "d": "M3.429 14.571c9 -15.857 10.134 8.908 17.143 0" }], ["path", { "d": "M4.03 16.286c5.469 -3.939 8.68 3.635 13.541 2.79" }]];
3
+ </script>
4
+ <Icon type="outline" name="voice-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 Voice2Props = typeof __propDef.props;
13
+ export type Voice2Events = typeof __propDef.events;
14
+ export type Voice2Slots = typeof __propDef.slots;
15
+ export default class Voice2 extends SvelteComponentTyped<Voice2Props, Voice2Events, Voice2Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" }], ["path", { "d": "M3 12c4 0 9.647 8.23 14.4 7.092" }], ["path", { "d": "M4.8 17.4c5.85 0 9.617 -7.2 15.3 -7.2" }]];
3
+ </script>
4
+ <Icon type="outline" name="voice" {...$$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 VoiceProps = typeof __propDef.props;
13
+ export type VoiceEvents = typeof __propDef.events;
14
+ export type VoiceSlots = typeof __propDef.slots;
15
+ export default class Voice extends SvelteComponentTyped<VoiceProps, VoiceEvents, VoiceSlots> {
16
+ }
17
+ export {};
@@ -54,6 +54,8 @@ export default [
54
54
  "air-conditioning-disabled",
55
55
  "air-conditioning",
56
56
  "air-traffic-control",
57
+ "airpods-l",
58
+ "airpods-r",
57
59
  "alarm-average",
58
60
  "alarm-minus",
59
61
  "alarm-off",
@@ -1208,6 +1210,7 @@ export default [
1208
1210
  "cash-banknote-off",
1209
1211
  "cash-banknote-plus",
1210
1212
  "cash-banknote",
1213
+ "cash-coin",
1211
1214
  "cash-edit",
1212
1215
  "cash-heart",
1213
1216
  "cash-minus",
@@ -2154,6 +2157,7 @@ export default [
2154
2157
  "ease-in",
2155
2158
  "ease-out-control-point",
2156
2159
  "ease-out",
2160
+ "edit-bulk",
2157
2161
  "edit-circle-off",
2158
2162
  "edit-circle",
2159
2163
  "edit-off",
@@ -2474,8 +2478,10 @@ export default [
2474
2478
  "folder-search",
2475
2479
  "folder-share",
2476
2480
  "folder-star",
2481
+ "folder-stats",
2477
2482
  "folder-symlink",
2478
2483
  "folder-up",
2484
+ "folder-user",
2479
2485
  "folder-x",
2480
2486
  "folder",
2481
2487
  "folders-off",
@@ -2561,6 +2567,8 @@ export default [
2561
2567
  "golf-off",
2562
2568
  "golf",
2563
2569
  "gps",
2570
+ "gpu-2",
2571
+ "gpu",
2564
2572
  "gradienter",
2565
2573
  "grain",
2566
2574
  "grape",
@@ -3195,6 +3203,7 @@ export default [
3195
3203
  "map-pin-up",
3196
3204
  "map-pin-x",
3197
3205
  "map-pin",
3206
+ "map-pinned",
3198
3207
  "map-pins",
3199
3208
  "map-plus",
3200
3209
  "map-question",
@@ -3673,6 +3682,9 @@ export default [
3673
3682
  "om",
3674
3683
  "omega",
3675
3684
  "option",
3685
+ "orbit-vertical",
3686
+ "orbit",
3687
+ "orbits",
3676
3688
  "outbound",
3677
3689
  "outlet",
3678
3690
  "oval-vertical",
@@ -4041,6 +4053,8 @@ export default [
4041
4053
  "rectangular-prism",
4042
4054
  "recycle-off",
4043
4055
  "recycle",
4056
+ "reduce-motion",
4057
+ "reference-image",
4044
4058
  "refresh-alert",
4045
4059
  "refresh-dot",
4046
4060
  "refresh-off",
@@ -4207,6 +4221,7 @@ export default [
4207
4221
  "sdk",
4208
4222
  "search-off",
4209
4223
  "search",
4224
+ "secret-phrases",
4210
4225
  "section-sign",
4211
4226
  "section",
4212
4227
  "seedling-off",
@@ -4597,6 +4612,7 @@ export default [
4597
4612
  "stethoscope-off",
4598
4613
  "stethoscope",
4599
4614
  "sticker-2",
4615
+ "sticker-smile",
4600
4616
  "sticker",
4601
4617
  "stopwatch",
4602
4618
  "storm-off",
@@ -4972,6 +4988,8 @@ export default [
4972
4988
  "virus",
4973
4989
  "vocabulary-off",
4974
4990
  "vocabulary",
4991
+ "voice-2",
4992
+ "voice",
4975
4993
  "volcano",
4976
4994
  "volume-2",
4977
4995
  "volume-3",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.46.0",
3
+ "version": "3.47.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.",
@@ -44,7 +44,7 @@
44
44
  "dist"
45
45
  ],
46
46
  "dependencies": {
47
- "@tabler/icons": "3.46.0"
47
+ "@tabler/icons": "3.47.0"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@sveltejs/package": "^2.2.7",