@tabler/icons-svelte 3.26.0 → 3.27.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 (43) hide show
  1. package/dist/icons/aerial-lift-filled.svelte +6 -0
  2. package/dist/icons/aerial-lift-filled.svelte.d.ts +17 -0
  3. package/dist/icons/air-balloon-filled.svelte +6 -0
  4. package/dist/icons/air-balloon-filled.svelte.d.ts +17 -0
  5. package/dist/icons/bus-filled.svelte +6 -0
  6. package/dist/icons/bus-filled.svelte.d.ts +17 -0
  7. package/dist/icons/car-crane-filled.svelte +6 -0
  8. package/dist/icons/car-crane-filled.svelte.d.ts +17 -0
  9. package/dist/icons/car-filled.svelte +1 -1
  10. package/dist/icons/caravan-filled.svelte +6 -0
  11. package/dist/icons/caravan-filled.svelte.d.ts +17 -0
  12. package/dist/icons/engine-filled.svelte +6 -0
  13. package/dist/icons/engine-filled.svelte.d.ts +17 -0
  14. package/dist/icons/ferry-filled.svelte +6 -0
  15. package/dist/icons/ferry-filled.svelte.d.ts +17 -0
  16. package/dist/icons/file-text-shield.svelte +6 -0
  17. package/dist/icons/file-text-shield.svelte.d.ts +17 -0
  18. package/dist/icons/gas-station-filled.svelte +6 -0
  19. package/dist/icons/gas-station-filled.svelte.d.ts +17 -0
  20. package/dist/icons/hand-click-off.svelte +6 -0
  21. package/dist/icons/hand-click-off.svelte.d.ts +17 -0
  22. package/dist/icons/helicopter-filled.svelte +6 -0
  23. package/dist/icons/helicopter-filled.svelte.d.ts +17 -0
  24. package/dist/icons/index.d.ts +18 -0
  25. package/dist/icons/index.js +18 -0
  26. package/dist/icons/motorbike-filled.svelte +6 -0
  27. package/dist/icons/motorbike-filled.svelte.d.ts +17 -0
  28. package/dist/icons/replace-user.svelte +6 -0
  29. package/dist/icons/replace-user.svelte.d.ts +17 -0
  30. package/dist/icons/rollercoaster-filled.svelte +6 -0
  31. package/dist/icons/rollercoaster-filled.svelte.d.ts +17 -0
  32. package/dist/icons/speedboat-filled.svelte +6 -0
  33. package/dist/icons/speedboat-filled.svelte.d.ts +17 -0
  34. package/dist/icons/speedboat.svelte +1 -1
  35. package/dist/icons/train-filled.svelte +6 -0
  36. package/dist/icons/train-filled.svelte.d.ts +17 -0
  37. package/dist/icons/train.svelte +1 -1
  38. package/dist/icons/trolley-filled.svelte +6 -0
  39. package/dist/icons/trolley-filled.svelte.d.ts +17 -0
  40. package/dist/icons/truck-filled.svelte +6 -0
  41. package/dist/icons/truck-filled.svelte.d.ts +17 -0
  42. package/dist/icons-list.js +18 -0
  43. package/package.json +2 -2
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M19.876 2.008a1 1 0 1 1 .248 1.984l-7.124 .891v2.117h4.2a1 1 0 0 1 .688 .274l.087 .093c2.79 3.417 2.717 9.963 -.226 13.295a1 1 0 0 1 -.749 .338h-10.106a1 1 0 0 1 -.763 -.353c-2.86 -3.373 -2.86 -9.92 0 -13.294a1 1 0 0 1 .763 -.353h4.106v-1.867l-6.876 .86a1 1 0 0 1 -1.095 -.754l-.021 -.115a1 1 0 0 1 .868 -1.116l7.996 -1l.011 -.001l.008 -.001zm-8.876 6.992h-3.617l-.051 .072c-.718 1.042 -1.149 2.41 -1.292 3.844l-.008 .084h4.968zm5.698 0h-3.698v4h4.979l-.005 -.072c-.123 -1.436 -.533 -2.811 -1.232 -3.864z" }]];
3
+ </script>
4
+ <Icon type="filled" name="aerial-lift-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type AerialLiftFilledProps = typeof __propDef.props;
13
+ export type AerialLiftFilledEvents = typeof __propDef.events;
14
+ export type AerialLiftFilledSlots = typeof __propDef.slots;
15
+ export default class AerialLiftFilled extends SvelteComponentTyped<AerialLiftFilledProps, AerialLiftFilledEvents, AerialLiftFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M13 18a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2z" }], ["path", { "d": "M12 1a7 7 0 0 1 7 7c0 4.185 -3.297 9 -7 9s-7 -4.815 -7 -9a7 7 0 0 1 7 -7" }]];
3
+ </script>
4
+ <Icon type="filled" name="air-balloon-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type AirBalloonFilledProps = typeof __propDef.props;
13
+ export type AirBalloonFilledEvents = typeof __propDef.events;
14
+ export type AirBalloonFilledSlots = typeof __propDef.slots;
15
+ export default class AirBalloonFilled extends SvelteComponentTyped<AirBalloonFilledProps, AirBalloonFilledEvents, AirBalloonFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 4c3.4 0 6 3.64 6 8v5a1 1 0 0 1 -1 1h-1.171a3.001 3.001 0 0 1 -5.658 0h-6.342a3.001 3.001 0 0 1 -5.658 0h-1.171a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2zm-11 12a1 1 0 1 0 0 2a1 1 0 0 0 0 -2m12 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2m-.76 -9.989l1.068 4.989h2.636c-.313 -2.756 -1.895 -4.82 -3.704 -4.989m-11.24 -.011h-3v3h3zm5 0h-3v3h3zm4.191 0h-2.191v3h2.834z" }]];
3
+ </script>
4
+ <Icon type="filled" name="bus-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type BusFilledProps = typeof __propDef.props;
13
+ export type BusFilledEvents = typeof __propDef.events;
14
+ export type BusFilledSlots = typeof __propDef.slots;
15
+ export default class BusFilled extends SvelteComponentTyped<BusFilledProps, BusFilledEvents, BusFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3.06 5.66l.035 -.085l.07 -.125l.033 -.048l.063 -.075l.064 -.065l.098 -.079l.106 -.065l.067 -.033l.048 -.02l.139 -.041l18.053 -3.01a1 1 0 0 1 1.164 .986v2a1 1 0 0 1 -2 0v-.82l-13.802 2.3l1.25 .626a1 1 0 0 1 .552 .894l-.001 3h2.001v-4a1 1 0 0 1 1 -1h4a6 6 0 0 1 6 6v5a1 1 0 0 1 -1 1h-1.17a3.001 3.001 0 0 1 -5.66 0h-6.34a3.001 3.001 0 0 1 -5.83 -1v-5a1 1 0 0 1 1 -1v-4.99a1 1 0 0 1 .06 -.35m1.94 10.34a1 1 0 1 0 0 2a1 1 0 0 0 0 -2m12 0a1 1 0 1 0 .992 1.124l.008 -.132l-.007 -.109a1 1 0 0 0 -.993 -.883m-.652 -7.985l.895 2.985h2.63l-.042 -.155a4 4 0 0 0 -3.223 -2.8z" }]];
3
+ </script>
4
+ <Icon type="filled" name="car-crane-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type CarCraneFilledProps = typeof __propDef.props;
13
+ export type CarCraneFilledEvents = typeof __propDef.events;
14
+ export type CarCraneFilledSlots = typeof __propDef.slots;
15
+ export default class CarCraneFilled extends SvelteComponentTyped<CarCraneFilledProps, CarCraneFilledEvents, CarCraneFilledSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M17 14a3 3 0 0 1 2.685 4.34l-.067 .126l-.1 .165l-.141 .2l-.116 .141l-.116 .126a3 3 0 0 1 -.388 .334l-.149 .1l-.089 .055q -.052 .032 -.107 .06l-.17 .085l-.175 .073l-.104 .037l-.17 .052l-.172 .042l-.183 .032l-.075 .01q -.09 .011 -.18 .016l-.183 .006l-.183 -.006l-.18 -.016l-.192 -.03l-.17 -.036l-.18 -.051l-.058 -.019a3 3 0 0 1 -.174 -.065l-.161 -.072l-.168 -.087l-.053 -.03q -.122 -.072 -.237 -.156l-.16 -.124l-.15 -.134l-.129 -.129l-.066 -.073l-.1 -.12l-.12 -.165l-.074 -.113l-.063 -.108l-.067 -.126a3 3 0 0 1 -.315 -1.34a3 3 0 0 1 3 -3m-10 0a3 3 0 0 1 2.685 4.34l-.067 .126l-.1 .165l-.141 .2l-.116 .141l-.116 .126a3 3 0 0 1 -.388 .334l-.149 .1l-.089 .055q -.052 .032 -.107 .06l-.17 .085l-.175 .073l-.104 .037l-.17 .052l-.172 .042l-.183 .032l-.075 .01q -.09 .011 -.18 .016l-.183 .006l-.183 -.006l-.18 -.016l-.192 -.03l-.17 -.036l-.18 -.051l-.058 -.019a3 3 0 0 1 -.174 -.065l-.161 -.072l-.168 -.087l-.053 -.03q -.122 -.072 -.237 -.156l-.16 -.124l-.15 -.134l-.129 -.129l-.066 -.073l-.1 -.12l-.12 -.165l-.074 -.113l-.063 -.108l-.067 -.126a3 3 0 0 1 -.315 -1.34a3 3 0 0 1 3 -3m7 -9a1 1 0 0 1 .694 .28l.087 .095l3.699 4.625h.52a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1 1h-.126q .125 -.48 .126 -1a4 4 0 1 0 -7.874 1h-2.252q .124 -.48 .126 -1a4 4 0 1 0 -7.874 1h-.126a1 1 0 0 1 -1 -1v-6l.007 -.117l.008 -.056l.017 -.078l.012 -.036l.014 -.05l2.014 -5.034a1 1 0 0 1 .928 -.629zm-7 11a1 1 0 1 0 0 2a1 1 0 0 0 0 -2m10 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2m-3.48 -9h-.52v3h2.92z" }]];
2
+ const iconNode = [["path", { "d": "M14 5a1 1 0 0 1 .694 .28l.087 .095l3.699 4.625h.52a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1 1h-1.171a3.001 3.001 0 0 1 -5.658 0h-4.342a3.001 3.001 0 0 1 -5.658 0h-1.171a1 1 0 0 1 -1 -1v-6l.007 -.117l.008 -.056l.017 -.078l.012 -.036l.014 -.05l2.014 -5.034a1 1 0 0 1 .928 -.629zm-7 11a1 1 0 1 0 0 2a1 1 0 0 0 0 -2m10 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2m-6 -9h-5.324l-1.2 3h6.524zm2.52 0h-.52v3h2.92z" }]];
3
3
  </script>
4
4
  <Icon type="filled" name="car-filled" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M15.949 3.684l.771 2.316h1.28a3 3 0 0 1 3 3v6h1a1 1 0 0 1 0 2h-1.17a3 3 0 0 1 -2.83 2h-6.17a3.001 3.001 0 0 1 -5.66 0h-1.17a3 3 0 0 1 -3 -3v-3.5a6.5 6.5 0 0 1 5.672 -6.448l6.934 -2.971a1 1 0 0 1 1.343 .603m-6.949 13.316a1 1 0 1 0 0 2a1 1 0 0 0 0 -2m5.5 -7h-1a1.5 1.5 0 0 0 -1.5 1.5v1a1.5 1.5 0 0 0 1.5 1.5h1a1.5 1.5 0 0 0 1.5 -1.5v-1a1.5 1.5 0 0 0 -1.5 -1.5m-.105 -4.653l-1.524 .653h1.742z" }]];
3
+ </script>
4
+ <Icon type="filled" name="caravan-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type CaravanFilledProps = typeof __propDef.props;
13
+ export type CaravanFilledEvents = typeof __propDef.events;
14
+ export type CaravanFilledSlots = typeof __propDef.slots;
15
+ export default class CaravanFilled extends SvelteComponentTyped<CaravanFilledProps, CaravanFilledEvents, CaravanFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14 4a1 1 0 0 1 0 2h-1v1h.383a2 2 0 0 1 1.787 1.106l1.45 2.894h.38v-1a1 1 0 0 1 .883 -.993l.117 -.007h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a1 1 0 0 1 -1 -1v-1h-1v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3.465a2 2 0 0 1 -1.664 -.89l-1.407 -2.11h-1.464a1 1 0 0 1 -.993 -.883l-.007 -.117v-2h-1v2a1 1 0 0 1 -2 0v-6a1 1 0 1 1 2 0v2h1v-2a1 1 0 0 1 1 -1h1.584l1.709 -1.707a1 1 0 0 1 .576 -.284l.131 -.009h1v-1h-1a1 1 0 1 1 0 -2z" }]];
3
+ </script>
4
+ <Icon type="filled" name="engine-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type EngineFilledProps = typeof __propDef.props;
13
+ export type EngineFilledEvents = typeof __propDef.events;
14
+ export type EngineFilledSlots = typeof __propDef.slots;
15
+ export default class EngineFilled extends SvelteComponentTyped<EngineFilledProps, EngineFilledEvents, EngineFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M22 12a1 1 0 0 1 .86 1.51l-2.202 3.709a4.06 4.06 0 0 1 -3.365 1.781h-15.293a1 1 0 0 1 -.957 -1.291l1.521 -5a1 1 0 0 1 .957 -.709zm-3 1a1 1 0 1 0 0 2a1 1 0 0 0 0 -2m-5.106 -7.447l.723 1.447h.874a1 1 0 0 1 .864 .497l2.037 3.503h-12.832l.973 -3.284a1 1 0 0 1 .958 -.716h4.89l-.275 -.553a1 1 0 0 1 1.788 -.894" }]];
3
+ </script>
4
+ <Icon type="filled" name="ferry-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type FerryFilledProps = typeof __propDef.props;
13
+ export type FerryFilledEvents = typeof __propDef.events;
14
+ export type FerryFilledSlots = typeof __propDef.slots;
15
+ export default class FerryFilled extends SvelteComponentTyped<FerryFilledProps, FerryFilledEvents, FerryFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M13 3v4a.997 .997 0 0 0 1 1h4" }], ["path", { "d": "M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5" }], ["path", { "d": "M8 9h1" }], ["path", { "d": "M8 12.994l3 0" }], ["path", { "d": "M8 16.997l2 0" }], ["path", { "d": "M21 15.994c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="file-text-shield" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type FileTextShieldProps = typeof __propDef.props;
13
+ export type FileTextShieldEvents = typeof __propDef.events;
14
+ export type FileTextShieldSlots = typeof __propDef.slots;
15
+ export default class FileTextShield extends SvelteComponentTyped<FileTextShieldProps, FileTextShieldEvents, FileTextShieldSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 21a1 1 0 0 1 0 -2v-13a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4a3 3 0 0 1 3 3v3a.5 .5 0 1 0 1 0v-6a2 2 0 0 1 -2 -2v-.585l-.707 -.708a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.414 0l3.003 3.002l.095 .112l.028 .04l.044 .073l.052 .11l.031 .09l.02 .076l.012 .078l.008 .126v7a2.5 2.5 0 1 1 -5 0v-3a1 1 0 0 0 -1 -1v7a1 1 0 0 1 0 2zm9 -16h-6a1 1 0 0 0 -1 1v4h8v-4a1 1 0 0 0 -1 -1" }]];
3
+ </script>
4
+ <Icon type="filled" name="gas-station-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type GasStationFilledProps = typeof __propDef.props;
13
+ export type GasStationFilledEvents = typeof __propDef.events;
14
+ export type GasStationFilledSlots = typeof __propDef.slots;
15
+ export default class GasStationFilled extends SvelteComponentTyped<GasStationFilledProps, GasStationFilledEvents, GasStationFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8 13v-5" }], ["path", { "d": "M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1" }], ["path", { "d": "M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5" }], ["path", { "d": "M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5" }], ["path", { "d": "M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47" }], ["path", { "d": "M3 3l18 18" }], ["path", { "d": "M4 7h-1" }], ["path", { "d": "M14 3l1 -1" }], ["path", { "d": "M15 6h1" }]];
3
+ </script>
4
+ <Icon type="outline" name="hand-click-off" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type HandClickOffProps = typeof __propDef.props;
13
+ export type HandClickOffEvents = typeof __propDef.events;
14
+ export type HandClickOffSlots = typeof __propDef.slots;
15
+ export default class HandClickOff extends SvelteComponentTyped<HandClickOffProps, HandClickOffEvents, HandClickOffSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M20 5a1 1 0 0 1 0 2h-6v1c4.642 0 8 2.218 8 6a3 3 0 0 1 -3 3h-3v1h3a1 1 0 0 1 0 2h-8a1 1 0 0 1 0 -2h3v-1h-2c-1.652 0 -3 -1.348 -3 -3v-1.001l-6 .001a1 1 0 0 1 -.894 -.553l-1 -2a1 1 0 0 1 1.788 -.894l.724 1.447l5.382 -.001l.005 -.175a3 3 0 0 1 2.995 -2.824v-1h-7a1 1 0 1 1 0 -2zm-3.999 5.174l-.001 1.826h3.36c-.665 -.906 -1.825 -1.539 -3.359 -1.826" }]];
3
+ </script>
4
+ <Icon type="filled" name="helicopter-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type HelicopterFilledProps = typeof __propDef.props;
13
+ export type HelicopterFilledEvents = typeof __propDef.events;
14
+ export type HelicopterFilledSlots = typeof __propDef.slots;
15
+ export default class HelicopterFilled extends SvelteComponentTyped<HelicopterFilledProps, HelicopterFilledEvents, HelicopterFilledSlots> {
16
+ }
17
+ export {};
@@ -2225,6 +2225,7 @@ export { default as IconFileStack } from './file-stack.svelte';
2225
2225
  export { default as IconFileStar } from './file-star.svelte';
2226
2226
  export { default as IconFileSymlink } from './file-symlink.svelte';
2227
2227
  export { default as IconFileTextAi } from './file-text-ai.svelte';
2228
+ export { default as IconFileTextShield } from './file-text-shield.svelte';
2228
2229
  export { default as IconFileTextSpark } from './file-text-spark.svelte';
2229
2230
  export { default as IconFileText } from './file-text.svelte';
2230
2231
  export { default as IconFileTime } from './file-time.svelte';
@@ -2484,6 +2485,7 @@ export { default as IconH5 } from './h-5.svelte';
2484
2485
  export { default as IconH6 } from './h-6.svelte';
2485
2486
  export { default as IconHammerOff } from './hammer-off.svelte';
2486
2487
  export { default as IconHammer } from './hammer.svelte';
2488
+ export { default as IconHandClickOff } from './hand-click-off.svelte';
2487
2489
  export { default as IconHandClick } from './hand-click.svelte';
2488
2490
  export { default as IconHandFingerDown } from './hand-finger-down.svelte';
2489
2491
  export { default as IconHandFingerLeft } from './hand-finger-left.svelte';
@@ -3907,6 +3909,7 @@ export { default as IconRepeatOff } from './repeat-off.svelte';
3907
3909
  export { default as IconRepeatOnce } from './repeat-once.svelte';
3908
3910
  export { default as IconRepeat } from './repeat.svelte';
3909
3911
  export { default as IconReplaceOff } from './replace-off.svelte';
3912
+ export { default as IconReplaceUser } from './replace-user.svelte';
3910
3913
  export { default as IconReplace } from './replace.svelte';
3911
3914
  export { default as IconReportAnalytics } from './report-analytics.svelte';
3912
3915
  export { default as IconReportMedical } from './report-medical.svelte';
@@ -4917,7 +4920,9 @@ export { default as IconAccessibleFilled } from './accessible-filled.svelte';
4917
4920
  export { default as IconAdCircleFilled } from './ad-circle-filled.svelte';
4918
4921
  export { default as IconAdFilled } from './ad-filled.svelte';
4919
4922
  export { default as IconAdjustmentsFilled } from './adjustments-filled.svelte';
4923
+ export { default as IconAerialLiftFilled } from './aerial-lift-filled.svelte';
4920
4924
  export { default as IconAffiliateFilled } from './affiliate-filled.svelte';
4925
+ export { default as IconAirBalloonFilled } from './air-balloon-filled.svelte';
4921
4926
  export { default as IconAlarmMinusFilled } from './alarm-minus-filled.svelte';
4922
4927
  export { default as IconAlarmPlusFilled } from './alarm-plus-filled.svelte';
4923
4928
  export { default as IconAlarmSnoozeFilled } from './alarm-snooze-filled.svelte';
@@ -5111,6 +5116,7 @@ export { default as IconBubbleFilled } from './bubble-filled.svelte';
5111
5116
  export { default as IconBugFilled } from './bug-filled.svelte';
5112
5117
  export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
5113
5118
  export { default as IconBulbFilled } from './bulb-filled.svelte';
5119
+ export { default as IconBusFilled } from './bus-filled.svelte';
5114
5120
  export { default as IconButterflyFilled } from './butterfly-filled.svelte';
5115
5121
  export { default as IconCactusFilled } from './cactus-filled.svelte';
5116
5122
  export { default as IconCalculatorFilled } from './calculator-filled.svelte';
@@ -5126,10 +5132,12 @@ export { default as IconCapsuleHorizontalFilled } from './capsule-horizontal-fil
5126
5132
  export { default as IconCapsuleFilled } from './capsule-filled.svelte';
5127
5133
  export { default as IconCaptureFilled } from './capture-filled.svelte';
5128
5134
  export { default as IconCar4wdFilled } from './car-4wd-filled.svelte';
5135
+ export { default as IconCarCraneFilled } from './car-crane-filled.svelte';
5129
5136
  export { default as IconCarFanFilled } from './car-fan-filled.svelte';
5130
5137
  export { default as IconCarSuvFilled } from './car-suv-filled.svelte';
5131
5138
  export { default as IconCarFilled } from './car-filled.svelte';
5132
5139
  export { default as IconCarambolaFilled } from './carambola-filled.svelte';
5140
+ export { default as IconCaravanFilled } from './caravan-filled.svelte';
5133
5141
  export { default as IconCardboardsFilled } from './cardboards-filled.svelte';
5134
5142
  export { default as IconCardsFilled } from './cards-filled.svelte';
5135
5143
  export { default as IconCaretDownFilled } from './caret-down-filled.svelte';
@@ -5326,11 +5334,13 @@ export { default as IconDropletsFilled } from './droplets-filled.svelte';
5326
5334
  export { default as IconEggCrackedFilled } from './egg-cracked-filled.svelte';
5327
5335
  export { default as IconEggFilled } from './egg-filled.svelte';
5328
5336
  export { default as IconElevatorFilled } from './elevator-filled.svelte';
5337
+ export { default as IconEngineFilled } from './engine-filled.svelte';
5329
5338
  export { default as IconExclamationCircleFilled } from './exclamation-circle-filled.svelte';
5330
5339
  export { default as IconEyeFilled } from './eye-filled.svelte';
5331
5340
  export { default as IconEyeglassFilled } from './eyeglass-filled.svelte';
5332
5341
  export { default as IconFaviconFilled } from './favicon-filled.svelte';
5333
5342
  export { default as IconFeatherFilled } from './feather-filled.svelte';
5343
+ export { default as IconFerryFilled } from './ferry-filled.svelte';
5334
5344
  export { default as IconFileXFilled } from './file-x-filled.svelte';
5335
5345
  export { default as IconFileFilled } from './file-filled.svelte';
5336
5346
  export { default as IconFilterFilled } from './filter-filled.svelte';
@@ -5350,6 +5360,7 @@ export { default as IconForbidFilled } from './forbid-filled.svelte';
5350
5360
  export { default as IconFountainFilled } from './fountain-filled.svelte';
5351
5361
  export { default as IconFunctionFilled } from './function-filled.svelte';
5352
5362
  export { default as IconGardenCartFilled } from './garden-cart-filled.svelte';
5363
+ export { default as IconGasStationFilled } from './gas-station-filled.svelte';
5353
5364
  export { default as IconGaugeFilled } from './gauge-filled.svelte';
5354
5365
  export { default as IconGhost2Filled } from './ghost-2-filled.svelte';
5355
5366
  export { default as IconGhost3Filled } from './ghost-3-filled.svelte';
@@ -5368,6 +5379,7 @@ export { default as IconHanger2Filled } from './hanger-2-filled.svelte';
5368
5379
  export { default as IconHeadphonesFilled } from './headphones-filled.svelte';
5369
5380
  export { default as IconHeartFilled } from './heart-filled.svelte';
5370
5381
  export { default as IconHelicopterLandingFilled } from './helicopter-landing-filled.svelte';
5382
+ export { default as IconHelicopterFilled } from './helicopter-filled.svelte';
5371
5383
  export { default as IconHelpCircleFilled } from './help-circle-filled.svelte';
5372
5384
  export { default as IconHelpHexagonFilled } from './help-hexagon-filled.svelte';
5373
5385
  export { default as IconHelpOctagonFilled } from './help-octagon-filled.svelte';
@@ -5518,6 +5530,7 @@ export { default as IconMoodSadFilled } from './mood-sad-filled.svelte';
5518
5530
  export { default as IconMoodSmileFilled } from './mood-smile-filled.svelte';
5519
5531
  export { default as IconMoodWrrrFilled } from './mood-wrrr-filled.svelte';
5520
5532
  export { default as IconMoonFilled } from './moon-filled.svelte';
5533
+ export { default as IconMotorbikeFilled } from './motorbike-filled.svelte';
5521
5534
  export { default as IconMountainFilled } from './mountain-filled.svelte';
5522
5535
  export { default as IconMouseFilled } from './mouse-filled.svelte';
5523
5536
  export { default as IconMugFilled } from './mug-filled.svelte';
@@ -5585,6 +5598,7 @@ export { default as IconRelationManyToManyFilled } from './relation-many-to-many
5585
5598
  export { default as IconRelationOneToManyFilled } from './relation-one-to-many-filled.svelte';
5586
5599
  export { default as IconRelationOneToOneFilled } from './relation-one-to-one-filled.svelte';
5587
5600
  export { default as IconReplaceFilled } from './replace-filled.svelte';
5601
+ export { default as IconRollercoasterFilled } from './rollercoaster-filled.svelte';
5588
5602
  export { default as IconRosetteDiscountCheckFilled } from './rosette-discount-check-filled.svelte';
5589
5603
  export { default as IconRosetteDiscountFilled } from './rosette-discount-filled.svelte';
5590
5604
  export { default as IconRosetteFilled } from './rosette-filled.svelte';
@@ -5609,6 +5623,7 @@ export { default as IconSortDescending2Filled } from './sort-descending-2-filled
5609
5623
  export { default as IconSortDescendingShapesFilled } from './sort-descending-shapes-filled.svelte';
5610
5624
  export { default as IconSoupFilled } from './soup-filled.svelte';
5611
5625
  export { default as IconSpadeFilled } from './spade-filled.svelte';
5626
+ export { default as IconSpeedboatFilled } from './speedboat-filled.svelte';
5612
5627
  export { default as IconSquareArrowDownFilled } from './square-arrow-down-filled.svelte';
5613
5628
  export { default as IconSquareArrowLeftFilled } from './square-arrow-left-filled.svelte';
5614
5629
  export { default as IconSquareArrowRightFilled } from './square-arrow-right-filled.svelte';
@@ -5751,6 +5766,7 @@ export { default as IconTiltShiftFilled } from './tilt-shift-filled.svelte';
5751
5766
  export { default as IconTimelineEventFilled } from './timeline-event-filled.svelte';
5752
5767
  export { default as IconToggleLeftFilled } from './toggle-left-filled.svelte';
5753
5768
  export { default as IconToggleRightFilled } from './toggle-right-filled.svelte';
5769
+ export { default as IconTrainFilled } from './train-filled.svelte';
5754
5770
  export { default as IconTransformFilled } from './transform-filled.svelte';
5755
5771
  export { default as IconTransitionBottomFilled } from './transition-bottom-filled.svelte';
5756
5772
  export { default as IconTransitionLeftFilled } from './transition-left-filled.svelte';
@@ -5761,7 +5777,9 @@ export { default as IconTrashFilled } from './trash-filled.svelte';
5761
5777
  export { default as IconTriangleInvertedFilled } from './triangle-inverted-filled.svelte';
5762
5778
  export { default as IconTriangleSquareCircleFilled } from './triangle-square-circle-filled.svelte';
5763
5779
  export { default as IconTriangleFilled } from './triangle-filled.svelte';
5780
+ export { default as IconTrolleyFilled } from './trolley-filled.svelte';
5764
5781
  export { default as IconTrophyFilled } from './trophy-filled.svelte';
5782
+ export { default as IconTruckFilled } from './truck-filled.svelte';
5765
5783
  export { default as IconUmbrellaFilled } from './umbrella-filled.svelte';
5766
5784
  export { default as IconUserFilled } from './user-filled.svelte';
5767
5785
  export { default as IconVersionsFilled } from './versions-filled.svelte';
@@ -2225,6 +2225,7 @@ export { default as IconFileStack } from './file-stack.svelte';
2225
2225
  export { default as IconFileStar } from './file-star.svelte';
2226
2226
  export { default as IconFileSymlink } from './file-symlink.svelte';
2227
2227
  export { default as IconFileTextAi } from './file-text-ai.svelte';
2228
+ export { default as IconFileTextShield } from './file-text-shield.svelte';
2228
2229
  export { default as IconFileTextSpark } from './file-text-spark.svelte';
2229
2230
  export { default as IconFileText } from './file-text.svelte';
2230
2231
  export { default as IconFileTime } from './file-time.svelte';
@@ -2484,6 +2485,7 @@ export { default as IconH5 } from './h-5.svelte';
2484
2485
  export { default as IconH6 } from './h-6.svelte';
2485
2486
  export { default as IconHammerOff } from './hammer-off.svelte';
2486
2487
  export { default as IconHammer } from './hammer.svelte';
2488
+ export { default as IconHandClickOff } from './hand-click-off.svelte';
2487
2489
  export { default as IconHandClick } from './hand-click.svelte';
2488
2490
  export { default as IconHandFingerDown } from './hand-finger-down.svelte';
2489
2491
  export { default as IconHandFingerLeft } from './hand-finger-left.svelte';
@@ -3907,6 +3909,7 @@ export { default as IconRepeatOff } from './repeat-off.svelte';
3907
3909
  export { default as IconRepeatOnce } from './repeat-once.svelte';
3908
3910
  export { default as IconRepeat } from './repeat.svelte';
3909
3911
  export { default as IconReplaceOff } from './replace-off.svelte';
3912
+ export { default as IconReplaceUser } from './replace-user.svelte';
3910
3913
  export { default as IconReplace } from './replace.svelte';
3911
3914
  export { default as IconReportAnalytics } from './report-analytics.svelte';
3912
3915
  export { default as IconReportMedical } from './report-medical.svelte';
@@ -4917,7 +4920,9 @@ export { default as IconAccessibleFilled } from './accessible-filled.svelte';
4917
4920
  export { default as IconAdCircleFilled } from './ad-circle-filled.svelte';
4918
4921
  export { default as IconAdFilled } from './ad-filled.svelte';
4919
4922
  export { default as IconAdjustmentsFilled } from './adjustments-filled.svelte';
4923
+ export { default as IconAerialLiftFilled } from './aerial-lift-filled.svelte';
4920
4924
  export { default as IconAffiliateFilled } from './affiliate-filled.svelte';
4925
+ export { default as IconAirBalloonFilled } from './air-balloon-filled.svelte';
4921
4926
  export { default as IconAlarmMinusFilled } from './alarm-minus-filled.svelte';
4922
4927
  export { default as IconAlarmPlusFilled } from './alarm-plus-filled.svelte';
4923
4928
  export { default as IconAlarmSnoozeFilled } from './alarm-snooze-filled.svelte';
@@ -5111,6 +5116,7 @@ export { default as IconBubbleFilled } from './bubble-filled.svelte';
5111
5116
  export { default as IconBugFilled } from './bug-filled.svelte';
5112
5117
  export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
5113
5118
  export { default as IconBulbFilled } from './bulb-filled.svelte';
5119
+ export { default as IconBusFilled } from './bus-filled.svelte';
5114
5120
  export { default as IconButterflyFilled } from './butterfly-filled.svelte';
5115
5121
  export { default as IconCactusFilled } from './cactus-filled.svelte';
5116
5122
  export { default as IconCalculatorFilled } from './calculator-filled.svelte';
@@ -5126,10 +5132,12 @@ export { default as IconCapsuleHorizontalFilled } from './capsule-horizontal-fil
5126
5132
  export { default as IconCapsuleFilled } from './capsule-filled.svelte';
5127
5133
  export { default as IconCaptureFilled } from './capture-filled.svelte';
5128
5134
  export { default as IconCar4wdFilled } from './car-4wd-filled.svelte';
5135
+ export { default as IconCarCraneFilled } from './car-crane-filled.svelte';
5129
5136
  export { default as IconCarFanFilled } from './car-fan-filled.svelte';
5130
5137
  export { default as IconCarSuvFilled } from './car-suv-filled.svelte';
5131
5138
  export { default as IconCarFilled } from './car-filled.svelte';
5132
5139
  export { default as IconCarambolaFilled } from './carambola-filled.svelte';
5140
+ export { default as IconCaravanFilled } from './caravan-filled.svelte';
5133
5141
  export { default as IconCardboardsFilled } from './cardboards-filled.svelte';
5134
5142
  export { default as IconCardsFilled } from './cards-filled.svelte';
5135
5143
  export { default as IconCaretDownFilled } from './caret-down-filled.svelte';
@@ -5326,11 +5334,13 @@ export { default as IconDropletsFilled } from './droplets-filled.svelte';
5326
5334
  export { default as IconEggCrackedFilled } from './egg-cracked-filled.svelte';
5327
5335
  export { default as IconEggFilled } from './egg-filled.svelte';
5328
5336
  export { default as IconElevatorFilled } from './elevator-filled.svelte';
5337
+ export { default as IconEngineFilled } from './engine-filled.svelte';
5329
5338
  export { default as IconExclamationCircleFilled } from './exclamation-circle-filled.svelte';
5330
5339
  export { default as IconEyeFilled } from './eye-filled.svelte';
5331
5340
  export { default as IconEyeglassFilled } from './eyeglass-filled.svelte';
5332
5341
  export { default as IconFaviconFilled } from './favicon-filled.svelte';
5333
5342
  export { default as IconFeatherFilled } from './feather-filled.svelte';
5343
+ export { default as IconFerryFilled } from './ferry-filled.svelte';
5334
5344
  export { default as IconFileXFilled } from './file-x-filled.svelte';
5335
5345
  export { default as IconFileFilled } from './file-filled.svelte';
5336
5346
  export { default as IconFilterFilled } from './filter-filled.svelte';
@@ -5350,6 +5360,7 @@ export { default as IconForbidFilled } from './forbid-filled.svelte';
5350
5360
  export { default as IconFountainFilled } from './fountain-filled.svelte';
5351
5361
  export { default as IconFunctionFilled } from './function-filled.svelte';
5352
5362
  export { default as IconGardenCartFilled } from './garden-cart-filled.svelte';
5363
+ export { default as IconGasStationFilled } from './gas-station-filled.svelte';
5353
5364
  export { default as IconGaugeFilled } from './gauge-filled.svelte';
5354
5365
  export { default as IconGhost2Filled } from './ghost-2-filled.svelte';
5355
5366
  export { default as IconGhost3Filled } from './ghost-3-filled.svelte';
@@ -5368,6 +5379,7 @@ export { default as IconHanger2Filled } from './hanger-2-filled.svelte';
5368
5379
  export { default as IconHeadphonesFilled } from './headphones-filled.svelte';
5369
5380
  export { default as IconHeartFilled } from './heart-filled.svelte';
5370
5381
  export { default as IconHelicopterLandingFilled } from './helicopter-landing-filled.svelte';
5382
+ export { default as IconHelicopterFilled } from './helicopter-filled.svelte';
5371
5383
  export { default as IconHelpCircleFilled } from './help-circle-filled.svelte';
5372
5384
  export { default as IconHelpHexagonFilled } from './help-hexagon-filled.svelte';
5373
5385
  export { default as IconHelpOctagonFilled } from './help-octagon-filled.svelte';
@@ -5518,6 +5530,7 @@ export { default as IconMoodSadFilled } from './mood-sad-filled.svelte';
5518
5530
  export { default as IconMoodSmileFilled } from './mood-smile-filled.svelte';
5519
5531
  export { default as IconMoodWrrrFilled } from './mood-wrrr-filled.svelte';
5520
5532
  export { default as IconMoonFilled } from './moon-filled.svelte';
5533
+ export { default as IconMotorbikeFilled } from './motorbike-filled.svelte';
5521
5534
  export { default as IconMountainFilled } from './mountain-filled.svelte';
5522
5535
  export { default as IconMouseFilled } from './mouse-filled.svelte';
5523
5536
  export { default as IconMugFilled } from './mug-filled.svelte';
@@ -5585,6 +5598,7 @@ export { default as IconRelationManyToManyFilled } from './relation-many-to-many
5585
5598
  export { default as IconRelationOneToManyFilled } from './relation-one-to-many-filled.svelte';
5586
5599
  export { default as IconRelationOneToOneFilled } from './relation-one-to-one-filled.svelte';
5587
5600
  export { default as IconReplaceFilled } from './replace-filled.svelte';
5601
+ export { default as IconRollercoasterFilled } from './rollercoaster-filled.svelte';
5588
5602
  export { default as IconRosetteDiscountCheckFilled } from './rosette-discount-check-filled.svelte';
5589
5603
  export { default as IconRosetteDiscountFilled } from './rosette-discount-filled.svelte';
5590
5604
  export { default as IconRosetteFilled } from './rosette-filled.svelte';
@@ -5609,6 +5623,7 @@ export { default as IconSortDescending2Filled } from './sort-descending-2-filled
5609
5623
  export { default as IconSortDescendingShapesFilled } from './sort-descending-shapes-filled.svelte';
5610
5624
  export { default as IconSoupFilled } from './soup-filled.svelte';
5611
5625
  export { default as IconSpadeFilled } from './spade-filled.svelte';
5626
+ export { default as IconSpeedboatFilled } from './speedboat-filled.svelte';
5612
5627
  export { default as IconSquareArrowDownFilled } from './square-arrow-down-filled.svelte';
5613
5628
  export { default as IconSquareArrowLeftFilled } from './square-arrow-left-filled.svelte';
5614
5629
  export { default as IconSquareArrowRightFilled } from './square-arrow-right-filled.svelte';
@@ -5751,6 +5766,7 @@ export { default as IconTiltShiftFilled } from './tilt-shift-filled.svelte';
5751
5766
  export { default as IconTimelineEventFilled } from './timeline-event-filled.svelte';
5752
5767
  export { default as IconToggleLeftFilled } from './toggle-left-filled.svelte';
5753
5768
  export { default as IconToggleRightFilled } from './toggle-right-filled.svelte';
5769
+ export { default as IconTrainFilled } from './train-filled.svelte';
5754
5770
  export { default as IconTransformFilled } from './transform-filled.svelte';
5755
5771
  export { default as IconTransitionBottomFilled } from './transition-bottom-filled.svelte';
5756
5772
  export { default as IconTransitionLeftFilled } from './transition-left-filled.svelte';
@@ -5761,7 +5777,9 @@ export { default as IconTrashFilled } from './trash-filled.svelte';
5761
5777
  export { default as IconTriangleInvertedFilled } from './triangle-inverted-filled.svelte';
5762
5778
  export { default as IconTriangleSquareCircleFilled } from './triangle-square-circle-filled.svelte';
5763
5779
  export { default as IconTriangleFilled } from './triangle-filled.svelte';
5780
+ export { default as IconTrolleyFilled } from './trolley-filled.svelte';
5764
5781
  export { default as IconTrophyFilled } from './trophy-filled.svelte';
5782
+ export { default as IconTruckFilled } from './truck-filled.svelte';
5765
5783
  export { default as IconUmbrellaFilled } from './umbrella-filled.svelte';
5766
5784
  export { default as IconUserFilled } from './user-filled.svelte';
5767
5785
  export { default as IconVersionsFilled } from './versions-filled.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M15 5a1 1 0 0 1 .894 .553l3.225 6.449l.08 .003a4 4 0 1 1 -4.199 3.995l.005 -.2a4 4 0 0 1 2.111 -3.33l-.557 -1.115l-3.352 3.352a1 1 0 0 1 -.707 .293h-3.626q .124 .481 .126 1a4 4 0 1 1 -8 0l.005 -.2a4 4 0 0 1 6.33 -3.049l1.749 -1.751h-3.084a1 1 0 0 1 -.993 -.883l-.007 -.117a1 1 0 0 1 1 -1h9.381l-1 -2h-1.381a1 1 0 0 1 -.993 -.883l-.007 -.117a1 1 0 0 1 1 -1z" }]];
3
+ </script>
4
+ <Icon type="filled" name="motorbike-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type MotorbikeFilledProps = typeof __propDef.props;
13
+ export type MotorbikeFilledEvents = typeof __propDef.events;
14
+ export type MotorbikeFilledSlots = typeof __propDef.slots;
15
+ export default class MotorbikeFilled extends SvelteComponentTyped<MotorbikeFilledProps, MotorbikeFilledEvents, MotorbikeFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M21 11v-3c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586h-6m0 0l3 3m-3 -3l3 -3" }], ["path", { "d": "M3 13.013v3c0 .53 .211 1.039 .586 1.414c.375 .375 .884 .586 1.414 .586h6m0 0l-3 -3m3 3l-3 3" }], ["path", { "d": "M16 16.502c0 .53 .211 1.039 .586 1.414c.375 .375 .884 .586 1.414 .586c.53 0 1.039 -.211 1.414 -.586c.375 -.375 .586 -.884 .586 -1.414c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586c-.53 0 -1.039 .211 -1.414 .586c-.375 .375 -.586 .884 -.586 1.414z" }], ["path", { "d": "M4 4.502c0 .53 .211 1.039 .586 1.414c.375 .375 .884 .586 1.414 .586c.53 0 1.039 -.211 1.414 -.586c.375 -.375 .586 -.884 .586 -1.414c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586c-.53 0 -1.039 .211 -1.414 .586c-.375 .375 -.586 .884 -.586 1.414z" }], ["path", { "d": "M21 21.499c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586h-2c-.53 0 -1.039 .211 -1.414 .586c-.375 .375 -.586 .884 -.586 1.414" }], ["path", { "d": "M9 9.499c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586h-2c-.53 0 -1.039 .211 -1.414 .586c-.375 .375 -.586 .884 -.586 1.414" }]];
3
+ </script>
4
+ <Icon type="outline" name="replace-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 ReplaceUserProps = typeof __propDef.props;
13
+ export type ReplaceUserEvents = typeof __propDef.events;
14
+ export type ReplaceUserSlots = typeof __propDef.slots;
15
+ export default class ReplaceUser extends SvelteComponentTyped<ReplaceUserProps, ReplaceUserEvents, ReplaceUserSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M21 8a1 1 0 0 1 0 2v11a1 1 0 0 1 -2 0v-11h-1.675q -.163 0 -.325 .007v10.993a1 1 0 0 1 -2 0v-10.645a7.8 7.8 0 0 0 -2 .959v9.686a1 1 0 0 1 -2 0v-7.748a7.8 7.8 0 0 0 -1.051 2.064l-.735 2.205a7 7 0 0 1 -.213 .553l-.001 2.926a1 1 0 0 1 -2 0l.001 -.364a6.54 6.54 0 0 1 -4.001 1.364a1 1 0 0 1 0 -2a4.55 4.55 0 0 0 4.316 -3.111l.735 -2.205a9.775 9.775 0 0 1 9.274 -6.684zm-10.22 -3.625l2 2.5a1 1 0 0 1 -.18 1.425l-4 3a1 1 0 0 1 -.868 .164l-1.8 -.5a1 1 0 0 1 -.727 -.864l-.2 -2a1 1 0 0 1 .395 -.9l4 -3a1 1 0 0 1 1.38 .175m9.22 -2.375a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1z" }]];
3
+ </script>
4
+ <Icon type="filled" name="rollercoaster-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type RollercoasterFilledProps = typeof __propDef.props;
13
+ export type RollercoasterFilledEvents = typeof __propDef.events;
14
+ export type RollercoasterFilledSlots = typeof __propDef.slots;
15
+ export default class RollercoasterFilled extends SvelteComponentTyped<RollercoasterFilledProps, RollercoasterFilledEvents, RollercoasterFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14 7a1 1 0 0 1 .832 .445l1.702 2.555h5.466a1 1 0 0 1 .833 1.554l-3.1 4.66a4 4 0 0 1 -3.333 1.786h-14.4a1 1 0 0 1 -.936 -1.351l1.5 -4a1 1 0 0 1 .936 -.649h1.756l.9 -3h-.156a1 1 0 0 1 -.993 -.883l-.007 -.117a1 1 0 0 1 1 -1zm-6.657 5h1.887c.383 0 .762 -.074 1.12 -.219l3.557 -1.418q .186 -.075 .377 -.135l-.82 -1.228h-5.22z" }]];
3
+ </script>
4
+ <Icon type="filled" name="speedboat-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type SpeedboatFilledProps = typeof __propDef.props;
13
+ export type SpeedboatFilledEvents = typeof __propDef.events;
14
+ export type SpeedboatFilledSlots = typeof __propDef.slots;
15
+ export default class SpeedboatFilled extends SvelteComponentTyped<SpeedboatFilledProps, SpeedboatFilledEvents, SpeedboatFilledSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z" }], ["path", { "d": "M6 13l1.5 -5" }], ["path", { "d": "M6 8h8l2 3" }]];
2
+ const iconNode = [["path", { "d": "M2 17h14.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-5.73z" }], ["path", { "d": "M6 13l1.5 -5" }], ["path", { "d": "M6 8h8l2 3" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="speedboat" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M11 5c6.634 0 10.853 3.11 10.996 7.754l.004 .246a3 3 0 0 1 -3 3h-16a1 1 0 0 1 -1 -1v-9a1 1 0 0 1 1 -1zm-4 2h-3v3h3zm4 0h-2v3h3v-2.974a19 19 0 0 0 -1 -.026m3.001 .257l-.001 2.743h5.04c-.979 -1.337 -2.689 -2.306 -5.039 -2.743m6.999 10.743a1 1 0 0 1 0 2h-18a1 1 0 0 1 0 -2z" }]];
3
+ </script>
4
+ <Icon type="filled" name="train-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type TrainFilledProps = typeof __propDef.props;
13
+ export type TrainFilledEvents = typeof __propDef.events;
14
+ export type TrainFilledSlots = typeof __propDef.slots;
15
+ export default class TrainFilled extends SvelteComponentTyped<TrainFilledProps, TrainFilledEvents, TrainFilledSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M21 13c0 -3.87 -3.37 -7 -10 -7h-8" }], ["path", { "d": "M3 15h16a2 2 0 0 0 2 -2" }], ["path", { "d": "M3 6v5h17.5" }], ["path", { "d": "M3 10l0 4" }], ["path", { "d": "M8 11l0 -5" }], ["path", { "d": "M13 11l0 -4.5" }], ["path", { "d": "M3 19l18 0" }]];
2
+ const iconNode = [["path", { "d": "M21 13c0 -3.87 -3.37 -7 -10 -7h-8" }], ["path", { "d": "M3 15h16a2 2 0 0 0 2 -2" }], ["path", { "d": "M3 6v5h17.5" }], ["path", { "d": "M3 11v4" }], ["path", { "d": "M8 11v-5" }], ["path", { "d": "M13 11v-4.5" }], ["path", { "d": "M3 19h18" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="train" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M20.555 4.168a1 1 0 0 1 .277 1.387l-2.621 3.932l1.236 .619a1 1 0 0 1 -.894 1.788l-1.46 -.73l-3.876 5.815a3 3 0 1 1 -5.217 2.021l.005 -.176q .008 -.135 .027 -.267l-2.587 -1.725a1 1 0 0 1 1.11 -1.664l2.424 1.615a2.99 2.99 0 0 1 2.464 -.75l7.725 -11.588a1 1 0 0 1 1.387 -.277m-10.567 -.399l.14 .082l3.307 2.104a2.3 2.3 0 0 1 .7 3.185l-3.094 4.81a2.3 2.3 0 0 1 -3.17 .698l-3.306 -2.104a2.3 2.3 0 0 1 -.7 -3.185l3.094 -4.81a2.3 2.3 0 0 1 3.029 -.78" }]];
3
+ </script>
4
+ <Icon type="filled" name="trolley-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type TrolleyFilledProps = typeof __propDef.props;
13
+ export type TrolleyFilledEvents = typeof __propDef.events;
14
+ export type TrolleyFilledSlots = typeof __propDef.slots;
15
+ export default class TrolleyFilled extends SvelteComponentTyped<TrolleyFilledProps, TrolleyFilledEvents, TrolleyFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M13 4a1 1 0 0 1 1 1h4a1 1 0 0 1 .783 .378l.074 .108l3 5l.055 .103l.04 .107l.029 .109l.016 .11l.003 .085v6a1 1 0 0 1 -1 1h-1.171a3.001 3.001 0 0 1 -5.658 0h-4.342a3.001 3.001 0 0 1 -5.658 0h-1.171a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2zm-6 12a1 1 0 1 0 0 2a1 1 0 0 0 0 -2m10 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2m.434 -9h-3.434v3h5.234z" }]];
3
+ </script>
4
+ <Icon type="filled" name="truck-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type TruckFilledProps = typeof __propDef.props;
13
+ export type TruckFilledEvents = typeof __propDef.events;
14
+ export type TruckFilledSlots = typeof __propDef.slots;
15
+ export default class TruckFilled extends SvelteComponentTyped<TruckFilledProps, TruckFilledEvents, TruckFilledSlots> {
16
+ }
17
+ export {};
@@ -2226,6 +2226,7 @@ export default [
2226
2226
  "file-star",
2227
2227
  "file-symlink",
2228
2228
  "file-text-ai",
2229
+ "file-text-shield",
2229
2230
  "file-text-spark",
2230
2231
  "file-text",
2231
2232
  "file-time",
@@ -2485,6 +2486,7 @@ export default [
2485
2486
  "h-6",
2486
2487
  "hammer-off",
2487
2488
  "hammer",
2489
+ "hand-click-off",
2488
2490
  "hand-click",
2489
2491
  "hand-finger-down",
2490
2492
  "hand-finger-left",
@@ -3908,6 +3910,7 @@ export default [
3908
3910
  "repeat-once",
3909
3911
  "repeat",
3910
3912
  "replace-off",
3913
+ "replace-user",
3911
3914
  "replace",
3912
3915
  "report-analytics",
3913
3916
  "report-medical",
@@ -4918,7 +4921,9 @@ export default [
4918
4921
  "ad-circle-filled",
4919
4922
  "ad-filled",
4920
4923
  "adjustments-filled",
4924
+ "aerial-lift-filled",
4921
4925
  "affiliate-filled",
4926
+ "air-balloon-filled",
4922
4927
  "alarm-minus-filled",
4923
4928
  "alarm-plus-filled",
4924
4929
  "alarm-snooze-filled",
@@ -5112,6 +5117,7 @@ export default [
5112
5117
  "bug-filled",
5113
5118
  "building-broadcast-tower-filled",
5114
5119
  "bulb-filled",
5120
+ "bus-filled",
5115
5121
  "butterfly-filled",
5116
5122
  "cactus-filled",
5117
5123
  "calculator-filled",
@@ -5127,10 +5133,12 @@ export default [
5127
5133
  "capsule-filled",
5128
5134
  "capture-filled",
5129
5135
  "car-4wd-filled",
5136
+ "car-crane-filled",
5130
5137
  "car-fan-filled",
5131
5138
  "car-suv-filled",
5132
5139
  "car-filled",
5133
5140
  "carambola-filled",
5141
+ "caravan-filled",
5134
5142
  "cardboards-filled",
5135
5143
  "cards-filled",
5136
5144
  "caret-down-filled",
@@ -5327,11 +5335,13 @@ export default [
5327
5335
  "egg-cracked-filled",
5328
5336
  "egg-filled",
5329
5337
  "elevator-filled",
5338
+ "engine-filled",
5330
5339
  "exclamation-circle-filled",
5331
5340
  "eye-filled",
5332
5341
  "eyeglass-filled",
5333
5342
  "favicon-filled",
5334
5343
  "feather-filled",
5344
+ "ferry-filled",
5335
5345
  "file-x-filled",
5336
5346
  "file-filled",
5337
5347
  "filter-filled",
@@ -5351,6 +5361,7 @@ export default [
5351
5361
  "fountain-filled",
5352
5362
  "function-filled",
5353
5363
  "garden-cart-filled",
5364
+ "gas-station-filled",
5354
5365
  "gauge-filled",
5355
5366
  "ghost-2-filled",
5356
5367
  "ghost-3-filled",
@@ -5369,6 +5380,7 @@ export default [
5369
5380
  "headphones-filled",
5370
5381
  "heart-filled",
5371
5382
  "helicopter-landing-filled",
5383
+ "helicopter-filled",
5372
5384
  "help-circle-filled",
5373
5385
  "help-hexagon-filled",
5374
5386
  "help-octagon-filled",
@@ -5519,6 +5531,7 @@ export default [
5519
5531
  "mood-smile-filled",
5520
5532
  "mood-wrrr-filled",
5521
5533
  "moon-filled",
5534
+ "motorbike-filled",
5522
5535
  "mountain-filled",
5523
5536
  "mouse-filled",
5524
5537
  "mug-filled",
@@ -5586,6 +5599,7 @@ export default [
5586
5599
  "relation-one-to-many-filled",
5587
5600
  "relation-one-to-one-filled",
5588
5601
  "replace-filled",
5602
+ "rollercoaster-filled",
5589
5603
  "rosette-discount-check-filled",
5590
5604
  "rosette-discount-filled",
5591
5605
  "rosette-filled",
@@ -5610,6 +5624,7 @@ export default [
5610
5624
  "sort-descending-shapes-filled",
5611
5625
  "soup-filled",
5612
5626
  "spade-filled",
5627
+ "speedboat-filled",
5613
5628
  "square-arrow-down-filled",
5614
5629
  "square-arrow-left-filled",
5615
5630
  "square-arrow-right-filled",
@@ -5752,6 +5767,7 @@ export default [
5752
5767
  "timeline-event-filled",
5753
5768
  "toggle-left-filled",
5754
5769
  "toggle-right-filled",
5770
+ "train-filled",
5755
5771
  "transform-filled",
5756
5772
  "transition-bottom-filled",
5757
5773
  "transition-left-filled",
@@ -5762,7 +5778,9 @@ export default [
5762
5778
  "triangle-inverted-filled",
5763
5779
  "triangle-square-circle-filled",
5764
5780
  "triangle-filled",
5781
+ "trolley-filled",
5765
5782
  "trophy-filled",
5783
+ "truck-filled",
5766
5784
  "umbrella-filled",
5767
5785
  "user-filled",
5768
5786
  "versions-filled",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.26.0",
3
+ "version": "3.27.0",
4
4
  "license": "MIT",
5
5
  "author": "codecalm",
6
6
  "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
@@ -49,7 +49,7 @@
49
49
  "imports-check": "attw $(npm pack)"
50
50
  },
51
51
  "dependencies": {
52
- "@tabler/icons": "3.26.0"
52
+ "@tabler/icons": "workspace:*"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@sveltejs/package": "^2.2.7",