@tabler/icons-svelte 3.23.0 → 3.24.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 (45) hide show
  1. package/dist/icons/brand-bitbucket-filled.svelte +6 -0
  2. package/dist/icons/brand-bitbucket-filled.svelte.d.ts +17 -0
  3. package/dist/icons/cake-roll.svelte +6 -0
  4. package/dist/icons/cake-roll.svelte.d.ts +17 -0
  5. package/dist/icons/direction-arrows-filled.svelte +6 -0
  6. package/dist/icons/direction-arrows-filled.svelte.d.ts +17 -0
  7. package/dist/icons/droplets-filled.svelte +6 -0
  8. package/dist/icons/droplets-filled.svelte.d.ts +17 -0
  9. package/dist/icons/exposure-off.svelte +1 -1
  10. package/dist/icons/exposure.svelte +1 -1
  11. package/dist/icons/eyeglass-filled.svelte +6 -0
  12. package/dist/icons/eyeglass-filled.svelte.d.ts +17 -0
  13. package/dist/icons/ferry.svelte +1 -1
  14. package/dist/icons/filters-filled.svelte +6 -0
  15. package/dist/icons/filters-filled.svelte.d.ts +17 -0
  16. package/dist/icons/flame-filled.svelte +6 -0
  17. package/dist/icons/flame-filled.svelte.d.ts +17 -0
  18. package/dist/icons/flame.svelte +1 -1
  19. package/dist/icons/flare-filled.svelte +6 -0
  20. package/dist/icons/flare-filled.svelte.d.ts +17 -0
  21. package/dist/icons/folders-filled.svelte +6 -0
  22. package/dist/icons/folders-filled.svelte.d.ts +17 -0
  23. package/dist/icons/folders.svelte +1 -1
  24. package/dist/icons/garden-cart-filled.svelte +6 -0
  25. package/dist/icons/garden-cart-filled.svelte.d.ts +17 -0
  26. package/dist/icons/grid-pattern-filled.svelte +6 -0
  27. package/dist/icons/grid-pattern-filled.svelte.d.ts +17 -0
  28. package/dist/icons/helicopter-landing-filled.svelte +6 -0
  29. package/dist/icons/helicopter-landing-filled.svelte.d.ts +17 -0
  30. package/dist/icons/index.d.ts +18 -0
  31. package/dist/icons/index.js +18 -0
  32. package/dist/icons/laurel-wreath-filled.svelte +6 -0
  33. package/dist/icons/laurel-wreath-filled.svelte.d.ts +17 -0
  34. package/dist/icons/lemon-2-filled.svelte +6 -0
  35. package/dist/icons/lemon-2-filled.svelte.d.ts +17 -0
  36. package/dist/icons/lifebuoy-filled.svelte +6 -0
  37. package/dist/icons/lifebuoy-filled.svelte.d.ts +17 -0
  38. package/dist/icons/matrix.svelte +6 -0
  39. package/dist/icons/matrix.svelte.d.ts +17 -0
  40. package/dist/icons/square-dashed.svelte +6 -0
  41. package/dist/icons/square-dashed.svelte.d.ts +17 -0
  42. package/dist/icons/table-dashed.svelte +6 -0
  43. package/dist/icons/table-dashed.svelte.d.ts +17 -0
  44. package/dist/icons-list.js +18 -0
  45. package/package.json +2 -2
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3.661 3l16.68 .007c.484 -.005 .946 .203 1.262 .57c.316 .368 .454 .856 .364 1.396l-3.338 14.651a1.64 1.64 0 0 1 -1.629 1.376h-10.01c-.906 -.009 -1.678 -.668 -1.82 -1.517l-3.148 -14.576a1.64 1.64 0 0 1 1.639 -1.907m11.339 5h-6a1 1 0 0 0 -.986 1.164l1 6a1 1 0 0 0 .986 .836h4a1 1 0 0 0 .986 -.836l1 -6a1 1 0 0 0 -.986 -1.164" }]];
3
+ </script>
4
+ <Icon type="filled" name="brand-bitbucket-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 BrandBitbucketFilledProps = typeof __propDef.props;
13
+ export type BrandBitbucketFilledEvents = typeof __propDef.events;
14
+ export type BrandBitbucketFilledSlots = typeof __propDef.slots;
15
+ export default class BrandBitbucketFilled extends SvelteComponentTyped<BrandBitbucketFilledProps, BrandBitbucketFilledEvents, BrandBitbucketFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 15c-4.97 0 -9 -2.462 -9 -5.5s4.03 -5.5 9 -5.5s9 2.462 9 5.5s-4.03 5.5 -9 5.5" }], ["path", { "d": "M12 6.97c3 0 4 1.036 4 1.979c0 2.805 -8 2.969 -8 -.99c0 -2.11 1.5 -3.959 4 -3.959" }], ["path", { "d": "M21 9.333v5.334c0 2.945 -4.03 5.333 -9 5.333s-9 -2.388 -9 -5.333v-5.334" }]];
3
+ </script>
4
+ <Icon type="outline" name="cake-roll" {...$$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 CakeRollProps = typeof __propDef.props;
13
+ export type CakeRollEvents = typeof __propDef.events;
14
+ export type CakeRollSlots = typeof __propDef.slots;
15
+ export default class CakeRoll extends SvelteComponentTyped<CakeRollProps, CakeRollEvents, CakeRollSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72m-.293 13.293a1 1 0 0 0 -1.414 1.414l1 1a1 1 0 0 0 1.414 0l1 -1a1 1 0 0 0 0 -1.414l-.094 -.083a1 1 0 0 0 -1.32 .083l-.293 .292zm-3 -5a1 1 0 0 0 -1.414 0l-1 1a1 1 0 0 0 0 1.414l1 1a1 1 0 0 0 1.414 0l.083 -.094a1 1 0 0 0 -.083 -1.32l-.292 -.293l.292 -.293a1 1 0 0 0 0 -1.414m8 0a1 1 0 0 0 -1.414 0l-.083 .094a1 1 0 0 0 .083 1.32l.292 .292l-.292 .294a1 1 0 0 0 1.414 1.414l1 -1a1 1 0 0 0 0 -1.414zm-4 -4a1 1 0 0 0 -1.414 0l-1 1a1 1 0 0 0 0 1.414l.094 .083a1 1 0 0 0 1.32 -.083l.293 -.292l.293 .292a1 1 0 0 0 1.414 -1.414z" }]];
3
+ </script>
4
+ <Icon type="filled" name="direction-arrows-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 DirectionArrowsFilledProps = typeof __propDef.props;
13
+ export type DirectionArrowsFilledEvents = typeof __propDef.events;
14
+ export type DirectionArrowsFilledSlots = typeof __propDef.slots;
15
+ export default class DirectionArrowsFilled extends SvelteComponentTyped<DirectionArrowsFilledProps, DirectionArrowsFilledEvents, DirectionArrowsFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M6 12.003c.541 0 1.045 .273 1.342 .727l2.122 3.273a3.999 3.999 0 0 1 -6.035 5.063c-1.487 -1.248 -1.864 -3.382 -.867 -5.11l2.098 -3.226a1.6 1.6 0 0 1 1.34 -.727" }], ["path", { "d": "M18 12.003c.541 0 1.045 .273 1.342 .727l2.122 3.273a3.999 3.999 0 0 1 -6.035 5.063c-1.487 -1.248 -1.864 -3.382 -.867 -5.11l2.098 -3.227a1.6 1.6 0 0 1 1.34 -.726" }], ["path", { "d": "M12 2.003c.541 0 1.045 .273 1.342 .727l2.122 3.273a3.999 3.999 0 0 1 -6.035 5.063c-1.487 -1.248 -1.864 -3.382 -.867 -5.11l2.098 -3.226a1.6 1.6 0 0 1 1.34 -.727" }]];
3
+ </script>
4
+ <Icon type="filled" name="droplets-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 DropletsFilledProps = typeof __propDef.props;
13
+ export type DropletsFilledEvents = typeof __propDef.events;
14
+ export type DropletsFilledSlots = typeof __propDef.slots;
15
+ export default class DropletsFilled extends SvelteComponentTyped<DropletsFilledProps, DropletsFilledEvents, DropletsFilledSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4" }], ["path", { "d": "M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405" }], ["path", { "d": "M7 9h2v2" }], ["path", { "d": "M13 16h3" }], ["path", { "d": "M3 3l18 18" }]];
2
+ const iconNode = [["path", { "d": "M3.6 20.4l8.371 -8.371m2.04 -2.04l6.389 -6.389" }], ["path", { "d": "M6 8h2m0 0v2" }], ["path", { "d": "M14 16h2" }], ["path", { "d": "M7 3h12a2 2 0 0 1 2 2v12m-.5 3.5c-.362 .36 -.95 .5 -1.5 .5h-14a2 2 0 0 1 -2 -2v-14c0 -.541 .215 -1.033 .565 -1.393" }], ["path", { "d": "M3 3l18 18" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="exposure-off" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M4.6 19.4l14.8 -14.8" }], ["path", { "d": "M7 9h4m-2 -2v4" }], ["path", { "d": "M13 16l4 0" }]];
2
+ const iconNode = [["path", { "d": "M3.6 20.4l16.8 -16.8" }], ["path", { "d": "M6 8h4m-2 -2v4" }], ["path", { "d": "M14 16h4" }], ["path", { "d": "M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="exposure" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M6.5 21a4.5 4.5 0 0 1 -4.5 -4.5v-2.518l.004 -.071l.014 -.103l.018 -.076l3.006 -10.02a1 1 0 0 1 .958 -.712h2a1 1 0 1 1 0 2h-1.257l-2.4 8h5.657a1 1 0 0 1 1 1v1h2v-1a1 1 0 0 1 1 -1h5.656l-2.4 -8h-1.256a1 1 0 0 1 -.993 -.883l-.007 -.117a1 1 0 0 1 1 -1h2a1 1 0 0 1 .958 .713l3.01 10.036l.022 .112l.008 .08l.002 2.559a4.5 4.5 0 0 1 -8.972 .5h-2.056a4.5 4.5 0 0 1 -4.472 4" }]];
3
+ </script>
4
+ <Icon type="filled" name="eyeglass-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 EyeglassFilledProps = typeof __propDef.props;
13
+ export type EyeglassFilledEvents = typeof __propDef.events;
14
+ export type EyeglassFilledSlots = typeof __propDef.slots;
15
+ export default class EyeglassFilled extends SvelteComponentTyped<EyeglassFilledProps, EyeglassFilledEvents, EyeglassFilledSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M3 17h14.08a3 3 0 0 0 2.5 -1.34l2.141 -2.66h-17.221z" }], ["path", { "d": "M14.556 7.959l-.382 -1.415" }], ["path", { "d": "M6.107 12.675l1.384 -4.675h8l2.675 4.598" }]];
2
+ const iconNode = [["path", { "d": "M2 18h15.293c1.02 0 1.972 -.503 2.536 -1.34l2.171 -3.66h-18.479z" }], ["path", { "d": "M14 8l-1 -2" }], ["path", { "d": "M6.107 12.675l1.384 -4.675h8l2.675 4.598" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="ferry" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M19.396 11.056a6 6 0 0 1 -5.647 10.506q .206 -.21 .396 -.44a8 8 0 0 0 1.789 -6.155a8.02 8.02 0 0 0 3.462 -3.911" }], ["path", { "d": "M4.609 11.051a7.99 7.99 0 0 0 9.386 4.698a6 6 0 1 1 -9.534 -4.594z" }], ["path", { "d": "M12 2a6 6 0 1 1 -6 6l.004 -.225a6 6 0 0 1 5.996 -5.775" }]];
3
+ </script>
4
+ <Icon type="filled" name="filters-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 FiltersFilledProps = typeof __propDef.props;
13
+ export type FiltersFilledEvents = typeof __propDef.events;
14
+ export type FiltersFilledSlots = typeof __propDef.slots;
15
+ export default class FiltersFilled extends SvelteComponentTyped<FiltersFilledProps, FiltersFilledEvents, FiltersFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M10 2c0 -.88 1.056 -1.331 1.692 -.722c1.958 1.876 3.096 5.995 1.75 9.12l-.08 .174l.012 .003c.625 .133 1.203 -.43 2.303 -2.173l.14 -.224a1 1 0 0 1 1.582 -.153c1.334 1.435 2.601 4.377 2.601 6.27c0 4.265 -3.591 7.705 -8 7.705s-8 -3.44 -8 -7.706c0 -2.252 1.022 -4.716 2.632 -6.301l.605 -.589c.241 -.236 .434 -.43 .618 -.624c1.43 -1.512 2.145 -2.924 2.145 -4.78" }]];
3
+ </script>
4
+ <Icon type="filled" name="flame-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 FlameFilledProps = typeof __propDef.props;
13
+ export type FlameFilledEvents = typeof __propDef.events;
14
+ export type FlameFilledSlots = typeof __propDef.slots;
15
+ export default class FlameFilled extends SvelteComponentTyped<FlameFilledProps, FlameFilledEvents, FlameFilledSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z" }]];
2
+ const iconNode = [["path", { "d": "M12 10.941c2.333 -3.308 .167 -7.823 -1 -8.941c0 3.395 -2.235 5.299 -3.667 6.706c-1.43 1.408 -2.333 3.621 -2.333 5.588c0 3.704 3.134 6.706 7 6.706s7 -3.002 7 -6.706c0 -1.712 -1.232 -4.403 -2.333 -5.588c-2.084 3.353 -3.257 3.353 -4.667 2.235" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="flame" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M11.106 2.553a1 1 0 0 1 1.788 0l2.851 5.701l5.702 2.852a1 1 0 0 1 .11 1.725l-.11 .063l-5.702 2.851l-2.85 5.702a1 1 0 0 1 -1.726 .11l-.063 -.11l-2.852 -5.702l-5.701 -2.85a1 1 0 0 1 -.11 -1.726l.11 -.063l5.701 -2.852z" }]];
3
+ </script>
4
+ <Icon type="filled" name="flare-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 FlareFilledProps = typeof __propDef.props;
13
+ export type FlareFilledEvents = typeof __propDef.events;
14
+ export type FlareFilledSlots = typeof __propDef.slots;
15
+ export default class FlareFilled extends SvelteComponentTyped<FlareFilledProps, FlareFilledEvents, FlareFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2a1 1 0 0 1 .707 .293l1.708 1.707h4.585a3 3 0 0 1 2.995 2.824l.005 .176v7a3 3 0 0 1 -3 3h-1v1a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3h1v-1a3 3 0 0 1 3 -3zm-6 6h-1a1 1 0 0 0 -1 1v9a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1h-7a3 3 0 0 1 -3 -3z" }]];
3
+ </script>
4
+ <Icon type="filled" name="folders-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 FoldersFilledProps = typeof __propDef.props;
13
+ export type FoldersFilledEvents = typeof __propDef.events;
14
+ export type FoldersFilledSlots = typeof __propDef.slots;
15
+ export default class FoldersFilled extends SvelteComponentTyped<FoldersFilledProps, FoldersFilledEvents, FoldersFilledSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2" }], ["path", { "d": "M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2" }]];
2
+ const iconNode = [["path", { "d": "M9 3h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2" }], ["path", { "d": "M17 16v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="folders" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3.324 3a2 2 0 0 1 1.855 1.258l1.097 2.742h14.724a1 1 0 0 1 .94 1.341l-.046 .106l-2.934 5.871a3.5 3.5 0 1 1 -4.96 3.182l.005 -.192a3.5 3.5 0 0 1 .499 -1.618l-2.446 -.258l-3.446 4.75a2 2 0 0 1 -2.08 .762l-.154 -.044a2 2 0 0 1 -1.378 -1.9v-9.804l-1.679 -4.196h-1.321a1 1 0 0 1 -.993 -.883l-.007 -.117a1 1 0 0 1 1 -1zm14.176 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3m-10.5 -2.498l-.002 5.498l2.783 -3.833a5 5 0 0 1 -2.614 -1.474z" }]];
3
+ </script>
4
+ <Icon type="filled" name="garden-cart-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 GardenCartFilledProps = typeof __propDef.props;
13
+ export type GardenCartFilledEvents = typeof __propDef.events;
14
+ export type GardenCartFilledSlots = typeof __propDef.slots;
15
+ export default class GardenCartFilled extends SvelteComponentTyped<GardenCartFilledProps, GardenCartFilledEvents, GardenCartFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3zm-4 4a1 1 0 0 0 -1 1v1h-2v-1a1 1 0 0 0 -.883 -.993l-.117 -.007a1 1 0 0 0 -1 1v1h-1a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 0 1 1h1v2h-1a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 0 1 1h1v1a1 1 0 0 0 .883 .993l.117 .007a1 1 0 0 0 1 -1v-1h2v1a1 1 0 0 0 .883 .993l.117 .007a1 1 0 0 0 1 -1v-1h1a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -1 -1h-1v-2h1a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -1 -1h-1v-1a1 1 0 0 0 -.883 -.993zm-1 4v2h-2v-2z" }]];
3
+ </script>
4
+ <Icon type="filled" name="grid-pattern-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 GridPatternFilledProps = typeof __propDef.props;
13
+ export type GridPatternFilledEvents = typeof __propDef.events;
14
+ export type GridPatternFilledSlots = typeof __propDef.slots;
15
+ export default class GridPatternFilled extends SvelteComponentTyped<GridPatternFilledProps, GridPatternFilledEvents, GridPatternFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M19 2a3 3 0 0 1 3 3v14a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm-4 5a1 1 0 0 0 -1 1v3h-4v-3a1 1 0 0 0 -.883 -.993l-.117 -.007a1 1 0 0 0 -1 1v8a1 1 0 0 0 2 0v-3h4v3a1 1 0 0 0 .883 .993l.117 .007a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1" }]];
3
+ </script>
4
+ <Icon type="filled" name="helicopter-landing-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 HelicopterLandingFilledProps = typeof __propDef.props;
13
+ export type HelicopterLandingFilledEvents = typeof __propDef.events;
14
+ export type HelicopterLandingFilledSlots = typeof __propDef.slots;
15
+ export default class HelicopterLandingFilled extends SvelteComponentTyped<HelicopterLandingFilledProps, HelicopterLandingFilledEvents, HelicopterLandingFilledSlots> {
16
+ }
17
+ export {};
@@ -1058,6 +1058,7 @@ export { default as IconButterfly } from './butterfly.svelte';
1058
1058
  export { default as IconCactusOff } from './cactus-off.svelte';
1059
1059
  export { default as IconCactus } from './cactus.svelte';
1060
1060
  export { default as IconCakeOff } from './cake-off.svelte';
1061
+ export { default as IconCakeRoll } from './cake-roll.svelte';
1061
1062
  export { default as IconCake } from './cake.svelte';
1062
1063
  export { default as IconCalculatorOff } from './calculator-off.svelte';
1063
1064
  export { default as IconCalculator } from './calculator.svelte';
@@ -3125,6 +3126,7 @@ export { default as IconMathXy } from './math-xy.svelte';
3125
3126
  export { default as IconMathYMinusY } from './math-y-minus-y.svelte';
3126
3127
  export { default as IconMathYPlusY } from './math-y-plus-y.svelte';
3127
3128
  export { default as IconMath } from './math.svelte';
3129
+ export { default as IconMatrix } from './matrix.svelte';
3128
3130
  export { default as IconMaximizeOff } from './maximize-off.svelte';
3129
3131
  export { default as IconMaximize } from './maximize.svelte';
3130
3132
  export { default as IconMeatOff } from './meat-off.svelte';
@@ -4256,6 +4258,7 @@ export { default as IconSquareChevronsDown } from './square-chevrons-down.svelte
4256
4258
  export { default as IconSquareChevronsLeft } from './square-chevrons-left.svelte';
4257
4259
  export { default as IconSquareChevronsRight } from './square-chevrons-right.svelte';
4258
4260
  export { default as IconSquareChevronsUp } from './square-chevrons-up.svelte';
4261
+ export { default as IconSquareDashed } from './square-dashed.svelte';
4259
4262
  export { default as IconSquareDot } from './square-dot.svelte';
4260
4263
  export { default as IconSquareF0 } from './square-f0.svelte';
4261
4264
  export { default as IconSquareF1 } from './square-f1.svelte';
@@ -4450,6 +4453,7 @@ export { default as IconSword } from './sword.svelte';
4450
4453
  export { default as IconSwords } from './swords.svelte';
4451
4454
  export { default as IconTableAlias } from './table-alias.svelte';
4452
4455
  export { default as IconTableColumn } from './table-column.svelte';
4456
+ export { default as IconTableDashed } from './table-dashed.svelte';
4453
4457
  export { default as IconTableDown } from './table-down.svelte';
4454
4458
  export { default as IconTableExport } from './table-export.svelte';
4455
4459
  export { default as IconTableHeart } from './table-heart.svelte';
@@ -5053,6 +5057,7 @@ export { default as IconBoxAlignTopFilled } from './box-align-top-filled.svelte'
5053
5057
  export { default as IconBoxMultipleFilled } from './box-multiple-filled.svelte';
5054
5058
  export { default as IconBrandAngularFilled } from './brand-angular-filled.svelte';
5055
5059
  export { default as IconBrandAppleFilled } from './brand-apple-filled.svelte';
5060
+ export { default as IconBrandBitbucketFilled } from './brand-bitbucket-filled.svelte';
5056
5061
  export { default as IconBrandDiscordFilled } from './brand-discord-filled.svelte';
5057
5062
  export { default as IconBrandDribbbleFilled } from './brand-dribbble-filled.svelte';
5058
5063
  export { default as IconBrandFacebookFilled } from './brand-facebook-filled.svelte';
@@ -5273,6 +5278,7 @@ export { default as IconDice4Filled } from './dice-4-filled.svelte';
5273
5278
  export { default as IconDice5Filled } from './dice-5-filled.svelte';
5274
5279
  export { default as IconDice6Filled } from './dice-6-filled.svelte';
5275
5280
  export { default as IconDiceFilled } from './dice-filled.svelte';
5281
+ export { default as IconDirectionArrowsFilled } from './direction-arrows-filled.svelte';
5276
5282
  export { default as IconDirectionSignFilled } from './direction-sign-filled.svelte';
5277
5283
  export { default as IconDirectionsFilled } from './directions-filled.svelte';
5278
5284
  export { default as IconDiscFilled } from './disc-filled.svelte';
@@ -5280,27 +5286,34 @@ export { default as IconDiscountFilled } from './discount-filled.svelte';
5280
5286
  export { default as IconDropletHalf2Filled } from './droplet-half-2-filled.svelte';
5281
5287
  export { default as IconDropletHalfFilled } from './droplet-half-filled.svelte';
5282
5288
  export { default as IconDropletFilled } from './droplet-filled.svelte';
5289
+ export { default as IconDropletsFilled } from './droplets-filled.svelte';
5283
5290
  export { default as IconEggCrackedFilled } from './egg-cracked-filled.svelte';
5284
5291
  export { default as IconEggFilled } from './egg-filled.svelte';
5285
5292
  export { default as IconElevatorFilled } from './elevator-filled.svelte';
5286
5293
  export { default as IconExclamationCircleFilled } from './exclamation-circle-filled.svelte';
5287
5294
  export { default as IconEyeFilled } from './eye-filled.svelte';
5295
+ export { default as IconEyeglassFilled } from './eyeglass-filled.svelte';
5288
5296
  export { default as IconFaviconFilled } from './favicon-filled.svelte';
5289
5297
  export { default as IconFeatherFilled } from './feather-filled.svelte';
5290
5298
  export { default as IconFileXFilled } from './file-x-filled.svelte';
5291
5299
  export { default as IconFileFilled } from './file-filled.svelte';
5292
5300
  export { default as IconFilterFilled } from './filter-filled.svelte';
5301
+ export { default as IconFiltersFilled } from './filters-filled.svelte';
5293
5302
  export { default as IconFlag2Filled } from './flag-2-filled.svelte';
5294
5303
  export { default as IconFlag3Filled } from './flag-3-filled.svelte';
5295
5304
  export { default as IconFlagFilled } from './flag-filled.svelte';
5305
+ export { default as IconFlameFilled } from './flame-filled.svelte';
5306
+ export { default as IconFlareFilled } from './flare-filled.svelte';
5296
5307
  export { default as IconFlask2Filled } from './flask-2-filled.svelte';
5297
5308
  export { default as IconFlaskFilled } from './flask-filled.svelte';
5298
5309
  export { default as IconFlowerFilled } from './flower-filled.svelte';
5299
5310
  export { default as IconFolderFilled } from './folder-filled.svelte';
5311
+ export { default as IconFoldersFilled } from './folders-filled.svelte';
5300
5312
  export { default as IconForbid2Filled } from './forbid-2-filled.svelte';
5301
5313
  export { default as IconForbidFilled } from './forbid-filled.svelte';
5302
5314
  export { default as IconFountainFilled } from './fountain-filled.svelte';
5303
5315
  export { default as IconFunctionFilled } from './function-filled.svelte';
5316
+ export { default as IconGardenCartFilled } from './garden-cart-filled.svelte';
5304
5317
  export { default as IconGaugeFilled } from './gauge-filled.svelte';
5305
5318
  export { default as IconGhost2Filled } from './ghost-2-filled.svelte';
5306
5319
  export { default as IconGhost3Filled } from './ghost-3-filled.svelte';
@@ -5313,10 +5326,12 @@ export { default as IconGlobeFilled } from './globe-filled.svelte';
5313
5326
  export { default as IconGolfFilled } from './golf-filled.svelte';
5314
5327
  export { default as IconGpsFilled } from './gps-filled.svelte';
5315
5328
  export { default as IconGraphFilled } from './graph-filled.svelte';
5329
+ export { default as IconGridPatternFilled } from './grid-pattern-filled.svelte';
5316
5330
  export { default as IconGuitarPickFilled } from './guitar-pick-filled.svelte';
5317
5331
  export { default as IconHanger2Filled } from './hanger-2-filled.svelte';
5318
5332
  export { default as IconHeadphonesFilled } from './headphones-filled.svelte';
5319
5333
  export { default as IconHeartFilled } from './heart-filled.svelte';
5334
+ export { default as IconHelicopterLandingFilled } from './helicopter-landing-filled.svelte';
5320
5335
  export { default as IconHelpCircleFilled } from './help-circle-filled.svelte';
5321
5336
  export { default as IconHelpHexagonFilled } from './help-hexagon-filled.svelte';
5322
5337
  export { default as IconHelpOctagonFilled } from './help-octagon-filled.svelte';
@@ -5397,6 +5412,7 @@ export { default as IconKeyframesFilled } from './keyframes-filled.svelte';
5397
5412
  export { default as IconLabelImportantFilled } from './label-important-filled.svelte';
5398
5413
  export { default as IconLabelFilled } from './label-filled.svelte';
5399
5414
  export { default as IconLassoPolygonFilled } from './lasso-polygon-filled.svelte';
5415
+ export { default as IconLaurelWreathFilled } from './laurel-wreath-filled.svelte';
5400
5416
  export { default as IconLayout2Filled } from './layout-2-filled.svelte';
5401
5417
  export { default as IconLayoutAlignBottomFilled } from './layout-align-bottom-filled.svelte';
5402
5418
  export { default as IconLayoutAlignCenterFilled } from './layout-align-center-filled.svelte';
@@ -5425,6 +5441,8 @@ export { default as IconLayoutSidebarRightFilled } from './layout-sidebar-right-
5425
5441
  export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svelte';
5426
5442
  export { default as IconLayoutFilled } from './layout-filled.svelte';
5427
5443
  export { default as IconLegoFilled } from './lego-filled.svelte';
5444
+ export { default as IconLemon2Filled } from './lemon-2-filled.svelte';
5445
+ export { default as IconLifebuoyFilled } from './lifebuoy-filled.svelte';
5428
5446
  export { default as IconLivePhotoFilled } from './live-photo-filled.svelte';
5429
5447
  export { default as IconLiveViewFilled } from './live-view-filled.svelte';
5430
5448
  export { default as IconLocationFilled } from './location-filled.svelte';
@@ -1058,6 +1058,7 @@ export { default as IconButterfly } from './butterfly.svelte';
1058
1058
  export { default as IconCactusOff } from './cactus-off.svelte';
1059
1059
  export { default as IconCactus } from './cactus.svelte';
1060
1060
  export { default as IconCakeOff } from './cake-off.svelte';
1061
+ export { default as IconCakeRoll } from './cake-roll.svelte';
1061
1062
  export { default as IconCake } from './cake.svelte';
1062
1063
  export { default as IconCalculatorOff } from './calculator-off.svelte';
1063
1064
  export { default as IconCalculator } from './calculator.svelte';
@@ -3125,6 +3126,7 @@ export { default as IconMathXy } from './math-xy.svelte';
3125
3126
  export { default as IconMathYMinusY } from './math-y-minus-y.svelte';
3126
3127
  export { default as IconMathYPlusY } from './math-y-plus-y.svelte';
3127
3128
  export { default as IconMath } from './math.svelte';
3129
+ export { default as IconMatrix } from './matrix.svelte';
3128
3130
  export { default as IconMaximizeOff } from './maximize-off.svelte';
3129
3131
  export { default as IconMaximize } from './maximize.svelte';
3130
3132
  export { default as IconMeatOff } from './meat-off.svelte';
@@ -4256,6 +4258,7 @@ export { default as IconSquareChevronsDown } from './square-chevrons-down.svelte
4256
4258
  export { default as IconSquareChevronsLeft } from './square-chevrons-left.svelte';
4257
4259
  export { default as IconSquareChevronsRight } from './square-chevrons-right.svelte';
4258
4260
  export { default as IconSquareChevronsUp } from './square-chevrons-up.svelte';
4261
+ export { default as IconSquareDashed } from './square-dashed.svelte';
4259
4262
  export { default as IconSquareDot } from './square-dot.svelte';
4260
4263
  export { default as IconSquareF0 } from './square-f0.svelte';
4261
4264
  export { default as IconSquareF1 } from './square-f1.svelte';
@@ -4450,6 +4453,7 @@ export { default as IconSword } from './sword.svelte';
4450
4453
  export { default as IconSwords } from './swords.svelte';
4451
4454
  export { default as IconTableAlias } from './table-alias.svelte';
4452
4455
  export { default as IconTableColumn } from './table-column.svelte';
4456
+ export { default as IconTableDashed } from './table-dashed.svelte';
4453
4457
  export { default as IconTableDown } from './table-down.svelte';
4454
4458
  export { default as IconTableExport } from './table-export.svelte';
4455
4459
  export { default as IconTableHeart } from './table-heart.svelte';
@@ -5053,6 +5057,7 @@ export { default as IconBoxAlignTopFilled } from './box-align-top-filled.svelte'
5053
5057
  export { default as IconBoxMultipleFilled } from './box-multiple-filled.svelte';
5054
5058
  export { default as IconBrandAngularFilled } from './brand-angular-filled.svelte';
5055
5059
  export { default as IconBrandAppleFilled } from './brand-apple-filled.svelte';
5060
+ export { default as IconBrandBitbucketFilled } from './brand-bitbucket-filled.svelte';
5056
5061
  export { default as IconBrandDiscordFilled } from './brand-discord-filled.svelte';
5057
5062
  export { default as IconBrandDribbbleFilled } from './brand-dribbble-filled.svelte';
5058
5063
  export { default as IconBrandFacebookFilled } from './brand-facebook-filled.svelte';
@@ -5273,6 +5278,7 @@ export { default as IconDice4Filled } from './dice-4-filled.svelte';
5273
5278
  export { default as IconDice5Filled } from './dice-5-filled.svelte';
5274
5279
  export { default as IconDice6Filled } from './dice-6-filled.svelte';
5275
5280
  export { default as IconDiceFilled } from './dice-filled.svelte';
5281
+ export { default as IconDirectionArrowsFilled } from './direction-arrows-filled.svelte';
5276
5282
  export { default as IconDirectionSignFilled } from './direction-sign-filled.svelte';
5277
5283
  export { default as IconDirectionsFilled } from './directions-filled.svelte';
5278
5284
  export { default as IconDiscFilled } from './disc-filled.svelte';
@@ -5280,27 +5286,34 @@ export { default as IconDiscountFilled } from './discount-filled.svelte';
5280
5286
  export { default as IconDropletHalf2Filled } from './droplet-half-2-filled.svelte';
5281
5287
  export { default as IconDropletHalfFilled } from './droplet-half-filled.svelte';
5282
5288
  export { default as IconDropletFilled } from './droplet-filled.svelte';
5289
+ export { default as IconDropletsFilled } from './droplets-filled.svelte';
5283
5290
  export { default as IconEggCrackedFilled } from './egg-cracked-filled.svelte';
5284
5291
  export { default as IconEggFilled } from './egg-filled.svelte';
5285
5292
  export { default as IconElevatorFilled } from './elevator-filled.svelte';
5286
5293
  export { default as IconExclamationCircleFilled } from './exclamation-circle-filled.svelte';
5287
5294
  export { default as IconEyeFilled } from './eye-filled.svelte';
5295
+ export { default as IconEyeglassFilled } from './eyeglass-filled.svelte';
5288
5296
  export { default as IconFaviconFilled } from './favicon-filled.svelte';
5289
5297
  export { default as IconFeatherFilled } from './feather-filled.svelte';
5290
5298
  export { default as IconFileXFilled } from './file-x-filled.svelte';
5291
5299
  export { default as IconFileFilled } from './file-filled.svelte';
5292
5300
  export { default as IconFilterFilled } from './filter-filled.svelte';
5301
+ export { default as IconFiltersFilled } from './filters-filled.svelte';
5293
5302
  export { default as IconFlag2Filled } from './flag-2-filled.svelte';
5294
5303
  export { default as IconFlag3Filled } from './flag-3-filled.svelte';
5295
5304
  export { default as IconFlagFilled } from './flag-filled.svelte';
5305
+ export { default as IconFlameFilled } from './flame-filled.svelte';
5306
+ export { default as IconFlareFilled } from './flare-filled.svelte';
5296
5307
  export { default as IconFlask2Filled } from './flask-2-filled.svelte';
5297
5308
  export { default as IconFlaskFilled } from './flask-filled.svelte';
5298
5309
  export { default as IconFlowerFilled } from './flower-filled.svelte';
5299
5310
  export { default as IconFolderFilled } from './folder-filled.svelte';
5311
+ export { default as IconFoldersFilled } from './folders-filled.svelte';
5300
5312
  export { default as IconForbid2Filled } from './forbid-2-filled.svelte';
5301
5313
  export { default as IconForbidFilled } from './forbid-filled.svelte';
5302
5314
  export { default as IconFountainFilled } from './fountain-filled.svelte';
5303
5315
  export { default as IconFunctionFilled } from './function-filled.svelte';
5316
+ export { default as IconGardenCartFilled } from './garden-cart-filled.svelte';
5304
5317
  export { default as IconGaugeFilled } from './gauge-filled.svelte';
5305
5318
  export { default as IconGhost2Filled } from './ghost-2-filled.svelte';
5306
5319
  export { default as IconGhost3Filled } from './ghost-3-filled.svelte';
@@ -5313,10 +5326,12 @@ export { default as IconGlobeFilled } from './globe-filled.svelte';
5313
5326
  export { default as IconGolfFilled } from './golf-filled.svelte';
5314
5327
  export { default as IconGpsFilled } from './gps-filled.svelte';
5315
5328
  export { default as IconGraphFilled } from './graph-filled.svelte';
5329
+ export { default as IconGridPatternFilled } from './grid-pattern-filled.svelte';
5316
5330
  export { default as IconGuitarPickFilled } from './guitar-pick-filled.svelte';
5317
5331
  export { default as IconHanger2Filled } from './hanger-2-filled.svelte';
5318
5332
  export { default as IconHeadphonesFilled } from './headphones-filled.svelte';
5319
5333
  export { default as IconHeartFilled } from './heart-filled.svelte';
5334
+ export { default as IconHelicopterLandingFilled } from './helicopter-landing-filled.svelte';
5320
5335
  export { default as IconHelpCircleFilled } from './help-circle-filled.svelte';
5321
5336
  export { default as IconHelpHexagonFilled } from './help-hexagon-filled.svelte';
5322
5337
  export { default as IconHelpOctagonFilled } from './help-octagon-filled.svelte';
@@ -5397,6 +5412,7 @@ export { default as IconKeyframesFilled } from './keyframes-filled.svelte';
5397
5412
  export { default as IconLabelImportantFilled } from './label-important-filled.svelte';
5398
5413
  export { default as IconLabelFilled } from './label-filled.svelte';
5399
5414
  export { default as IconLassoPolygonFilled } from './lasso-polygon-filled.svelte';
5415
+ export { default as IconLaurelWreathFilled } from './laurel-wreath-filled.svelte';
5400
5416
  export { default as IconLayout2Filled } from './layout-2-filled.svelte';
5401
5417
  export { default as IconLayoutAlignBottomFilled } from './layout-align-bottom-filled.svelte';
5402
5418
  export { default as IconLayoutAlignCenterFilled } from './layout-align-center-filled.svelte';
@@ -5425,6 +5441,8 @@ export { default as IconLayoutSidebarRightFilled } from './layout-sidebar-right-
5425
5441
  export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svelte';
5426
5442
  export { default as IconLayoutFilled } from './layout-filled.svelte';
5427
5443
  export { default as IconLegoFilled } from './lego-filled.svelte';
5444
+ export { default as IconLemon2Filled } from './lemon-2-filled.svelte';
5445
+ export { default as IconLifebuoyFilled } from './lifebuoy-filled.svelte';
5428
5446
  export { default as IconLivePhotoFilled } from './live-photo-filled.svelte';
5429
5447
  export { default as IconLiveViewFilled } from './live-view-filled.svelte';
5430
5448
  export { default as IconLocationFilled } from './location-filled.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M16.956 2.057c.355 .124 .829 .375 1.303 .796a3.77 3.77 0 0 1 1.246 2.204c.173 .989 -.047 1.894 -.519 2.683l-.123 .194q -.097 .147 -.196 .272q .066 .234 .117 .471q .26 -.178 .545 -.307c.851 -.389 1.727 -.442 2.527 -.306q .226 .04 .346 .076a1 1 0 0 1 .689 .712l.029 .13q .015 .08 .03 .18a4.45 4.45 0 0 1 -.324 2.496a3.94 3.94 0 0 1 -1.71 1.85l-.242 .12a4.23 4.23 0 0 1 -2.234 .349a9 9 0 0 1 -.443 1.023c.37 .016 .748 .093 1.128 .24c.732 .28 1.299 .758 1.711 1.367a3.95 3.95 0 0 1 .654 1.613a1 1 0 0 1 -.356 .917a3.8 3.8 0 0 1 -.716 .443c-.933 .455 -1.978 .588 -3.043 .179l-.032 -.015l-.205 -.086a3.6 3.6 0 0 1 -1.33 -1.069l-.143 -.197a4 4 0 0 1 -.26 -.433a6 6 0 0 1 -.927 .511q .18 .262 .337 .56a7.4 7.4 0 0 1 .66 1.747a1 1 0 0 1 -1.95 .444l-.028 -.11a6 6 0 0 0 -.449 -1.143c-.342 -.645 -.71 -.968 -1.048 -.968s-.706 .323 -1.048 .969a5.6 5.6 0 0 0 -.367 .874l-.082 .269l-.028 .11a1 1 0 0 1 -1.95 -.444a7.3 7.3 0 0 1 .66 -1.747q .158 -.298 .337 -.561a6.4 6.4 0 0 1 -.93 -.508a4 4 0 0 1 -.256 .43c-.366 .541 -.855 .98 -1.473 1.267l-.238 .1c-.994 .382 -1.97 .292 -2.855 -.091l-.188 -.087a3.8 3.8 0 0 1 -.716 -.443a1 1 0 0 1 -.356 -.917a3.95 3.95 0 0 1 .654 -1.613a3.6 3.6 0 0 1 1.71 -1.368c.38 -.146 .758 -.223 1.13 -.24a9 9 0 0 1 -.445 -1.023a4.23 4.23 0 0 1 -2.233 -.348a4 4 0 0 1 -.916 -.587l-.207 -.191a4 4 0 0 1 -.724 -.977l-.105 -.216a4.45 4.45 0 0 1 -.265 -2.806a1 1 0 0 1 .69 -.712q .119 -.036 .345 -.076c.801 -.135 1.678 -.082 2.53 .308q .283 .129 .545 .304q .048 -.235 .112 -.47a5 5 0 0 1 -.194 -.272c-.556 -.832 -.83 -1.806 -.642 -2.877l.05 -.242a3.75 3.75 0 0 1 1.027 -1.803l.169 -.159a4 4 0 0 1 1.303 -.796a1 1 0 0 1 .975 .178c.2 .168 .462 .446 .719 .83c.556 .833 .83 1.807 .642 2.878a3.77 3.77 0 0 1 -1.246 2.204c-.303 .27 -.607 .47 -.879 .61a7.5 7.5 0 0 0 -.255 1.971c0 3.502 2.285 6.272 5 6.272s5 -2.77 5 -6.276a7.6 7.6 0 0 0 -.253 -1.967a4.3 4.3 0 0 1 -.881 -.61a3.77 3.77 0 0 1 -1.246 -2.204c-.188 -1.07 .086 -2.045 .642 -2.877c.257 -.385 .52 -.663 .72 -.831a1 1 0 0 1 .974 -.178" }]];
3
+ </script>
4
+ <Icon type="filled" name="laurel-wreath-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 LaurelWreathFilledProps = typeof __propDef.props;
13
+ export type LaurelWreathFilledEvents = typeof __propDef.events;
14
+ export type LaurelWreathFilledSlots = typeof __propDef.slots;
15
+ export default class LaurelWreathFilled extends SvelteComponentTyped<LaurelWreathFilledProps, LaurelWreathFilledEvents, LaurelWreathFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M18 3a3 3 0 0 1 2.443 4.742l-.06 .076l.037 .087c1.269 3.187 .428 7.084 -2.203 9.872l-.217 .223c-2.8 2.8 -6.823 3.723 -10.095 2.42l-.087 -.036l-.133 .098a3 3 0 0 1 -2.11 .488l-.205 -.036a3 3 0 0 1 -1.852 -4.62l.098 -.134l-.036 -.085c-1.269 -3.187 -.428 -7.084 2.203 -9.872l.217 -.223c2.8 -2.8 6.823 -3.723 10.095 -2.42l.085 .037l.124 -.091a3 3 0 0 1 1.493 -.52z" }]];
3
+ </script>
4
+ <Icon type="filled" name="lemon-2-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 Lemon_2FilledProps = typeof __propDef.props;
13
+ export type Lemon_2FilledEvents = typeof __propDef.events;
14
+ export type Lemon_2FilledSlots = typeof __propDef.slots;
15
+ export default class Lemon_2Filled extends SvelteComponentTyped<Lemon_2FilledProps, Lemon_2FilledEvents, Lemon_2FilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14.757 16.172l3.571 3.571a10.004 10.004 0 0 1 -12.656 0l3.57 -3.571a5 5 0 0 0 2.758 .828c1.02 0 1.967 -.305 2.757 -.828m-10.5 -10.5l3.571 3.57a5 5 0 0 0 -.828 2.758c0 1.02 .305 1.967 .828 2.757l-3.57 3.572a10 10 0 0 1 -2.258 -6.329l.005 -.324a10 10 0 0 1 2.252 -6.005m17.743 6.329c0 2.343 -.82 4.57 -2.257 6.328l-3.571 -3.57a5 5 0 0 0 .828 -2.758c0 -1.02 -.305 -1.967 -.828 -2.757l3.571 -3.57a10 10 0 0 1 2.257 6.327m-5 -8.66q .707 .41 1.33 .918l-3.573 3.57a5 5 0 0 0 -2.757 -.828c-1.02 0 -1.967 .305 -2.757 .828l-3.573 -3.57a10 10 0 0 1 11.33 -.918" }]];
3
+ </script>
4
+ <Icon type="filled" name="lifebuoy-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 LifebuoyFilledProps = typeof __propDef.props;
13
+ export type LifebuoyFilledEvents = typeof __propDef.events;
14
+ export type LifebuoyFilledSlots = typeof __propDef.slots;
15
+ export default class LifebuoyFilled extends SvelteComponentTyped<LifebuoyFilledProps, LifebuoyFilledEvents, LifebuoyFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8 16h.013" }], ["path", { "d": "M12.01 16h.005" }], ["path", { "d": "M16.015 16h.005" }], ["path", { "d": "M16.015 12h.005" }], ["path", { "d": "M8.01 12h.005" }], ["path", { "d": "M12.01 12h.005" }], ["path", { "d": "M16.02 8h.005" }], ["path", { "d": "M8.015 8h.005" }], ["path", { "d": "M12.015 8h.005" }], ["path", { "d": "M7 4h-1a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h1" }], ["path", { "d": "M17 4h1a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-1" }]];
3
+ </script>
4
+ <Icon type="outline" name="matrix" {...$$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 MatrixProps = typeof __propDef.props;
13
+ export type MatrixEvents = typeof __propDef.events;
14
+ export type MatrixSlots = typeof __propDef.slots;
15
+ export default class Matrix extends SvelteComponentTyped<MatrixProps, MatrixEvents, MatrixSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" }]];
3
+ </script>
4
+ <Icon type="outline" name="square-dashed" {...$$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 SquareDashedProps = typeof __propDef.props;
13
+ export type SquareDashedEvents = typeof __propDef.events;
14
+ export type SquareDashedSlots = typeof __propDef.slots;
15
+ export default class SquareDashed extends SvelteComponentTyped<SquareDashedProps, SquareDashedEvents, SquareDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M3 10h18" }], ["path", { "d": "M10 3v18" }]];
3
+ </script>
4
+ <Icon type="outline" name="table-dashed" {...$$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 TableDashedProps = typeof __propDef.props;
13
+ export type TableDashedEvents = typeof __propDef.events;
14
+ export type TableDashedSlots = typeof __propDef.slots;
15
+ export default class TableDashed extends SvelteComponentTyped<TableDashedProps, TableDashedEvents, TableDashedSlots> {
16
+ }
17
+ export {};
@@ -1059,6 +1059,7 @@ export default [
1059
1059
  "cactus-off",
1060
1060
  "cactus",
1061
1061
  "cake-off",
1062
+ "cake-roll",
1062
1063
  "cake",
1063
1064
  "calculator-off",
1064
1065
  "calculator",
@@ -3126,6 +3127,7 @@ export default [
3126
3127
  "math-y-minus-y",
3127
3128
  "math-y-plus-y",
3128
3129
  "math",
3130
+ "matrix",
3129
3131
  "maximize-off",
3130
3132
  "maximize",
3131
3133
  "meat-off",
@@ -4257,6 +4259,7 @@ export default [
4257
4259
  "square-chevrons-left",
4258
4260
  "square-chevrons-right",
4259
4261
  "square-chevrons-up",
4262
+ "square-dashed",
4260
4263
  "square-dot",
4261
4264
  "square-f0",
4262
4265
  "square-f1",
@@ -4451,6 +4454,7 @@ export default [
4451
4454
  "swords",
4452
4455
  "table-alias",
4453
4456
  "table-column",
4457
+ "table-dashed",
4454
4458
  "table-down",
4455
4459
  "table-export",
4456
4460
  "table-heart",
@@ -5054,6 +5058,7 @@ export default [
5054
5058
  "box-multiple-filled",
5055
5059
  "brand-angular-filled",
5056
5060
  "brand-apple-filled",
5061
+ "brand-bitbucket-filled",
5057
5062
  "brand-discord-filled",
5058
5063
  "brand-dribbble-filled",
5059
5064
  "brand-facebook-filled",
@@ -5274,6 +5279,7 @@ export default [
5274
5279
  "dice-5-filled",
5275
5280
  "dice-6-filled",
5276
5281
  "dice-filled",
5282
+ "direction-arrows-filled",
5277
5283
  "direction-sign-filled",
5278
5284
  "directions-filled",
5279
5285
  "disc-filled",
@@ -5281,27 +5287,34 @@ export default [
5281
5287
  "droplet-half-2-filled",
5282
5288
  "droplet-half-filled",
5283
5289
  "droplet-filled",
5290
+ "droplets-filled",
5284
5291
  "egg-cracked-filled",
5285
5292
  "egg-filled",
5286
5293
  "elevator-filled",
5287
5294
  "exclamation-circle-filled",
5288
5295
  "eye-filled",
5296
+ "eyeglass-filled",
5289
5297
  "favicon-filled",
5290
5298
  "feather-filled",
5291
5299
  "file-x-filled",
5292
5300
  "file-filled",
5293
5301
  "filter-filled",
5302
+ "filters-filled",
5294
5303
  "flag-2-filled",
5295
5304
  "flag-3-filled",
5296
5305
  "flag-filled",
5306
+ "flame-filled",
5307
+ "flare-filled",
5297
5308
  "flask-2-filled",
5298
5309
  "flask-filled",
5299
5310
  "flower-filled",
5300
5311
  "folder-filled",
5312
+ "folders-filled",
5301
5313
  "forbid-2-filled",
5302
5314
  "forbid-filled",
5303
5315
  "fountain-filled",
5304
5316
  "function-filled",
5317
+ "garden-cart-filled",
5305
5318
  "gauge-filled",
5306
5319
  "ghost-2-filled",
5307
5320
  "ghost-3-filled",
@@ -5314,10 +5327,12 @@ export default [
5314
5327
  "golf-filled",
5315
5328
  "gps-filled",
5316
5329
  "graph-filled",
5330
+ "grid-pattern-filled",
5317
5331
  "guitar-pick-filled",
5318
5332
  "hanger-2-filled",
5319
5333
  "headphones-filled",
5320
5334
  "heart-filled",
5335
+ "helicopter-landing-filled",
5321
5336
  "help-circle-filled",
5322
5337
  "help-hexagon-filled",
5323
5338
  "help-octagon-filled",
@@ -5398,6 +5413,7 @@ export default [
5398
5413
  "label-important-filled",
5399
5414
  "label-filled",
5400
5415
  "lasso-polygon-filled",
5416
+ "laurel-wreath-filled",
5401
5417
  "layout-2-filled",
5402
5418
  "layout-align-bottom-filled",
5403
5419
  "layout-align-center-filled",
@@ -5426,6 +5442,8 @@ export default [
5426
5442
  "layout-sidebar-filled",
5427
5443
  "layout-filled",
5428
5444
  "lego-filled",
5445
+ "lemon-2-filled",
5446
+ "lifebuoy-filled",
5429
5447
  "live-photo-filled",
5430
5448
  "live-view-filled",
5431
5449
  "location-filled",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.23.0",
3
+ "version": "3.24.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.23.0"
52
+ "@tabler/icons": "3.24.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@sveltejs/package": "^2.2.7",