@tabler/icons-svelte 3.30.0 → 3.31.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/icons/cash-banknote-edit.svelte +6 -0
  2. package/dist/icons/cash-banknote-edit.svelte.d.ts +17 -0
  3. package/dist/icons/cash-banknote-heart.svelte +6 -0
  4. package/dist/icons/cash-banknote-heart.svelte.d.ts +17 -0
  5. package/dist/icons/cash-banknote-minus.svelte +6 -0
  6. package/dist/icons/cash-banknote-minus.svelte.d.ts +17 -0
  7. package/dist/icons/cash-banknote-move-back.svelte +6 -0
  8. package/dist/icons/cash-banknote-move-back.svelte.d.ts +17 -0
  9. package/dist/icons/cash-banknote-move.svelte +6 -0
  10. package/dist/icons/cash-banknote-move.svelte.d.ts +17 -0
  11. package/dist/icons/cash-banknote-plus.svelte +6 -0
  12. package/dist/icons/cash-banknote-plus.svelte.d.ts +17 -0
  13. package/dist/icons/cash-banknote.svelte +1 -1
  14. package/dist/icons/cash-edit.svelte +6 -0
  15. package/dist/icons/cash-edit.svelte.d.ts +17 -0
  16. package/dist/icons/cash-heart.svelte +6 -0
  17. package/dist/icons/cash-heart.svelte.d.ts +17 -0
  18. package/dist/icons/cash-minus.svelte +6 -0
  19. package/dist/icons/cash-minus.svelte.d.ts +17 -0
  20. package/dist/icons/cash-move-back.svelte +6 -0
  21. package/dist/icons/cash-move-back.svelte.d.ts +17 -0
  22. package/dist/icons/cash-move.svelte +6 -0
  23. package/dist/icons/cash-move.svelte.d.ts +17 -0
  24. package/dist/icons/cash-plus.svelte +6 -0
  25. package/dist/icons/cash-plus.svelte.d.ts +17 -0
  26. package/dist/icons/cash.svelte +1 -1
  27. package/dist/icons/index.d.ts +18 -0
  28. package/dist/icons/index.js +18 -0
  29. package/dist/icons/moneybag-edit.svelte +6 -0
  30. package/dist/icons/moneybag-edit.svelte.d.ts +17 -0
  31. package/dist/icons/moneybag-heart.svelte +6 -0
  32. package/dist/icons/moneybag-heart.svelte.d.ts +17 -0
  33. package/dist/icons/moneybag-minus.svelte +6 -0
  34. package/dist/icons/moneybag-minus.svelte.d.ts +17 -0
  35. package/dist/icons/moneybag-move-back.svelte +6 -0
  36. package/dist/icons/moneybag-move-back.svelte.d.ts +17 -0
  37. package/dist/icons/moneybag-move.svelte +6 -0
  38. package/dist/icons/moneybag-move.svelte.d.ts +17 -0
  39. package/dist/icons/moneybag-plus.svelte +6 -0
  40. package/dist/icons/moneybag-plus.svelte.d.ts +17 -0
  41. package/dist/icons/moneybag.svelte +1 -1
  42. package/dist/icons-list.js +18 -0
  43. package/package.json +2 -2
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M11 18h-6a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3" }], ["path", { "d": "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" }], ["path", { "d": "M6 12h.01" }], ["path", { "d": "M18.42 15.61a2.1 2.1 0 1 1 2.97 2.97l-3.39 3.42h-3v-3z" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-banknote-edit" {...$$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 CashBanknoteEditProps = typeof __propDef.props;
13
+ export type CashBanknoteEditEvents = typeof __propDef.events;
14
+ export type CashBanknoteEditSlots = typeof __propDef.slots;
15
+ export default class CashBanknoteEdit extends SvelteComponentTyped<CashBanknoteEditProps, CashBanknoteEditEvents, CashBanknoteEditSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14.872 11.13a3.001 3.001 0 1 0 -4.29 3.514" }], ["path", { "d": "M10 18h-5a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3" }], ["path", { "d": "M6 12h.01" }], ["path", { "d": "M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.24 2.24 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.24 2.24 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071z" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-banknote-heart" {...$$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 CashBanknoteHeartProps = typeof __propDef.props;
13
+ export type CashBanknoteHeartEvents = typeof __propDef.events;
14
+ export type CashBanknoteHeartSlots = typeof __propDef.slots;
15
+ export default class CashBanknoteHeart extends SvelteComponentTyped<CashBanknoteHeartProps, CashBanknoteHeartEvents, CashBanknoteHeartSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" }], ["path", { "d": "M12 18h-7a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7" }], ["path", { "d": "M18 12h.01" }], ["path", { "d": "M6 12h.01" }], ["path", { "d": "M16 19h6" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-banknote-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 CashBanknoteMinusProps = typeof __propDef.props;
13
+ export type CashBanknoteMinusEvents = typeof __propDef.events;
14
+ export type CashBanknoteMinusSlots = typeof __propDef.slots;
15
+ export default class CashBanknoteMinus extends SvelteComponentTyped<CashBanknoteMinusProps, CashBanknoteMinusEvents, CashBanknoteMinusSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" }], ["path", { "d": "M12 18h-7a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5" }], ["path", { "d": "M18 12h.01" }], ["path", { "d": "M6 12h.01" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16l-3 3l3 3" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-banknote-move-back" {...$$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 CashBanknoteMoveBackProps = typeof __propDef.props;
13
+ export type CashBanknoteMoveBackEvents = typeof __propDef.events;
14
+ export type CashBanknoteMoveBackSlots = typeof __propDef.slots;
15
+ export default class CashBanknoteMoveBack extends SvelteComponentTyped<CashBanknoteMoveBackProps, CashBanknoteMoveBackEvents, CashBanknoteMoveBackSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" }], ["path", { "d": "M12 18h-7a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5" }], ["path", { "d": "M18 12h.01" }], ["path", { "d": "M6 12h.01" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16l3 3l-3 3" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-banknote-move" {...$$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 CashBanknoteMoveProps = typeof __propDef.props;
13
+ export type CashBanknoteMoveEvents = typeof __propDef.events;
14
+ export type CashBanknoteMoveSlots = typeof __propDef.slots;
15
+ export default class CashBanknoteMove extends SvelteComponentTyped<CashBanknoteMoveProps, CashBanknoteMoveEvents, CashBanknoteMoveSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" }], ["path", { "d": "M12.25 18h-7.25a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5" }], ["path", { "d": "M18 12h.01" }], ["path", { "d": "M6 12h.01" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16v6" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-banknote-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 CashBanknotePlusProps = typeof __propDef.props;
13
+ export type CashBanknotePlusEvents = typeof __propDef.events;
14
+ export type CashBanknotePlusSlots = typeof __propDef.slots;
15
+ export default class CashBanknotePlus extends SvelteComponentTyped<CashBanknotePlusProps, CashBanknotePlusEvents, CashBanknotePlusSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" }], ["path", { "d": "M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M18 12l.01 0" }], ["path", { "d": "M6 12l.01 0" }]];
2
+ const iconNode = [["path", { "d": "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" }], ["path", { "d": "M3 8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M18 12h.01" }], ["path", { "d": "M6 12h.01" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="cash-banknote" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 15h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v3" }], ["path", { "d": "M11 19h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v1.25" }], ["path", { "d": "M18.42 15.61a2.1 2.1 0 1 1 2.97 2.97l-3.39 3.42h-3v-3z" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-edit" {...$$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 CashEditProps = typeof __propDef.props;
13
+ export type CashEditEvents = typeof __propDef.events;
14
+ export type CashEditSlots = typeof __propDef.slots;
15
+ export default class CashEdit extends SvelteComponentTyped<CashEditProps, CashEditEvents, CashEditSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 15h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v3" }], ["path", { "d": "M10.25 19h-2.25a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v1.25" }], ["path", { "d": "M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.24 2.24 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.24 2.24 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071z" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-heart" {...$$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 CashHeartProps = typeof __propDef.props;
13
+ export type CashHeartEvents = typeof __propDef.events;
14
+ export type CashHeartSlots = typeof __propDef.slots;
15
+ export default class CashHeart extends SvelteComponentTyped<CashHeartProps, CashHeartEvents, CashHeartSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 15h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v3" }], ["path", { "d": "M12 19h-4a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v5" }], ["path", { "d": "M12 14a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" }], ["path", { "d": "M16 19h6" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-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 CashMinusProps = typeof __propDef.props;
13
+ export type CashMinusEvents = typeof __propDef.events;
14
+ export type CashMinusSlots = typeof __propDef.slots;
15
+ export default class CashMinus extends SvelteComponentTyped<CashMinusProps, CashMinusEvents, CashMinusSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 15h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v3" }], ["path", { "d": "M12 19h-4a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2.5" }], ["path", { "d": "M15.914 13.417a2 2 0 1 0 -2.447 2.511" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16l-3 3l3 3" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-move-back" {...$$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 CashMoveBackProps = typeof __propDef.props;
13
+ export type CashMoveBackEvents = typeof __propDef.events;
14
+ export type CashMoveBackSlots = typeof __propDef.slots;
15
+ export default class CashMoveBack extends SvelteComponentTyped<CashMoveBackProps, CashMoveBackEvents, CashMoveBackSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 15h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v3" }], ["path", { "d": "M12 19h-4a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2.5" }], ["path", { "d": "M15.92 13.437a2 2 0 1 0 -2.472 2.486" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16l3 3l-3 3" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-move" {...$$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 CashMoveProps = typeof __propDef.props;
13
+ export type CashMoveEvents = typeof __propDef.events;
14
+ export type CashMoveSlots = typeof __propDef.slots;
15
+ export default class CashMove extends SvelteComponentTyped<CashMoveProps, CashMoveEvents, CashMoveSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7 15h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v3" }], ["path", { "d": "M12 19h-4a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2.5" }], ["path", { "d": "M12 14a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16v6" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-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 CashPlusProps = typeof __propDef.props;
13
+ export type CashPlusEvents = typeof __propDef.events;
14
+ export type CashPlusSlots = typeof __propDef.slots;
15
+ export default class CashPlus extends SvelteComponentTyped<CashPlusProps, CashPlusEvents, CashPlusSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" }], ["path", { "d": "M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2" }]];
2
+ const iconNode = [["path", { "d": "M7 15h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v3" }], ["path", { "d": "M7 9m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M12 14a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="cash" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -1165,9 +1165,21 @@ export { default as IconCarouselHorizontal } from './carousel-horizontal.svelte'
1165
1165
  export { default as IconCarouselVertical } from './carousel-vertical.svelte';
1166
1166
  export { default as IconCarrotOff } from './carrot-off.svelte';
1167
1167
  export { default as IconCarrot } from './carrot.svelte';
1168
+ export { default as IconCashBanknoteEdit } from './cash-banknote-edit.svelte';
1169
+ export { default as IconCashBanknoteHeart } from './cash-banknote-heart.svelte';
1170
+ export { default as IconCashBanknoteMinus } from './cash-banknote-minus.svelte';
1171
+ export { default as IconCashBanknoteMoveBack } from './cash-banknote-move-back.svelte';
1172
+ export { default as IconCashBanknoteMove } from './cash-banknote-move.svelte';
1168
1173
  export { default as IconCashBanknoteOff } from './cash-banknote-off.svelte';
1174
+ export { default as IconCashBanknotePlus } from './cash-banknote-plus.svelte';
1169
1175
  export { default as IconCashBanknote } from './cash-banknote.svelte';
1176
+ export { default as IconCashEdit } from './cash-edit.svelte';
1177
+ export { default as IconCashHeart } from './cash-heart.svelte';
1178
+ export { default as IconCashMinus } from './cash-minus.svelte';
1179
+ export { default as IconCashMoveBack } from './cash-move-back.svelte';
1180
+ export { default as IconCashMove } from './cash-move.svelte';
1170
1181
  export { default as IconCashOff } from './cash-off.svelte';
1182
+ export { default as IconCashPlus } from './cash-plus.svelte';
1171
1183
  export { default as IconCashRegister } from './cash-register.svelte';
1172
1184
  export { default as IconCash } from './cash.svelte';
1173
1185
  export { default as IconCastOff } from './cast-off.svelte';
@@ -3260,6 +3272,12 @@ export { default as IconMistOff } from './mist-off.svelte';
3260
3272
  export { default as IconMist } from './mist.svelte';
3261
3273
  export { default as IconMobiledataOff } from './mobiledata-off.svelte';
3262
3274
  export { default as IconMobiledata } from './mobiledata.svelte';
3275
+ export { default as IconMoneybagEdit } from './moneybag-edit.svelte';
3276
+ export { default as IconMoneybagHeart } from './moneybag-heart.svelte';
3277
+ export { default as IconMoneybagMinus } from './moneybag-minus.svelte';
3278
+ export { default as IconMoneybagMoveBack } from './moneybag-move-back.svelte';
3279
+ export { default as IconMoneybagMove } from './moneybag-move.svelte';
3280
+ export { default as IconMoneybagPlus } from './moneybag-plus.svelte';
3263
3281
  export { default as IconMoneybag } from './moneybag.svelte';
3264
3282
  export { default as IconMonkeybar } from './monkeybar.svelte';
3265
3283
  export { default as IconMoodAngry } from './mood-angry.svelte';
@@ -1165,9 +1165,21 @@ export { default as IconCarouselHorizontal } from './carousel-horizontal.svelte'
1165
1165
  export { default as IconCarouselVertical } from './carousel-vertical.svelte';
1166
1166
  export { default as IconCarrotOff } from './carrot-off.svelte';
1167
1167
  export { default as IconCarrot } from './carrot.svelte';
1168
+ export { default as IconCashBanknoteEdit } from './cash-banknote-edit.svelte';
1169
+ export { default as IconCashBanknoteHeart } from './cash-banknote-heart.svelte';
1170
+ export { default as IconCashBanknoteMinus } from './cash-banknote-minus.svelte';
1171
+ export { default as IconCashBanknoteMoveBack } from './cash-banknote-move-back.svelte';
1172
+ export { default as IconCashBanknoteMove } from './cash-banknote-move.svelte';
1168
1173
  export { default as IconCashBanknoteOff } from './cash-banknote-off.svelte';
1174
+ export { default as IconCashBanknotePlus } from './cash-banknote-plus.svelte';
1169
1175
  export { default as IconCashBanknote } from './cash-banknote.svelte';
1176
+ export { default as IconCashEdit } from './cash-edit.svelte';
1177
+ export { default as IconCashHeart } from './cash-heart.svelte';
1178
+ export { default as IconCashMinus } from './cash-minus.svelte';
1179
+ export { default as IconCashMoveBack } from './cash-move-back.svelte';
1180
+ export { default as IconCashMove } from './cash-move.svelte';
1170
1181
  export { default as IconCashOff } from './cash-off.svelte';
1182
+ export { default as IconCashPlus } from './cash-plus.svelte';
1171
1183
  export { default as IconCashRegister } from './cash-register.svelte';
1172
1184
  export { default as IconCash } from './cash.svelte';
1173
1185
  export { default as IconCastOff } from './cast-off.svelte';
@@ -3260,6 +3272,12 @@ export { default as IconMistOff } from './mist-off.svelte';
3260
3272
  export { default as IconMist } from './mist.svelte';
3261
3273
  export { default as IconMobiledataOff } from './mobiledata-off.svelte';
3262
3274
  export { default as IconMobiledata } from './mobiledata.svelte';
3275
+ export { default as IconMoneybagEdit } from './moneybag-edit.svelte';
3276
+ export { default as IconMoneybagHeart } from './moneybag-heart.svelte';
3277
+ export { default as IconMoneybagMinus } from './moneybag-minus.svelte';
3278
+ export { default as IconMoneybagMoveBack } from './moneybag-move-back.svelte';
3279
+ export { default as IconMoneybagMove } from './moneybag-move.svelte';
3280
+ export { default as IconMoneybagPlus } from './moneybag-plus.svelte';
3263
3281
  export { default as IconMoneybag } from './moneybag.svelte';
3264
3282
  export { default as IconMonkeybar } from './monkeybar.svelte';
3265
3283
  export { default as IconMoodAngry } from './mood-angry.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5" }], ["path", { "d": "M11 21h-3a4 4 0 0 1 -4 -4v-1a8 8 0 0 1 14.376 -4.833" }], ["path", { "d": "M18.42 15.61a2.1 2.1 0 1 1 2.97 2.97l-3.39 3.42h-3v-3z" }]];
3
+ </script>
4
+ <Icon type="outline" name="moneybag-edit" {...$$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 MoneybagEditProps = typeof __propDef.props;
13
+ export type MoneybagEditEvents = typeof __propDef.events;
14
+ export type MoneybagEditSlots = typeof __propDef.slots;
15
+ export default class MoneybagEdit extends SvelteComponentTyped<MoneybagEditProps, MoneybagEditEvents, MoneybagEditSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5" }], ["path", { "d": "M11.5 21h-3.5a4 4 0 0 1 -4 -4v-1a8 8 0 0 1 14.376 -4.833" }], ["path", { "d": "M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.24 2.24 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.24 2.24 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071z" }]];
3
+ </script>
4
+ <Icon type="outline" name="moneybag-heart" {...$$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 MoneybagHeartProps = typeof __propDef.props;
13
+ export type MoneybagHeartEvents = typeof __propDef.events;
14
+ export type MoneybagHeartSlots = typeof __propDef.slots;
15
+ export default class MoneybagHeart extends SvelteComponentTyped<MoneybagHeartProps, MoneybagHeartEvents, MoneybagHeartSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5" }], ["path", { "d": "M12.5 21h-4.5a4 4 0 0 1 -4 -4v-1a8 8 0 0 1 15.943 -.958" }], ["path", { "d": "M16 19h6" }]];
3
+ </script>
4
+ <Icon type="outline" name="moneybag-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 MoneybagMinusProps = typeof __propDef.props;
13
+ export type MoneybagMinusEvents = typeof __propDef.events;
14
+ export type MoneybagMinusSlots = typeof __propDef.slots;
15
+ export default class MoneybagMinus extends SvelteComponentTyped<MoneybagMinusProps, MoneybagMinusEvents, MoneybagMinusSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5" }], ["path", { "d": "M12.5 21h-4.5a4 4 0 0 1 -4 -4v-1a8 8 0 0 1 14.953 -3.959" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16l-3 3l3 3" }]];
3
+ </script>
4
+ <Icon type="outline" name="moneybag-move-back" {...$$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 MoneybagMoveBackProps = typeof __propDef.props;
13
+ export type MoneybagMoveBackEvents = typeof __propDef.events;
14
+ export type MoneybagMoveBackSlots = typeof __propDef.slots;
15
+ export default class MoneybagMoveBack extends SvelteComponentTyped<MoneybagMoveBackProps, MoneybagMoveBackEvents, MoneybagMoveBackSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5" }], ["path", { "d": "M12.5 21h-4.5a4 4 0 0 1 -4 -4v-1a8 8 0 0 1 14.946 -3.971" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16l3 3l-3 3" }]];
3
+ </script>
4
+ <Icon type="outline" name="moneybag-move" {...$$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 MoneybagMoveProps = typeof __propDef.props;
13
+ export type MoneybagMoveEvents = typeof __propDef.events;
14
+ export type MoneybagMoveSlots = typeof __propDef.slots;
15
+ export default class MoneybagMove extends SvelteComponentTyped<MoneybagMoveProps, MoneybagMoveEvents, MoneybagMoveSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5" }], ["path", { "d": "M12.5 21h-4.5a4 4 0 0 1 -4 -4v-1a8 8 0 0 1 14.935 -3.991" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16v6" }]];
3
+ </script>
4
+ <Icon type="outline" name="moneybag-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 MoneybagPlusProps = typeof __propDef.props;
13
+ export type MoneybagPlusEvents = typeof __propDef.events;
14
+ export type MoneybagPlusSlots = typeof __propDef.slots;
15
+ export default class MoneybagPlus extends SvelteComponentTyped<MoneybagPlusProps, MoneybagPlusEvents, MoneybagPlusSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z" }], ["path", { "d": "M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z" }]];
2
+ const iconNode = [["path", { "d": "M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5" }], ["path", { "d": "M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="moneybag" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -1166,9 +1166,21 @@ export default [
1166
1166
  "carousel-vertical",
1167
1167
  "carrot-off",
1168
1168
  "carrot",
1169
+ "cash-banknote-edit",
1170
+ "cash-banknote-heart",
1171
+ "cash-banknote-minus",
1172
+ "cash-banknote-move-back",
1173
+ "cash-banknote-move",
1169
1174
  "cash-banknote-off",
1175
+ "cash-banknote-plus",
1170
1176
  "cash-banknote",
1177
+ "cash-edit",
1178
+ "cash-heart",
1179
+ "cash-minus",
1180
+ "cash-move-back",
1181
+ "cash-move",
1171
1182
  "cash-off",
1183
+ "cash-plus",
1172
1184
  "cash-register",
1173
1185
  "cash",
1174
1186
  "cast-off",
@@ -3261,6 +3273,12 @@ export default [
3261
3273
  "mist",
3262
3274
  "mobiledata-off",
3263
3275
  "mobiledata",
3276
+ "moneybag-edit",
3277
+ "moneybag-heart",
3278
+ "moneybag-minus",
3279
+ "moneybag-move-back",
3280
+ "moneybag-move",
3281
+ "moneybag-plus",
3264
3282
  "moneybag",
3265
3283
  "monkeybar",
3266
3284
  "mood-angry",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.30.0",
3
+ "version": "3.31.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.30.0"
52
+ "@tabler/icons": "3.31.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@sveltejs/package": "^2.2.7",