@tabler/icons-svelte 3.18.0 → 3.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/icons/arrow-down-dashed.svelte +6 -0
  2. package/dist/icons/arrow-down-dashed.svelte.d.ts +17 -0
  3. package/dist/icons/arrow-left-dashed.svelte +6 -0
  4. package/dist/icons/arrow-left-dashed.svelte.d.ts +17 -0
  5. package/dist/icons/arrow-narrow-down-dashed.svelte +6 -0
  6. package/dist/icons/arrow-narrow-down-dashed.svelte.d.ts +17 -0
  7. package/dist/icons/arrow-narrow-left-dashed.svelte +6 -0
  8. package/dist/icons/arrow-narrow-left-dashed.svelte.d.ts +17 -0
  9. package/dist/icons/arrow-narrow-right-dashed.svelte +6 -0
  10. package/dist/icons/arrow-narrow-right-dashed.svelte.d.ts +17 -0
  11. package/dist/icons/arrow-narrow-up-dashed.svelte +6 -0
  12. package/dist/icons/arrow-narrow-up-dashed.svelte.d.ts +17 -0
  13. package/dist/icons/arrow-right-dashed.svelte +6 -0
  14. package/dist/icons/arrow-right-dashed.svelte.d.ts +17 -0
  15. package/dist/icons/arrow-up-dashed.svelte +6 -0
  16. package/dist/icons/arrow-up-dashed.svelte.d.ts +17 -0
  17. package/dist/icons/building-cog.svelte +6 -0
  18. package/dist/icons/building-cog.svelte.d.ts +17 -0
  19. package/dist/icons/building-minus.svelte +6 -0
  20. package/dist/icons/building-minus.svelte.d.ts +17 -0
  21. package/dist/icons/building-plus.svelte +6 -0
  22. package/dist/icons/building-plus.svelte.d.ts +17 -0
  23. package/dist/icons/favicon-filled.svelte +6 -0
  24. package/dist/icons/favicon-filled.svelte.d.ts +17 -0
  25. package/dist/icons/icons-filled.svelte +6 -0
  26. package/dist/icons/icons-filled.svelte.d.ts +17 -0
  27. package/dist/icons/index.d.ts +18 -0
  28. package/dist/icons/index.js +18 -0
  29. package/dist/icons/ironing-1-filled.svelte +6 -0
  30. package/dist/icons/ironing-1-filled.svelte.d.ts +17 -0
  31. package/dist/icons/ironing-2-filled.svelte +6 -0
  32. package/dist/icons/ironing-2-filled.svelte.d.ts +17 -0
  33. package/dist/icons/ironing-3-filled.svelte +6 -0
  34. package/dist/icons/ironing-3-filled.svelte.d.ts +17 -0
  35. package/dist/icons/ironing-steam-filled.svelte +6 -0
  36. package/dist/icons/ironing-steam-filled.svelte.d.ts +17 -0
  37. package/dist/icons/sitemap-filled.svelte +6 -0
  38. package/dist/icons/sitemap-filled.svelte.d.ts +17 -0
  39. package/dist/icons-list.js +18 -0
  40. package/package.json +2 -2
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 5v.5m0 3v1.5m0 3v6" }], ["path", { "d": "M18 13l-6 6" }], ["path", { "d": "M6 13l6 6" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-down-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 ArrowDownDashedProps = typeof __propDef.props;
13
+ export type ArrowDownDashedEvents = typeof __propDef.events;
14
+ export type ArrowDownDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowDownDashed extends SvelteComponentTyped<ArrowDownDashedProps, ArrowDownDashedEvents, ArrowDownDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M5 12h6m3 0h1.5m3 0h.5" }], ["path", { "d": "M5 12l6 6" }], ["path", { "d": "M5 12l6 -6" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-left-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 ArrowLeftDashedProps = typeof __propDef.props;
13
+ export type ArrowLeftDashedEvents = typeof __propDef.events;
14
+ export type ArrowLeftDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowLeftDashed extends SvelteComponentTyped<ArrowLeftDashedProps, ArrowLeftDashedEvents, ArrowLeftDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 5v.5m0 3v1.5m0 3v6" }], ["path", { "d": "M16 15l-4 4" }], ["path", { "d": "M8 15l4 4" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-narrow-down-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 ArrowNarrowDownDashedProps = typeof __propDef.props;
13
+ export type ArrowNarrowDownDashedEvents = typeof __propDef.events;
14
+ export type ArrowNarrowDownDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowNarrowDownDashed extends SvelteComponentTyped<ArrowNarrowDownDashedProps, ArrowNarrowDownDashedEvents, ArrowNarrowDownDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M5 12h6m3 0h1.5m3 0h.5" }], ["path", { "d": "M5 12l4 4" }], ["path", { "d": "M5 12l4 -4" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-narrow-left-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 ArrowNarrowLeftDashedProps = typeof __propDef.props;
13
+ export type ArrowNarrowLeftDashedEvents = typeof __propDef.events;
14
+ export type ArrowNarrowLeftDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowNarrowLeftDashed extends SvelteComponentTyped<ArrowNarrowLeftDashedProps, ArrowNarrowLeftDashedEvents, ArrowNarrowLeftDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M5 12h.5m3 0h1.5m3 0h6" }], ["path", { "d": "M15 16l4 -4" }], ["path", { "d": "M15 8l4 4" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-narrow-right-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 ArrowNarrowRightDashedProps = typeof __propDef.props;
13
+ export type ArrowNarrowRightDashedEvents = typeof __propDef.events;
14
+ export type ArrowNarrowRightDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowNarrowRightDashed extends SvelteComponentTyped<ArrowNarrowRightDashedProps, ArrowNarrowRightDashedEvents, ArrowNarrowRightDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 5v6m0 3v1.5m0 3v.5" }], ["path", { "d": "M16 9l-4 -4" }], ["path", { "d": "M8 9l4 -4" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-narrow-up-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 ArrowNarrowUpDashedProps = typeof __propDef.props;
13
+ export type ArrowNarrowUpDashedEvents = typeof __propDef.events;
14
+ export type ArrowNarrowUpDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowNarrowUpDashed extends SvelteComponentTyped<ArrowNarrowUpDashedProps, ArrowNarrowUpDashedEvents, ArrowNarrowUpDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M5 12h.5m3 0h1.5m3 0h6" }], ["path", { "d": "M13 18l6 -6" }], ["path", { "d": "M13 6l6 6" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-right-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 ArrowRightDashedProps = typeof __propDef.props;
13
+ export type ArrowRightDashedEvents = typeof __propDef.events;
14
+ export type ArrowRightDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowRightDashed extends SvelteComponentTyped<ArrowRightDashedProps, ArrowRightDashedEvents, ArrowRightDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 5v6m0 3v1.5m0 3v.5" }], ["path", { "d": "M18 11l-6 -6" }], ["path", { "d": "M6 11l6 -6" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-up-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 ArrowUpDashedProps = typeof __propDef.props;
13
+ export type ArrowUpDashedEvents = typeof __propDef.events;
14
+ export type ArrowUpDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowUpDashed extends SvelteComponentTyped<ArrowUpDashedProps, ArrowUpDashedEvents, ArrowUpDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 21h9" }], ["path", { "d": "M9 8h1" }], ["path", { "d": "M9 12h1" }], ["path", { "d": "M9 16h1" }], ["path", { "d": "M14 8h1" }], ["path", { "d": "M14 12h1" }], ["path", { "d": "M5 21v-16c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h10c.53 0 1.039 .211 1.414 .586c.375 .375 .586 .884 .586 1.414v7" }], ["path", { "d": "M16 18c0 .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": "M18 14.5v1.5" }], ["path", { "d": "M18 20v1.5" }], ["path", { "d": "M21.032 16.25l-1.299 .75" }], ["path", { "d": "M16.27 19l-1.3 .75" }], ["path", { "d": "M14.97 16.25l1.3 .75" }], ["path", { "d": "M19.733 19l1.3 .75" }]];
3
+ </script>
4
+ <Icon type="outline" name="building-cog" {...$$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 BuildingCogProps = typeof __propDef.props;
13
+ export type BuildingCogEvents = typeof __propDef.events;
14
+ export type BuildingCogSlots = typeof __propDef.slots;
15
+ export default class BuildingCog extends SvelteComponentTyped<BuildingCogProps, BuildingCogEvents, BuildingCogSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 21h9" }], ["path", { "d": "M9 8h1" }], ["path", { "d": "M9 12h1" }], ["path", { "d": "M9 16h1" }], ["path", { "d": "M14 8h1" }], ["path", { "d": "M14 12h1" }], ["path", { "d": "M5 21v-16c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h10c.53 0 1.039 .211 1.414 .586c.375 .375 .586 .884 .586 1.414v7" }], ["path", { "d": "M16 19h6" }]];
3
+ </script>
4
+ <Icon type="outline" name="building-minus" {...$$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 BuildingMinusProps = typeof __propDef.props;
13
+ export type BuildingMinusEvents = typeof __propDef.events;
14
+ export type BuildingMinusSlots = typeof __propDef.slots;
15
+ export default class BuildingMinus extends SvelteComponentTyped<BuildingMinusProps, BuildingMinusEvents, BuildingMinusSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 21h9" }], ["path", { "d": "M9 8h1" }], ["path", { "d": "M9 12h1" }], ["path", { "d": "M9 16h1" }], ["path", { "d": "M14 8h1" }], ["path", { "d": "M14 12h1" }], ["path", { "d": "M5 21v-16c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h10c.53 0 1.039 .211 1.414 .586c.375 .375 .586 .884 .586 1.414v7" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16v6" }]];
3
+ </script>
4
+ <Icon type="outline" name="building-plus" {...$$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 BuildingPlusProps = typeof __propDef.props;
13
+ export type BuildingPlusEvents = typeof __propDef.events;
14
+ export type BuildingPlusSlots = typeof __propDef.slots;
15
+ export default class BuildingPlus extends SvelteComponentTyped<BuildingPlusProps, BuildingPlusEvents, BuildingPlusSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M19 4a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-14a4 4 0 0 1 -4 -4v-8a4 4 0 0 1 4 -4zm-13 5a1 1 0 0 0 -1 1v4a1 1 0 0 0 2 0v-4a1 1 0 0 0 -1 -1m5 0a3 3 0 0 0 0 6a1 1 0 0 0 .117 -1.993l-.117 -.007a1 1 0 0 1 -.117 -1.993l.117 -.007a1 1 0 0 0 0 -2m5 0a3 3 0 0 0 -2.995 2.824l-.005 .176a3 3 0 1 0 3 -3" }], ["path", { "d": "M16 11a1 1 0 1 0 0 2a1 1 0 0 0 0 -2" }]];
3
+ </script>
4
+ <Icon type="filled" name="favicon-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 FaviconFilledProps = typeof __propDef.props;
13
+ export type FaviconFilledEvents = typeof __propDef.events;
14
+ export type FaviconFilledSlots = typeof __propDef.slots;
15
+ export default class FaviconFilled extends SvelteComponentTyped<FaviconFilledProps, FaviconFilledEvents, FaviconFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4.25 2.603a4.5 4.5 0 1 1 -2.25 3.897l.006 -.229a4.5 4.5 0 0 1 2.244 -3.668" }], ["path", { "d": "M5.632 13.504a1 1 0 0 1 1.736 0l4 7a1 1 0 0 1 -.868 1.496h-8a1 1 0 0 1 -.868 -1.496z" }], ["path", { "d": "M13.293 2.293a1 1 0 0 1 1.414 0l7 7a1 1 0 1 1 -1.414 1.414l-7 -7a1 1 0 0 1 0 -1.414" }], ["path", { "d": "M20.293 2.293a1 1 0 0 1 1.414 1.414l-7 7a1 1 0 0 1 -1.414 -1.414z" }], ["path", { "d": "M21 13a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-7a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1z" }]];
3
+ </script>
4
+ <Icon type="filled" name="icons-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 IconsFilledProps = typeof __propDef.props;
13
+ export type IconsFilledEvents = typeof __propDef.events;
14
+ export type IconsFilledSlots = typeof __propDef.slots;
15
+ export default class IconsFilled extends SvelteComponentTyped<IconsFilledProps, IconsFilledEvents, IconsFilledSlots> {
16
+ }
17
+ export {};
@@ -181,6 +181,7 @@ export { default as IconArrowCurveLeft } from './arrow-curve-left.svelte';
181
181
  export { default as IconArrowCurveRight } from './arrow-curve-right.svelte';
182
182
  export { default as IconArrowDownBar } from './arrow-down-bar.svelte';
183
183
  export { default as IconArrowDownCircle } from './arrow-down-circle.svelte';
184
+ export { default as IconArrowDownDashed } from './arrow-down-dashed.svelte';
184
185
  export { default as IconArrowDownFromArc } from './arrow-down-from-arc.svelte';
185
186
  export { default as IconArrowDownLeftCircle } from './arrow-down-left-circle.svelte';
186
187
  export { default as IconArrowDownLeft } from './arrow-down-left.svelte';
@@ -201,6 +202,7 @@ export { default as IconArrowGuide } from './arrow-guide.svelte';
201
202
  export { default as IconArrowIteration } from './arrow-iteration.svelte';
202
203
  export { default as IconArrowLeftBar } from './arrow-left-bar.svelte';
203
204
  export { default as IconArrowLeftCircle } from './arrow-left-circle.svelte';
205
+ export { default as IconArrowLeftDashed } from './arrow-left-dashed.svelte';
204
206
  export { default as IconArrowLeftFromArc } from './arrow-left-from-arc.svelte';
205
207
  export { default as IconArrowLeftRhombus } from './arrow-left-rhombus.svelte';
206
208
  export { default as IconArrowLeftRight } from './arrow-left-right.svelte';
@@ -222,9 +224,13 @@ export { default as IconArrowMoveDown } from './arrow-move-down.svelte';
222
224
  export { default as IconArrowMoveLeft } from './arrow-move-left.svelte';
223
225
  export { default as IconArrowMoveRight } from './arrow-move-right.svelte';
224
226
  export { default as IconArrowMoveUp } from './arrow-move-up.svelte';
227
+ export { default as IconArrowNarrowDownDashed } from './arrow-narrow-down-dashed.svelte';
225
228
  export { default as IconArrowNarrowDown } from './arrow-narrow-down.svelte';
229
+ export { default as IconArrowNarrowLeftDashed } from './arrow-narrow-left-dashed.svelte';
226
230
  export { default as IconArrowNarrowLeft } from './arrow-narrow-left.svelte';
231
+ export { default as IconArrowNarrowRightDashed } from './arrow-narrow-right-dashed.svelte';
227
232
  export { default as IconArrowNarrowRight } from './arrow-narrow-right.svelte';
233
+ export { default as IconArrowNarrowUpDashed } from './arrow-narrow-up-dashed.svelte';
228
234
  export { default as IconArrowNarrowUp } from './arrow-narrow-up.svelte';
229
235
  export { default as IconArrowRampLeft2 } from './arrow-ramp-left-2.svelte';
230
236
  export { default as IconArrowRampLeft3 } from './arrow-ramp-left-3.svelte';
@@ -234,6 +240,7 @@ export { default as IconArrowRampRight3 } from './arrow-ramp-right-3.svelte';
234
240
  export { default as IconArrowRampRight } from './arrow-ramp-right.svelte';
235
241
  export { default as IconArrowRightBar } from './arrow-right-bar.svelte';
236
242
  export { default as IconArrowRightCircle } from './arrow-right-circle.svelte';
243
+ export { default as IconArrowRightDashed } from './arrow-right-dashed.svelte';
237
244
  export { default as IconArrowRightFromArc } from './arrow-right-from-arc.svelte';
238
245
  export { default as IconArrowRightRhombus } from './arrow-right-rhombus.svelte';
239
246
  export { default as IconArrowRightSquare } from './arrow-right-square.svelte';
@@ -253,6 +260,7 @@ export { default as IconArrowSharpTurnLeft } from './arrow-sharp-turn-left.svelt
253
260
  export { default as IconArrowSharpTurnRight } from './arrow-sharp-turn-right.svelte';
254
261
  export { default as IconArrowUpBar } from './arrow-up-bar.svelte';
255
262
  export { default as IconArrowUpCircle } from './arrow-up-circle.svelte';
263
+ export { default as IconArrowUpDashed } from './arrow-up-dashed.svelte';
256
264
  export { default as IconArrowUpFromArc } from './arrow-up-from-arc.svelte';
257
265
  export { default as IconArrowUpLeftCircle } from './arrow-up-left-circle.svelte';
258
266
  export { default as IconArrowUpLeft } from './arrow-up-left.svelte';
@@ -1005,6 +1013,7 @@ export { default as IconBuildingCarousel } from './building-carousel.svelte';
1005
1013
  export { default as IconBuildingCastle } from './building-castle.svelte';
1006
1014
  export { default as IconBuildingChurch } from './building-church.svelte';
1007
1015
  export { default as IconBuildingCircus } from './building-circus.svelte';
1016
+ export { default as IconBuildingCog } from './building-cog.svelte';
1008
1017
  export { default as IconBuildingCommunity } from './building-community.svelte';
1009
1018
  export { default as IconBuildingCottage } from './building-cottage.svelte';
1010
1019
  export { default as IconBuildingEstate } from './building-estate.svelte';
@@ -1013,10 +1022,12 @@ export { default as IconBuildingFactory } from './building-factory.svelte';
1013
1022
  export { default as IconBuildingFortress } from './building-fortress.svelte';
1014
1023
  export { default as IconBuildingHospital } from './building-hospital.svelte';
1015
1024
  export { default as IconBuildingLighthouse } from './building-lighthouse.svelte';
1025
+ export { default as IconBuildingMinus } from './building-minus.svelte';
1016
1026
  export { default as IconBuildingMonument } from './building-monument.svelte';
1017
1027
  export { default as IconBuildingMosque } from './building-mosque.svelte';
1018
1028
  export { default as IconBuildingOff } from './building-off.svelte';
1019
1029
  export { default as IconBuildingPavilion } from './building-pavilion.svelte';
1030
+ export { default as IconBuildingPlus } from './building-plus.svelte';
1020
1031
  export { default as IconBuildingSkyscraper } from './building-skyscraper.svelte';
1021
1032
  export { default as IconBuildingStadium } from './building-stadium.svelte';
1022
1033
  export { default as IconBuildingStore } from './building-store.svelte';
@@ -5228,6 +5239,7 @@ export { default as IconEggFilled } from './egg-filled.svelte';
5228
5239
  export { default as IconElevatorFilled } from './elevator-filled.svelte';
5229
5240
  export { default as IconExclamationCircleFilled } from './exclamation-circle-filled.svelte';
5230
5241
  export { default as IconEyeFilled } from './eye-filled.svelte';
5242
+ export { default as IconFaviconFilled } from './favicon-filled.svelte';
5231
5243
  export { default as IconFeatherFilled } from './feather-filled.svelte';
5232
5244
  export { default as IconFileXFilled } from './file-x-filled.svelte';
5233
5245
  export { default as IconFileFilled } from './file-filled.svelte';
@@ -5305,6 +5317,7 @@ export { default as IconHexagonFilled } from './hexagon-filled.svelte';
5305
5317
  export { default as IconHomeFilled } from './home-filled.svelte';
5306
5318
  export { default as IconHospitalCircleFilled } from './hospital-circle-filled.svelte';
5307
5319
  export { default as IconHourglassFilled } from './hourglass-filled.svelte';
5320
+ export { default as IconIconsFilled } from './icons-filled.svelte';
5308
5321
  export { default as IconInfoCircleFilled } from './info-circle-filled.svelte';
5309
5322
  export { default as IconInfoHexagonFilled } from './info-hexagon-filled.svelte';
5310
5323
  export { default as IconInfoOctagonFilled } from './info-octagon-filled.svelte';
@@ -5319,6 +5332,10 @@ export { default as IconInnerShadowRightFilled } from './inner-shadow-right-fill
5319
5332
  export { default as IconInnerShadowTopLeftFilled } from './inner-shadow-top-left-filled.svelte';
5320
5333
  export { default as IconInnerShadowTopRightFilled } from './inner-shadow-top-right-filled.svelte';
5321
5334
  export { default as IconInnerShadowTopFilled } from './inner-shadow-top-filled.svelte';
5335
+ export { default as IconIroning1Filled } from './ironing-1-filled.svelte';
5336
+ export { default as IconIroning2Filled } from './ironing-2-filled.svelte';
5337
+ export { default as IconIroning3Filled } from './ironing-3-filled.svelte';
5338
+ export { default as IconIroningSteamFilled } from './ironing-steam-filled.svelte';
5322
5339
  export { default as IconIroningFilled } from './ironing-filled.svelte';
5323
5340
  export { default as IconJetpackFilled } from './jetpack-filled.svelte';
5324
5341
  export { default as IconJewishStarFilled } from './jewish-star-filled.svelte';
@@ -5461,6 +5478,7 @@ export { default as IconShirtFilled } from './shirt-filled.svelte';
5461
5478
  export { default as IconShoppingCartFilled } from './shopping-cart-filled.svelte';
5462
5479
  export { default as IconSignLeftFilled } from './sign-left-filled.svelte';
5463
5480
  export { default as IconSignRightFilled } from './sign-right-filled.svelte';
5481
+ export { default as IconSitemapFilled } from './sitemap-filled.svelte';
5464
5482
  export { default as IconSortAscending2Filled } from './sort-ascending-2-filled.svelte';
5465
5483
  export { default as IconSortAscendingShapesFilled } from './sort-ascending-shapes-filled.svelte';
5466
5484
  export { default as IconSortDescending2Filled } from './sort-descending-2-filled.svelte';
@@ -181,6 +181,7 @@ export { default as IconArrowCurveLeft } from './arrow-curve-left.svelte';
181
181
  export { default as IconArrowCurveRight } from './arrow-curve-right.svelte';
182
182
  export { default as IconArrowDownBar } from './arrow-down-bar.svelte';
183
183
  export { default as IconArrowDownCircle } from './arrow-down-circle.svelte';
184
+ export { default as IconArrowDownDashed } from './arrow-down-dashed.svelte';
184
185
  export { default as IconArrowDownFromArc } from './arrow-down-from-arc.svelte';
185
186
  export { default as IconArrowDownLeftCircle } from './arrow-down-left-circle.svelte';
186
187
  export { default as IconArrowDownLeft } from './arrow-down-left.svelte';
@@ -201,6 +202,7 @@ export { default as IconArrowGuide } from './arrow-guide.svelte';
201
202
  export { default as IconArrowIteration } from './arrow-iteration.svelte';
202
203
  export { default as IconArrowLeftBar } from './arrow-left-bar.svelte';
203
204
  export { default as IconArrowLeftCircle } from './arrow-left-circle.svelte';
205
+ export { default as IconArrowLeftDashed } from './arrow-left-dashed.svelte';
204
206
  export { default as IconArrowLeftFromArc } from './arrow-left-from-arc.svelte';
205
207
  export { default as IconArrowLeftRhombus } from './arrow-left-rhombus.svelte';
206
208
  export { default as IconArrowLeftRight } from './arrow-left-right.svelte';
@@ -222,9 +224,13 @@ export { default as IconArrowMoveDown } from './arrow-move-down.svelte';
222
224
  export { default as IconArrowMoveLeft } from './arrow-move-left.svelte';
223
225
  export { default as IconArrowMoveRight } from './arrow-move-right.svelte';
224
226
  export { default as IconArrowMoveUp } from './arrow-move-up.svelte';
227
+ export { default as IconArrowNarrowDownDashed } from './arrow-narrow-down-dashed.svelte';
225
228
  export { default as IconArrowNarrowDown } from './arrow-narrow-down.svelte';
229
+ export { default as IconArrowNarrowLeftDashed } from './arrow-narrow-left-dashed.svelte';
226
230
  export { default as IconArrowNarrowLeft } from './arrow-narrow-left.svelte';
231
+ export { default as IconArrowNarrowRightDashed } from './arrow-narrow-right-dashed.svelte';
227
232
  export { default as IconArrowNarrowRight } from './arrow-narrow-right.svelte';
233
+ export { default as IconArrowNarrowUpDashed } from './arrow-narrow-up-dashed.svelte';
228
234
  export { default as IconArrowNarrowUp } from './arrow-narrow-up.svelte';
229
235
  export { default as IconArrowRampLeft2 } from './arrow-ramp-left-2.svelte';
230
236
  export { default as IconArrowRampLeft3 } from './arrow-ramp-left-3.svelte';
@@ -234,6 +240,7 @@ export { default as IconArrowRampRight3 } from './arrow-ramp-right-3.svelte';
234
240
  export { default as IconArrowRampRight } from './arrow-ramp-right.svelte';
235
241
  export { default as IconArrowRightBar } from './arrow-right-bar.svelte';
236
242
  export { default as IconArrowRightCircle } from './arrow-right-circle.svelte';
243
+ export { default as IconArrowRightDashed } from './arrow-right-dashed.svelte';
237
244
  export { default as IconArrowRightFromArc } from './arrow-right-from-arc.svelte';
238
245
  export { default as IconArrowRightRhombus } from './arrow-right-rhombus.svelte';
239
246
  export { default as IconArrowRightSquare } from './arrow-right-square.svelte';
@@ -253,6 +260,7 @@ export { default as IconArrowSharpTurnLeft } from './arrow-sharp-turn-left.svelt
253
260
  export { default as IconArrowSharpTurnRight } from './arrow-sharp-turn-right.svelte';
254
261
  export { default as IconArrowUpBar } from './arrow-up-bar.svelte';
255
262
  export { default as IconArrowUpCircle } from './arrow-up-circle.svelte';
263
+ export { default as IconArrowUpDashed } from './arrow-up-dashed.svelte';
256
264
  export { default as IconArrowUpFromArc } from './arrow-up-from-arc.svelte';
257
265
  export { default as IconArrowUpLeftCircle } from './arrow-up-left-circle.svelte';
258
266
  export { default as IconArrowUpLeft } from './arrow-up-left.svelte';
@@ -1005,6 +1013,7 @@ export { default as IconBuildingCarousel } from './building-carousel.svelte';
1005
1013
  export { default as IconBuildingCastle } from './building-castle.svelte';
1006
1014
  export { default as IconBuildingChurch } from './building-church.svelte';
1007
1015
  export { default as IconBuildingCircus } from './building-circus.svelte';
1016
+ export { default as IconBuildingCog } from './building-cog.svelte';
1008
1017
  export { default as IconBuildingCommunity } from './building-community.svelte';
1009
1018
  export { default as IconBuildingCottage } from './building-cottage.svelte';
1010
1019
  export { default as IconBuildingEstate } from './building-estate.svelte';
@@ -1013,10 +1022,12 @@ export { default as IconBuildingFactory } from './building-factory.svelte';
1013
1022
  export { default as IconBuildingFortress } from './building-fortress.svelte';
1014
1023
  export { default as IconBuildingHospital } from './building-hospital.svelte';
1015
1024
  export { default as IconBuildingLighthouse } from './building-lighthouse.svelte';
1025
+ export { default as IconBuildingMinus } from './building-minus.svelte';
1016
1026
  export { default as IconBuildingMonument } from './building-monument.svelte';
1017
1027
  export { default as IconBuildingMosque } from './building-mosque.svelte';
1018
1028
  export { default as IconBuildingOff } from './building-off.svelte';
1019
1029
  export { default as IconBuildingPavilion } from './building-pavilion.svelte';
1030
+ export { default as IconBuildingPlus } from './building-plus.svelte';
1020
1031
  export { default as IconBuildingSkyscraper } from './building-skyscraper.svelte';
1021
1032
  export { default as IconBuildingStadium } from './building-stadium.svelte';
1022
1033
  export { default as IconBuildingStore } from './building-store.svelte';
@@ -5228,6 +5239,7 @@ export { default as IconEggFilled } from './egg-filled.svelte';
5228
5239
  export { default as IconElevatorFilled } from './elevator-filled.svelte';
5229
5240
  export { default as IconExclamationCircleFilled } from './exclamation-circle-filled.svelte';
5230
5241
  export { default as IconEyeFilled } from './eye-filled.svelte';
5242
+ export { default as IconFaviconFilled } from './favicon-filled.svelte';
5231
5243
  export { default as IconFeatherFilled } from './feather-filled.svelte';
5232
5244
  export { default as IconFileXFilled } from './file-x-filled.svelte';
5233
5245
  export { default as IconFileFilled } from './file-filled.svelte';
@@ -5305,6 +5317,7 @@ export { default as IconHexagonFilled } from './hexagon-filled.svelte';
5305
5317
  export { default as IconHomeFilled } from './home-filled.svelte';
5306
5318
  export { default as IconHospitalCircleFilled } from './hospital-circle-filled.svelte';
5307
5319
  export { default as IconHourglassFilled } from './hourglass-filled.svelte';
5320
+ export { default as IconIconsFilled } from './icons-filled.svelte';
5308
5321
  export { default as IconInfoCircleFilled } from './info-circle-filled.svelte';
5309
5322
  export { default as IconInfoHexagonFilled } from './info-hexagon-filled.svelte';
5310
5323
  export { default as IconInfoOctagonFilled } from './info-octagon-filled.svelte';
@@ -5319,6 +5332,10 @@ export { default as IconInnerShadowRightFilled } from './inner-shadow-right-fill
5319
5332
  export { default as IconInnerShadowTopLeftFilled } from './inner-shadow-top-left-filled.svelte';
5320
5333
  export { default as IconInnerShadowTopRightFilled } from './inner-shadow-top-right-filled.svelte';
5321
5334
  export { default as IconInnerShadowTopFilled } from './inner-shadow-top-filled.svelte';
5335
+ export { default as IconIroning1Filled } from './ironing-1-filled.svelte';
5336
+ export { default as IconIroning2Filled } from './ironing-2-filled.svelte';
5337
+ export { default as IconIroning3Filled } from './ironing-3-filled.svelte';
5338
+ export { default as IconIroningSteamFilled } from './ironing-steam-filled.svelte';
5322
5339
  export { default as IconIroningFilled } from './ironing-filled.svelte';
5323
5340
  export { default as IconJetpackFilled } from './jetpack-filled.svelte';
5324
5341
  export { default as IconJewishStarFilled } from './jewish-star-filled.svelte';
@@ -5461,6 +5478,7 @@ export { default as IconShirtFilled } from './shirt-filled.svelte';
5461
5478
  export { default as IconShoppingCartFilled } from './shopping-cart-filled.svelte';
5462
5479
  export { default as IconSignLeftFilled } from './sign-left-filled.svelte';
5463
5480
  export { default as IconSignRightFilled } from './sign-right-filled.svelte';
5481
+ export { default as IconSitemapFilled } from './sitemap-filled.svelte';
5464
5482
  export { default as IconSortAscending2Filled } from './sort-ascending-2-filled.svelte';
5465
5483
  export { default as IconSortAscendingShapesFilled } from './sort-ascending-shapes-filled.svelte';
5466
5484
  export { default as IconSortDescending2Filled } from './sort-descending-2-filled.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M16.459 5a4 4 0 0 1 3.945 3.343l1.387 8.329a2 2 0 0 1 -1.971 2.328h-16.82a1 1 0 0 1 -1 -1a8 8 0 0 1 8 -8h8.652l-.22 -1.329a2 2 0 0 0 -1.811 -1.665l-.162 -.006h-7.459a1 1 0 1 1 0 -2zm-4.449 9h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2" }]];
3
+ </script>
4
+ <Icon type="filled" name="ironing-1-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 Ironing_1FilledProps = typeof __propDef.props;
13
+ export type Ironing_1FilledEvents = typeof __propDef.events;
14
+ export type Ironing_1FilledSlots = typeof __propDef.slots;
15
+ export default class Ironing_1Filled extends SvelteComponentTyped<Ironing_1FilledProps, Ironing_1FilledEvents, Ironing_1FilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M16.459 5a4 4 0 0 1 3.945 3.343l1.387 8.329a2 2 0 0 1 -1.971 2.328h-16.82a1 1 0 0 1 -1 -1a8 8 0 0 1 8 -8h8.652l-.22 -1.329a2 2 0 0 0 -1.811 -1.665l-.162 -.006h-7.459a1 1 0 1 1 0 -2zm-6.449 9h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m4 0h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2" }]];
3
+ </script>
4
+ <Icon type="filled" name="ironing-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 Ironing_2FilledProps = typeof __propDef.props;
13
+ export type Ironing_2FilledEvents = typeof __propDef.events;
14
+ export type Ironing_2FilledSlots = typeof __propDef.slots;
15
+ export default class Ironing_2Filled extends SvelteComponentTyped<Ironing_2FilledProps, Ironing_2FilledEvents, Ironing_2FilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M16.459 5a4 4 0 0 1 3.945 3.343l1.387 8.329a2 2 0 0 1 -1.971 2.328h-16.82a1 1 0 0 1 -1 -1a8 8 0 0 1 8 -8h8.652l-.22 -1.329a2 2 0 0 0 -1.811 -1.665l-.162 -.006h-7.459a1 1 0 1 1 0 -2zm-4.449 9h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-3 0h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m6 0h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2" }]];
3
+ </script>
4
+ <Icon type="filled" name="ironing-3-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 Ironing_3FilledProps = typeof __propDef.props;
13
+ export type Ironing_3FilledEvents = typeof __propDef.events;
14
+ export type Ironing_3FilledSlots = typeof __propDef.slots;
15
+ export default class Ironing_3Filled extends SvelteComponentTyped<Ironing_3FilledProps, Ironing_3FilledEvents, Ironing_3FilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 18a1 1 0 0 1 1 1v2a1 1 0 0 1 -2 0v-2a1 1 0 0 1 1 -1" }], ["path", { "d": "M16.459 3a4 4 0 0 1 3.945 3.343l.577 3.464l.81 4.865a2 2 0 0 1 -1.971 2.328h-16.82a1 1 0 0 1 -1 -1a8 8 0 0 1 8 -8h8.652l-.22 -1.329a2 2 0 0 0 -1.811 -1.665l-.162 -.006h-7.459a1 1 0 1 1 0 -2z" }], ["path", { "d": "M7.106 18.553a1 1 0 0 1 1.788 .894l-1 2a1 1 0 0 1 -1.788 -.894z" }], ["path", { "d": "M15.553 18.106a1 1 0 0 1 1.341 .447l1 2a1 1 0 0 1 -1.788 .894l-1 -2a1 1 0 0 1 .447 -1.341" }]];
3
+ </script>
4
+ <Icon type="filled" name="ironing-steam-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 IroningSteamFilledProps = typeof __propDef.props;
13
+ export type IroningSteamFilledEvents = typeof __propDef.events;
14
+ export type IroningSteamFilledSlots = typeof __propDef.slots;
15
+ export default class IroningSteamFilled extends SvelteComponentTyped<IroningSteamFilledProps, IroningSteamFilledEvents, IroningSteamFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M2 16.667a2.667 2.667 0 0 1 2.667 -2.667h2.666a2.667 2.667 0 0 1 2.667 2.667v2.666a2.667 2.667 0 0 1 -2.667 2.667h-2.666a2.667 2.667 0 0 1 -2.667 -2.667z" }], ["path", { "d": "M14 16.667a2.667 2.667 0 0 1 2.667 -2.667h2.666a2.667 2.667 0 0 1 2.667 2.667v2.666a2.667 2.667 0 0 1 -2.667 2.667h-2.666a2.667 2.667 0 0 1 -2.667 -2.667z" }], ["path", { "d": "M8 4.667a2.667 2.667 0 0 1 2.667 -2.667h2.666a2.667 2.667 0 0 1 2.667 2.667v2.666a2.667 2.667 0 0 1 -2.667 2.667h-2.666a2.667 2.667 0 0 1 -2.667 -2.667z" }], ["path", { "d": "M12 8a1 1 0 0 0 -1 1v2h-3c-1.645 0 -3 1.355 -3 3v1a1 1 0 0 0 1 1a1 1 0 0 0 1 -1v-1c0 -.564 .436 -1 1 -1h8c.564 0 1 .436 1 1v1a1 1 0 0 0 1 1a1 1 0 0 0 1 -1v-1c0 -1.645 -1.355 -3 -3 -3h-3v-2a1 1 0 0 0 -1 -1z" }]];
3
+ </script>
4
+ <Icon type="filled" name="sitemap-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 SitemapFilledProps = typeof __propDef.props;
13
+ export type SitemapFilledEvents = typeof __propDef.events;
14
+ export type SitemapFilledSlots = typeof __propDef.slots;
15
+ export default class SitemapFilled extends SvelteComponentTyped<SitemapFilledProps, SitemapFilledEvents, SitemapFilledSlots> {
16
+ }
17
+ export {};
@@ -182,6 +182,7 @@ export default [
182
182
  "arrow-curve-right",
183
183
  "arrow-down-bar",
184
184
  "arrow-down-circle",
185
+ "arrow-down-dashed",
185
186
  "arrow-down-from-arc",
186
187
  "arrow-down-left-circle",
187
188
  "arrow-down-left",
@@ -202,6 +203,7 @@ export default [
202
203
  "arrow-iteration",
203
204
  "arrow-left-bar",
204
205
  "arrow-left-circle",
206
+ "arrow-left-dashed",
205
207
  "arrow-left-from-arc",
206
208
  "arrow-left-rhombus",
207
209
  "arrow-left-right",
@@ -223,9 +225,13 @@ export default [
223
225
  "arrow-move-left",
224
226
  "arrow-move-right",
225
227
  "arrow-move-up",
228
+ "arrow-narrow-down-dashed",
226
229
  "arrow-narrow-down",
230
+ "arrow-narrow-left-dashed",
227
231
  "arrow-narrow-left",
232
+ "arrow-narrow-right-dashed",
228
233
  "arrow-narrow-right",
234
+ "arrow-narrow-up-dashed",
229
235
  "arrow-narrow-up",
230
236
  "arrow-ramp-left-2",
231
237
  "arrow-ramp-left-3",
@@ -235,6 +241,7 @@ export default [
235
241
  "arrow-ramp-right",
236
242
  "arrow-right-bar",
237
243
  "arrow-right-circle",
244
+ "arrow-right-dashed",
238
245
  "arrow-right-from-arc",
239
246
  "arrow-right-rhombus",
240
247
  "arrow-right-square",
@@ -254,6 +261,7 @@ export default [
254
261
  "arrow-sharp-turn-right",
255
262
  "arrow-up-bar",
256
263
  "arrow-up-circle",
264
+ "arrow-up-dashed",
257
265
  "arrow-up-from-arc",
258
266
  "arrow-up-left-circle",
259
267
  "arrow-up-left",
@@ -1006,6 +1014,7 @@ export default [
1006
1014
  "building-castle",
1007
1015
  "building-church",
1008
1016
  "building-circus",
1017
+ "building-cog",
1009
1018
  "building-community",
1010
1019
  "building-cottage",
1011
1020
  "building-estate",
@@ -1014,10 +1023,12 @@ export default [
1014
1023
  "building-fortress",
1015
1024
  "building-hospital",
1016
1025
  "building-lighthouse",
1026
+ "building-minus",
1017
1027
  "building-monument",
1018
1028
  "building-mosque",
1019
1029
  "building-off",
1020
1030
  "building-pavilion",
1031
+ "building-plus",
1021
1032
  "building-skyscraper",
1022
1033
  "building-stadium",
1023
1034
  "building-store",
@@ -5229,6 +5240,7 @@ export default [
5229
5240
  "elevator-filled",
5230
5241
  "exclamation-circle-filled",
5231
5242
  "eye-filled",
5243
+ "favicon-filled",
5232
5244
  "feather-filled",
5233
5245
  "file-x-filled",
5234
5246
  "file-filled",
@@ -5306,6 +5318,7 @@ export default [
5306
5318
  "home-filled",
5307
5319
  "hospital-circle-filled",
5308
5320
  "hourglass-filled",
5321
+ "icons-filled",
5309
5322
  "info-circle-filled",
5310
5323
  "info-hexagon-filled",
5311
5324
  "info-octagon-filled",
@@ -5320,6 +5333,10 @@ export default [
5320
5333
  "inner-shadow-top-left-filled",
5321
5334
  "inner-shadow-top-right-filled",
5322
5335
  "inner-shadow-top-filled",
5336
+ "ironing-1-filled",
5337
+ "ironing-2-filled",
5338
+ "ironing-3-filled",
5339
+ "ironing-steam-filled",
5323
5340
  "ironing-filled",
5324
5341
  "jetpack-filled",
5325
5342
  "jewish-star-filled",
@@ -5462,6 +5479,7 @@ export default [
5462
5479
  "shopping-cart-filled",
5463
5480
  "sign-left-filled",
5464
5481
  "sign-right-filled",
5482
+ "sitemap-filled",
5465
5483
  "sort-ascending-2-filled",
5466
5484
  "sort-ascending-shapes-filled",
5467
5485
  "sort-descending-2-filled",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.18.0",
3
+ "version": "3.19.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.18.0"
52
+ "@tabler/icons": "3.19.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@sveltejs/package": "^2.2.7",