@tabler/icons-svelte 3.3.0 → 3.4.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/ai.svelte +6 -0
  2. package/dist/icons/ai.svelte.d.ts +17 -0
  3. package/dist/icons/cash-register.svelte +6 -0
  4. package/dist/icons/cash-register.svelte.d.ts +17 -0
  5. package/dist/icons/index.d.ts +18 -0
  6. package/dist/icons/index.js +18 -0
  7. package/dist/icons/percentage-0.svelte +6 -0
  8. package/dist/icons/percentage-0.svelte.d.ts +17 -0
  9. package/dist/icons/percentage-10.svelte +6 -0
  10. package/dist/icons/percentage-10.svelte.d.ts +17 -0
  11. package/dist/icons/percentage-100.svelte +6 -0
  12. package/dist/icons/percentage-100.svelte.d.ts +17 -0
  13. package/dist/icons/percentage-20.svelte +6 -0
  14. package/dist/icons/percentage-20.svelte.d.ts +17 -0
  15. package/dist/icons/percentage-25.svelte +6 -0
  16. package/dist/icons/percentage-25.svelte.d.ts +17 -0
  17. package/dist/icons/percentage-30.svelte +6 -0
  18. package/dist/icons/percentage-30.svelte.d.ts +17 -0
  19. package/dist/icons/percentage-33.svelte +6 -0
  20. package/dist/icons/percentage-33.svelte.d.ts +17 -0
  21. package/dist/icons/percentage-40.svelte +6 -0
  22. package/dist/icons/percentage-40.svelte.d.ts +17 -0
  23. package/dist/icons/percentage-50.svelte +6 -0
  24. package/dist/icons/percentage-50.svelte.d.ts +17 -0
  25. package/dist/icons/percentage-60.svelte +6 -0
  26. package/dist/icons/percentage-60.svelte.d.ts +17 -0
  27. package/dist/icons/percentage-66.svelte +6 -0
  28. package/dist/icons/percentage-66.svelte.d.ts +17 -0
  29. package/dist/icons/percentage-70.svelte +6 -0
  30. package/dist/icons/percentage-70.svelte.d.ts +17 -0
  31. package/dist/icons/percentage-75.svelte +6 -0
  32. package/dist/icons/percentage-75.svelte.d.ts +17 -0
  33. package/dist/icons/percentage-80.svelte +6 -0
  34. package/dist/icons/percentage-80.svelte.d.ts +17 -0
  35. package/dist/icons/percentage-90.svelte +6 -0
  36. package/dist/icons/percentage-90.svelte.d.ts +17 -0
  37. package/dist/icons/picnic-table.svelte +6 -0
  38. package/dist/icons/picnic-table.svelte.d.ts +17 -0
  39. package/dist/icons-list.js +18 -0
  40. package/package.json +74 -2
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8 16v-6a2 2 0 1 1 4 0v6" }], ["path", { "d": "M8 13h4" }], ["path", { "d": "M16 8v8" }]];
3
+ </script>
4
+ <Icon type="outline" name="ai" {...$$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 AiProps = typeof __propDef.props;
13
+ export type AiEvents = typeof __propDef.events;
14
+ export type AiSlots = typeof __propDef.slots;
15
+ export default class Ai extends SvelteComponentTyped<AiProps, AiEvents, AiSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M21 15h-2.5c-.398 0 -.779 .158 -1.061 .439c-.281 .281 -.439 .663 -.439 1.061c0 .398 .158 .779 .439 1.061c.281 .281 .663 .439 1.061 .439h1c.398 0 .779 .158 1.061 .439c.281 .281 .439 .663 .439 1.061c0 .398 -.158 .779 -.439 1.061c-.281 .281 -.663 .439 -1.061 .439h-2.5" }], ["path", { "d": "M19 21v1m0 -8v1" }], ["path", { "d": "M13 21h-7c-.53 0 -1.039 -.211 -1.414 -.586c-.375 -.375 -.586 -.884 -.586 -1.414v-10c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h2m12 3.12v-1.12c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586h-2" }], ["path", { "d": "M16 10v-6c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586h-4c-.53 0 -1.039 .211 -1.414 .586c-.375 .375 -.586 .884 -.586 1.414v6m8 0h-8m8 0h1m-9 0h-1" }], ["path", { "d": "M8 14v.01" }], ["path", { "d": "M8 17v.01" }], ["path", { "d": "M12 13.99v.01" }], ["path", { "d": "M12 17v.01" }]];
3
+ </script>
4
+ <Icon type="outline" name="cash-register" {...$$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 CashRegisterProps = typeof __propDef.props;
13
+ export type CashRegisterEvents = typeof __propDef.events;
14
+ export type CashRegisterSlots = typeof __propDef.slots;
15
+ export default class CashRegister extends SvelteComponentTyped<CashRegisterProps, CashRegisterEvents, CashRegisterSlots> {
16
+ }
17
+ export {};
@@ -42,6 +42,7 @@ export { default as IconAdjustmentsX } from './adjustments-x.svelte';
42
42
  export { default as IconAdjustments } from './adjustments.svelte';
43
43
  export { default as IconAerialLift } from './aerial-lift.svelte';
44
44
  export { default as IconAffiliate } from './affiliate.svelte';
45
+ export { default as IconAi } from './ai.svelte';
45
46
  export { default as IconAirBalloon } from './air-balloon.svelte';
46
47
  export { default as IconAirConditioningDisabled } from './air-conditioning-disabled.svelte';
47
48
  export { default as IconAirConditioning } from './air-conditioning.svelte';
@@ -1097,6 +1098,7 @@ export { default as IconCarrot } from './carrot.svelte';
1097
1098
  export { default as IconCashBanknoteOff } from './cash-banknote-off.svelte';
1098
1099
  export { default as IconCashBanknote } from './cash-banknote.svelte';
1099
1100
  export { default as IconCashOff } from './cash-off.svelte';
1101
+ export { default as IconCashRegister } from './cash-register.svelte';
1100
1102
  export { default as IconCash } from './cash.svelte';
1101
1103
  export { default as IconCastOff } from './cast-off.svelte';
1102
1104
  export { default as IconCast } from './cast.svelte';
@@ -3348,6 +3350,21 @@ export { default as IconPentagon } from './pentagon.svelte';
3348
3350
  export { default as IconPentagram } from './pentagram.svelte';
3349
3351
  export { default as IconPepperOff } from './pepper-off.svelte';
3350
3352
  export { default as IconPepper } from './pepper.svelte';
3353
+ export { default as IconPercentage0 } from './percentage-0.svelte';
3354
+ export { default as IconPercentage10 } from './percentage-10.svelte';
3355
+ export { default as IconPercentage100 } from './percentage-100.svelte';
3356
+ export { default as IconPercentage20 } from './percentage-20.svelte';
3357
+ export { default as IconPercentage25 } from './percentage-25.svelte';
3358
+ export { default as IconPercentage30 } from './percentage-30.svelte';
3359
+ export { default as IconPercentage33 } from './percentage-33.svelte';
3360
+ export { default as IconPercentage40 } from './percentage-40.svelte';
3361
+ export { default as IconPercentage50 } from './percentage-50.svelte';
3362
+ export { default as IconPercentage60 } from './percentage-60.svelte';
3363
+ export { default as IconPercentage66 } from './percentage-66.svelte';
3364
+ export { default as IconPercentage70 } from './percentage-70.svelte';
3365
+ export { default as IconPercentage75 } from './percentage-75.svelte';
3366
+ export { default as IconPercentage80 } from './percentage-80.svelte';
3367
+ export { default as IconPercentage90 } from './percentage-90.svelte';
3351
3368
  export { default as IconPercentage } from './percentage.svelte';
3352
3369
  export { default as IconPerfume } from './perfume.svelte';
3353
3370
  export { default as IconPerspectiveOff } from './perspective-off.svelte';
@@ -3400,6 +3417,7 @@ export { default as IconPhoto } from './photo.svelte';
3400
3417
  export { default as IconPhysotherapist } from './physotherapist.svelte';
3401
3418
  export { default as IconPiano } from './piano.svelte';
3402
3419
  export { default as IconPick } from './pick.svelte';
3420
+ export { default as IconPicnicTable } from './picnic-table.svelte';
3403
3421
  export { default as IconPictureInPictureOff } from './picture-in-picture-off.svelte';
3404
3422
  export { default as IconPictureInPictureOn } from './picture-in-picture-on.svelte';
3405
3423
  export { default as IconPictureInPictureTop } from './picture-in-picture-top.svelte';
@@ -42,6 +42,7 @@ export { default as IconAdjustmentsX } from './adjustments-x.svelte';
42
42
  export { default as IconAdjustments } from './adjustments.svelte';
43
43
  export { default as IconAerialLift } from './aerial-lift.svelte';
44
44
  export { default as IconAffiliate } from './affiliate.svelte';
45
+ export { default as IconAi } from './ai.svelte';
45
46
  export { default as IconAirBalloon } from './air-balloon.svelte';
46
47
  export { default as IconAirConditioningDisabled } from './air-conditioning-disabled.svelte';
47
48
  export { default as IconAirConditioning } from './air-conditioning.svelte';
@@ -1097,6 +1098,7 @@ export { default as IconCarrot } from './carrot.svelte';
1097
1098
  export { default as IconCashBanknoteOff } from './cash-banknote-off.svelte';
1098
1099
  export { default as IconCashBanknote } from './cash-banknote.svelte';
1099
1100
  export { default as IconCashOff } from './cash-off.svelte';
1101
+ export { default as IconCashRegister } from './cash-register.svelte';
1100
1102
  export { default as IconCash } from './cash.svelte';
1101
1103
  export { default as IconCastOff } from './cast-off.svelte';
1102
1104
  export { default as IconCast } from './cast.svelte';
@@ -3348,6 +3350,21 @@ export { default as IconPentagon } from './pentagon.svelte';
3348
3350
  export { default as IconPentagram } from './pentagram.svelte';
3349
3351
  export { default as IconPepperOff } from './pepper-off.svelte';
3350
3352
  export { default as IconPepper } from './pepper.svelte';
3353
+ export { default as IconPercentage0 } from './percentage-0.svelte';
3354
+ export { default as IconPercentage10 } from './percentage-10.svelte';
3355
+ export { default as IconPercentage100 } from './percentage-100.svelte';
3356
+ export { default as IconPercentage20 } from './percentage-20.svelte';
3357
+ export { default as IconPercentage25 } from './percentage-25.svelte';
3358
+ export { default as IconPercentage30 } from './percentage-30.svelte';
3359
+ export { default as IconPercentage33 } from './percentage-33.svelte';
3360
+ export { default as IconPercentage40 } from './percentage-40.svelte';
3361
+ export { default as IconPercentage50 } from './percentage-50.svelte';
3362
+ export { default as IconPercentage60 } from './percentage-60.svelte';
3363
+ export { default as IconPercentage66 } from './percentage-66.svelte';
3364
+ export { default as IconPercentage70 } from './percentage-70.svelte';
3365
+ export { default as IconPercentage75 } from './percentage-75.svelte';
3366
+ export { default as IconPercentage80 } from './percentage-80.svelte';
3367
+ export { default as IconPercentage90 } from './percentage-90.svelte';
3351
3368
  export { default as IconPercentage } from './percentage.svelte';
3352
3369
  export { default as IconPerfume } from './perfume.svelte';
3353
3370
  export { default as IconPerspectiveOff } from './perspective-off.svelte';
@@ -3400,6 +3417,7 @@ export { default as IconPhoto } from './photo.svelte';
3400
3417
  export { default as IconPhysotherapist } from './physotherapist.svelte';
3401
3418
  export { default as IconPiano } from './piano.svelte';
3402
3419
  export { default as IconPick } from './pick.svelte';
3420
+ export { default as IconPicnicTable } from './picnic-table.svelte';
3403
3421
  export { default as IconPictureInPictureOff } from './picture-in-picture-off.svelte';
3404
3422
  export { default as IconPictureInPictureOn } from './picture-in-picture-on.svelte';
3405
3423
  export { default as IconPictureInPictureTop } from './picture-in-picture-top.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-0" {...$$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 Percentage_0Props = typeof __propDef.props;
13
+ export type Percentage_0Events = typeof __propDef.events;
14
+ export type Percentage_0Slots = typeof __propDef.slots;
15
+ export default class Percentage_0 extends SvelteComponentTyped<Percentage_0Props, Percentage_0Events, Percentage_0Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3c1.92 0 3.7 .601 5.16 1.626l-5.16 7.374z", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-10" {...$$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 Percentage_10Props = typeof __propDef.props;
13
+ export type Percentage_10Events = typeof __propDef.events;
14
+ export type Percentage_10Slots = typeof __propDef.slots;
15
+ export default class Percentage_10 extends SvelteComponentTyped<Percentage_10Props, Percentage_10Events, Percentage_10Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0", "fill": "currentColor" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-100" {...$$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 Percentage_100Props = typeof __propDef.props;
13
+ export type Percentage_100Events = typeof __propDef.events;
14
+ export type Percentage_100Slots = typeof __propDef.slots;
15
+ export default class Percentage_100 extends SvelteComponentTyped<Percentage_100Props, Percentage_100Events, Percentage_100Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3a9 9 0 0 1 8.497 6.025l-8.497 2.975z", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-20" {...$$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 Percentage_20Props = typeof __propDef.props;
13
+ export type Percentage_20Events = typeof __propDef.events;
14
+ export type Percentage_20Slots = typeof __propDef.slots;
15
+ export default class Percentage_20 extends SvelteComponentTyped<Percentage_20Props, Percentage_20Events, Percentage_20Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M21 12a9 9 0 0 0 -9 -9m0 0v9h9", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-25" {...$$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 Percentage_25Props = typeof __propDef.props;
13
+ export type Percentage_25Events = typeof __propDef.events;
14
+ export type Percentage_25Slots = typeof __propDef.slots;
15
+ export default class Percentage_25 extends SvelteComponentTyped<Percentage_25Props, Percentage_25Events, Percentage_25Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3a9 9 0 0 1 8.495 11.973l-8.495 -2.973z", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-30" {...$$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 Percentage_30Props = typeof __propDef.props;
13
+ export type Percentage_30Events = typeof __propDef.events;
14
+ export type Percentage_30Slots = typeof __propDef.slots;
15
+ export default class Percentage_30 extends SvelteComponentTyped<Percentage_30Props, Percentage_30Events, Percentage_30Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3a9 9 0 0 1 7.794 13.5l-7.79 -4.497z", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-33" {...$$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 Percentage_33Props = typeof __propDef.props;
13
+ export type Percentage_33Events = typeof __propDef.events;
14
+ export type Percentage_33Slots = typeof __propDef.slots;
15
+ export default class Percentage_33 extends SvelteComponentTyped<Percentage_33Props, Percentage_33Events, Percentage_33Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3a9 9 0 0 1 5.162 16.372l-5.162 -7.372z", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-40" {...$$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 Percentage_40Props = typeof __propDef.props;
13
+ export type Percentage_40Events = typeof __propDef.events;
14
+ export type Percentage_40Slots = typeof __propDef.slots;
15
+ export default class Percentage_40 extends SvelteComponentTyped<Percentage_40Props, Percentage_40Events, Percentage_40Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 21a9 9 0 0 0 0 -18m0 0v18", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-50" {...$$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 Percentage_50Props = typeof __propDef.props;
13
+ export type Percentage_50Events = typeof __propDef.events;
14
+ export type Percentage_50Slots = typeof __propDef.slots;
15
+ export default class Percentage_50 extends SvelteComponentTyped<Percentage_50Props, Percentage_50Events, Percentage_50Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3a9 9 0 1 1 -5.162 16.373l5.162 -7.373z", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-60" {...$$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 Percentage_60Props = typeof __propDef.props;
13
+ export type Percentage_60Events = typeof __propDef.events;
14
+ export type Percentage_60Slots = typeof __propDef.slots;
15
+ export default class Percentage_60 extends SvelteComponentTyped<Percentage_60Props, Percentage_60Events, Percentage_60Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3a9 9 0 1 1 -7.795 13.498l7.795 -4.498z", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-66" {...$$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 Percentage_66Props = typeof __propDef.props;
13
+ export type Percentage_66Events = typeof __propDef.events;
14
+ export type Percentage_66Slots = typeof __propDef.slots;
15
+ export default class Percentage_66 extends SvelteComponentTyped<Percentage_66Props, Percentage_66Events, Percentage_66Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3a9 9 0 1 1 -8.495 11.973l8.495 -2.973z", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-70" {...$$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 Percentage_70Props = typeof __propDef.props;
13
+ export type Percentage_70Events = typeof __propDef.events;
14
+ export type Percentage_70Slots = typeof __propDef.slots;
15
+ export default class Percentage_70 extends SvelteComponentTyped<Percentage_70Props, Percentage_70Events, Percentage_70Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 12a9 9 0 1 0 9 -9m0 0v9h-9", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-75" {...$$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 Percentage_75Props = typeof __propDef.props;
13
+ export type Percentage_75Events = typeof __propDef.events;
14
+ export type Percentage_75Slots = typeof __propDef.slots;
15
+ export default class Percentage_75 extends SvelteComponentTyped<Percentage_75Props, Percentage_75Events, Percentage_75Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3a9 9 0 1 1 -8.497 6.025l8.497 2.975z", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-80" {...$$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 Percentage_80Props = typeof __propDef.props;
13
+ export type Percentage_80Events = typeof __propDef.events;
14
+ export type Percentage_80Slots = typeof __propDef.slots;
15
+ export default class Percentage_80 extends SvelteComponentTyped<Percentage_80Props, Percentage_80Events, Percentage_80Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3a9 9 0 1 1 -5.16 1.626l5.16 7.374z", "fill": "currentColor", "stroke": "none" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" }]];
3
+ </script>
4
+ <Icon type="outline" name="percentage-90" {...$$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 Percentage_90Props = typeof __propDef.props;
13
+ export type Percentage_90Events = typeof __propDef.events;
14
+ export type Percentage_90Slots = typeof __propDef.slots;
15
+ export default class Percentage_90 extends SvelteComponentTyped<Percentage_90Props, Percentage_90Events, Percentage_90Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M16 7l2 9m-10 -9l-2 9m-1 -9h14m2 5h-18" }]];
3
+ </script>
4
+ <Icon type="outline" name="picnic-table" {...$$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 PicnicTableProps = typeof __propDef.props;
13
+ export type PicnicTableEvents = typeof __propDef.events;
14
+ export type PicnicTableSlots = typeof __propDef.slots;
15
+ export default class PicnicTable extends SvelteComponentTyped<PicnicTableProps, PicnicTableEvents, PicnicTableSlots> {
16
+ }
17
+ export {};
@@ -43,6 +43,7 @@ export default [
43
43
  "adjustments",
44
44
  "aerial-lift",
45
45
  "affiliate",
46
+ "ai",
46
47
  "air-balloon",
47
48
  "air-conditioning-disabled",
48
49
  "air-conditioning",
@@ -1098,6 +1099,7 @@ export default [
1098
1099
  "cash-banknote-off",
1099
1100
  "cash-banknote",
1100
1101
  "cash-off",
1102
+ "cash-register",
1101
1103
  "cash",
1102
1104
  "cast-off",
1103
1105
  "cast",
@@ -3349,6 +3351,21 @@ export default [
3349
3351
  "pentagram",
3350
3352
  "pepper-off",
3351
3353
  "pepper",
3354
+ "percentage-0",
3355
+ "percentage-10",
3356
+ "percentage-100",
3357
+ "percentage-20",
3358
+ "percentage-25",
3359
+ "percentage-30",
3360
+ "percentage-33",
3361
+ "percentage-40",
3362
+ "percentage-50",
3363
+ "percentage-60",
3364
+ "percentage-66",
3365
+ "percentage-70",
3366
+ "percentage-75",
3367
+ "percentage-80",
3368
+ "percentage-90",
3352
3369
  "percentage",
3353
3370
  "perfume",
3354
3371
  "perspective-off",
@@ -3401,6 +3418,7 @@ export default [
3401
3418
  "physotherapist",
3402
3419
  "piano",
3403
3420
  "pick",
3421
+ "picnic-table",
3404
3422
  "picture-in-picture-off",
3405
3423
  "picture-in-picture-on",
3406
3424
  "picture-in-picture-top",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.3.0",
3
+ "version": "3.4.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.",
@@ -205,6 +205,10 @@
205
205
  "types": "./dist/icons/affiliate.svelte.d.ts",
206
206
  "svelte": "./dist/icons/affiliate.svelte"
207
207
  },
208
+ "./IconAi.svelte": {
209
+ "types": "./dist/icons/ai.svelte.d.ts",
210
+ "svelte": "./dist/icons/ai.svelte"
211
+ },
208
212
  "./IconAirBalloon.svelte": {
209
213
  "types": "./dist/icons/air-balloon.svelte.d.ts",
210
214
  "svelte": "./dist/icons/air-balloon.svelte"
@@ -4425,6 +4429,10 @@
4425
4429
  "types": "./dist/icons/cash-off.svelte.d.ts",
4426
4430
  "svelte": "./dist/icons/cash-off.svelte"
4427
4431
  },
4432
+ "./IconCashRegister.svelte": {
4433
+ "types": "./dist/icons/cash-register.svelte.d.ts",
4434
+ "svelte": "./dist/icons/cash-register.svelte"
4435
+ },
4428
4436
  "./IconCash.svelte": {
4429
4437
  "types": "./dist/icons/cash.svelte.d.ts",
4430
4438
  "svelte": "./dist/icons/cash.svelte"
@@ -13429,6 +13437,66 @@
13429
13437
  "types": "./dist/icons/pepper.svelte.d.ts",
13430
13438
  "svelte": "./dist/icons/pepper.svelte"
13431
13439
  },
13440
+ "./IconPercentage0.svelte": {
13441
+ "types": "./dist/icons/percentage-0.svelte.d.ts",
13442
+ "svelte": "./dist/icons/percentage-0.svelte"
13443
+ },
13444
+ "./IconPercentage10.svelte": {
13445
+ "types": "./dist/icons/percentage-10.svelte.d.ts",
13446
+ "svelte": "./dist/icons/percentage-10.svelte"
13447
+ },
13448
+ "./IconPercentage100.svelte": {
13449
+ "types": "./dist/icons/percentage-100.svelte.d.ts",
13450
+ "svelte": "./dist/icons/percentage-100.svelte"
13451
+ },
13452
+ "./IconPercentage20.svelte": {
13453
+ "types": "./dist/icons/percentage-20.svelte.d.ts",
13454
+ "svelte": "./dist/icons/percentage-20.svelte"
13455
+ },
13456
+ "./IconPercentage25.svelte": {
13457
+ "types": "./dist/icons/percentage-25.svelte.d.ts",
13458
+ "svelte": "./dist/icons/percentage-25.svelte"
13459
+ },
13460
+ "./IconPercentage30.svelte": {
13461
+ "types": "./dist/icons/percentage-30.svelte.d.ts",
13462
+ "svelte": "./dist/icons/percentage-30.svelte"
13463
+ },
13464
+ "./IconPercentage33.svelte": {
13465
+ "types": "./dist/icons/percentage-33.svelte.d.ts",
13466
+ "svelte": "./dist/icons/percentage-33.svelte"
13467
+ },
13468
+ "./IconPercentage40.svelte": {
13469
+ "types": "./dist/icons/percentage-40.svelte.d.ts",
13470
+ "svelte": "./dist/icons/percentage-40.svelte"
13471
+ },
13472
+ "./IconPercentage50.svelte": {
13473
+ "types": "./dist/icons/percentage-50.svelte.d.ts",
13474
+ "svelte": "./dist/icons/percentage-50.svelte"
13475
+ },
13476
+ "./IconPercentage60.svelte": {
13477
+ "types": "./dist/icons/percentage-60.svelte.d.ts",
13478
+ "svelte": "./dist/icons/percentage-60.svelte"
13479
+ },
13480
+ "./IconPercentage66.svelte": {
13481
+ "types": "./dist/icons/percentage-66.svelte.d.ts",
13482
+ "svelte": "./dist/icons/percentage-66.svelte"
13483
+ },
13484
+ "./IconPercentage70.svelte": {
13485
+ "types": "./dist/icons/percentage-70.svelte.d.ts",
13486
+ "svelte": "./dist/icons/percentage-70.svelte"
13487
+ },
13488
+ "./IconPercentage75.svelte": {
13489
+ "types": "./dist/icons/percentage-75.svelte.d.ts",
13490
+ "svelte": "./dist/icons/percentage-75.svelte"
13491
+ },
13492
+ "./IconPercentage80.svelte": {
13493
+ "types": "./dist/icons/percentage-80.svelte.d.ts",
13494
+ "svelte": "./dist/icons/percentage-80.svelte"
13495
+ },
13496
+ "./IconPercentage90.svelte": {
13497
+ "types": "./dist/icons/percentage-90.svelte.d.ts",
13498
+ "svelte": "./dist/icons/percentage-90.svelte"
13499
+ },
13432
13500
  "./IconPercentage.svelte": {
13433
13501
  "types": "./dist/icons/percentage.svelte.d.ts",
13434
13502
  "svelte": "./dist/icons/percentage.svelte"
@@ -13637,6 +13705,10 @@
13637
13705
  "types": "./dist/icons/pick.svelte.d.ts",
13638
13706
  "svelte": "./dist/icons/pick.svelte"
13639
13707
  },
13708
+ "./IconPicnicTable.svelte": {
13709
+ "types": "./dist/icons/picnic-table.svelte.d.ts",
13710
+ "svelte": "./dist/icons/picnic-table.svelte"
13711
+ },
13640
13712
  "./IconPictureInPictureOff.svelte": {
13641
13713
  "types": "./dist/icons/picture-in-picture-off.svelte.d.ts",
13642
13714
  "svelte": "./dist/icons/picture-in-picture-off.svelte"
@@ -21056,7 +21128,7 @@
21056
21128
  "imports-check": "attw $(npm pack)"
21057
21129
  },
21058
21130
  "dependencies": {
21059
- "@tabler/icons": "3.3.0"
21131
+ "@tabler/icons": "3.4.0"
21060
21132
  },
21061
21133
  "devDependencies": {
21062
21134
  "@sveltejs/package": "^2.2.7",