@tabler/icons-svelte 3.4.0 → 3.5.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 (44) hide show
  1. package/dist/icons/automation.svelte +6 -0
  2. package/dist/icons/automation.svelte.d.ts +17 -0
  3. package/dist/icons/battery-automotive.svelte +1 -1
  4. package/dist/icons/chart-bar-popular.svelte +6 -0
  5. package/dist/icons/chart-bar-popular.svelte.d.ts +17 -0
  6. package/dist/icons/chart-bar.svelte +1 -1
  7. package/dist/icons/chart-cohort.svelte +6 -0
  8. package/dist/icons/chart-cohort.svelte.d.ts +17 -0
  9. package/dist/icons/chart-funnel.svelte +6 -0
  10. package/dist/icons/chart-funnel.svelte.d.ts +17 -0
  11. package/dist/icons/circle-plus-filled.svelte +6 -0
  12. package/dist/icons/circle-plus-filled.svelte.d.ts +17 -0
  13. package/dist/icons/device-unknown.svelte +6 -0
  14. package/dist/icons/device-unknown.svelte.d.ts +17 -0
  15. package/dist/icons/file-excel.svelte +6 -0
  16. package/dist/icons/file-excel.svelte.d.ts +17 -0
  17. package/dist/icons/file-word.svelte +6 -0
  18. package/dist/icons/file-word.svelte.d.ts +17 -0
  19. package/dist/icons/index.d.ts +18 -0
  20. package/dist/icons/index.js +18 -0
  21. package/dist/icons/object-scan.svelte +6 -0
  22. package/dist/icons/object-scan.svelte.d.ts +17 -0
  23. package/dist/icons/tax-euro.svelte +6 -0
  24. package/dist/icons/tax-euro.svelte.d.ts +17 -0
  25. package/dist/icons/tax-pound.svelte +6 -0
  26. package/dist/icons/tax-pound.svelte.d.ts +17 -0
  27. package/dist/icons/tax.svelte +6 -0
  28. package/dist/icons/tax.svelte.d.ts +17 -0
  29. package/dist/icons/timezone.svelte +6 -0
  30. package/dist/icons/timezone.svelte.d.ts +17 -0
  31. package/dist/icons/tip-jar-euro.svelte +6 -0
  32. package/dist/icons/tip-jar-euro.svelte.d.ts +17 -0
  33. package/dist/icons/tip-jar-pound.svelte +6 -0
  34. package/dist/icons/tip-jar-pound.svelte.d.ts +17 -0
  35. package/dist/icons/tip-jar.svelte +6 -0
  36. package/dist/icons/tip-jar.svelte.d.ts +17 -0
  37. package/dist/icons/viewport-narrow.svelte +1 -1
  38. package/dist/icons/viewport-short.svelte +6 -0
  39. package/dist/icons/viewport-short.svelte.d.ts +17 -0
  40. package/dist/icons/viewport-tall.svelte +6 -0
  41. package/dist/icons/viewport-tall.svelte.d.ts +17 -0
  42. package/dist/icons/viewport-wide.svelte +1 -1
  43. package/dist/icons-list.js +18 -0
  44. package/package.json +74 -2
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M13 20.693c-.905 .628 -2.36 .292 -2.675 -1.01a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.492 .362 1.716 2.219 .674 3.03" }], ["path", { "d": "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" }], ["path", { "d": "M17 22l5 -3l-5 -3z" }]];
3
+ </script>
4
+ <Icon type="outline" name="automation" {...$$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 AutomationProps = typeof __propDef.props;
13
+ export type AutomationEvents = typeof __propDef.events;
14
+ export type AutomationSlots = typeof __propDef.slots;
15
+ export default class Automation extends SvelteComponentTyped<AutomationProps, AutomationEvents, AutomationSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M6 6v-2" }], ["path", { "d": "M19 4l0 2" }], ["path", { "d": "M6.5 13l3 0" }], ["path", { "d": "M14.5 13l3 0" }], ["path", { "d": "M16 11.5l0 3" }]];
2
+ const iconNode = [["path", { "d": "M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M6 5v-2" }], ["path", { "d": "M19 3v2" }], ["path", { "d": "M6.5 12h3" }], ["path", { "d": "M14.5 12h3" }], ["path", { "d": "M16 10.5v3" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="battery-automotive" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 13a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M9 9a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M15 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M4 20h14" }]];
3
+ </script>
4
+ <Icon type="outline" name="chart-bar-popular" {...$$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 ChartBarPopularProps = typeof __propDef.props;
13
+ export type ChartBarPopularEvents = typeof __propDef.events;
14
+ export type ChartBarPopularSlots = typeof __propDef.slots;
15
+ export default class ChartBarPopular extends SvelteComponentTyped<ChartBarPopularProps, ChartBarPopularEvents, ChartBarPopularSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M4 20l14 0" }]];
2
+ const iconNode = [["path", { "d": "M3 13a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M15 9a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M9 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M4 20h14" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="chart-bar" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 9h18v-6h-18v18h6v-18" }], ["path", { "d": "M3 15h12v-12" }]];
3
+ </script>
4
+ <Icon type="outline" name="chart-cohort" {...$$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 ChartCohortProps = typeof __propDef.props;
13
+ export type ChartCohortEvents = typeof __propDef.events;
14
+ export type ChartCohortSlots = typeof __propDef.slots;
15
+ export default class ChartCohort extends SvelteComponentTyped<ChartCohortProps, ChartCohortEvents, ChartCohortSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4.387 3h15.226a1 1 0 0 1 .948 1.316l-5.105 15.316a2 2 0 0 1 -1.898 1.368h-3.116a2 2 0 0 1 -1.898 -1.368l-5.104 -15.316a1 1 0 0 1 .947 -1.316" }], ["path", { "d": "M5 9h14" }], ["path", { "d": "M7 15h10" }]];
3
+ </script>
4
+ <Icon type="outline" name="chart-funnel" {...$$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 ChartFunnelProps = typeof __propDef.props;
13
+ export type ChartFunnelEvents = typeof __propDef.events;
14
+ export type ChartFunnelSlots = typeof __propDef.slots;
15
+ export default class ChartFunnel extends SvelteComponentTyped<ChartFunnelProps, ChartFunnelEvents, ChartFunnelSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "fill-rule": "evenodd", "d": "M4.929 4.929A10 10 0 1 1 19.07 19.07 10 10 0 0 1 4.93 4.93ZM13 9a1 1 0 1 0 -2 0v2H9a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0 -2h-2V9Z", "clip-rule": "evenodd" }]];
3
+ </script>
4
+ <Icon type="filled" name="circle-plus-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 CirclePlusFilledProps = typeof __propDef.props;
13
+ export type CirclePlusFilledEvents = typeof __propDef.events;
14
+ export type CirclePlusFilledSlots = typeof __propDef.slots;
15
+ export default class CirclePlusFilled extends SvelteComponentTyped<CirclePlusFilledProps, CirclePlusFilledEvents, CirclePlusFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M5 5a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M12 16v.01" }], ["path", { "d": "M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483" }]];
3
+ </script>
4
+ <Icon type="outline" name="device-unknown" {...$$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 DeviceUnknownProps = typeof __propDef.props;
13
+ export type DeviceUnknownEvents = typeof __propDef.events;
14
+ export type DeviceUnknownSlots = typeof __propDef.slots;
15
+ export default class DeviceUnknown extends SvelteComponentTyped<DeviceUnknownProps, DeviceUnknownEvents, DeviceUnknownSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14 3v4a1 1 0 0 0 1 1h4" }], ["path", { "d": "M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2" }], ["path", { "d": "M10 12l4 5" }], ["path", { "d": "M10 17l4 -5" }]];
3
+ </script>
4
+ <Icon type="outline" name="file-excel" {...$$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 FileExcelProps = typeof __propDef.props;
13
+ export type FileExcelEvents = typeof __propDef.events;
14
+ export type FileExcelSlots = typeof __propDef.slots;
15
+ export default class FileExcel extends SvelteComponentTyped<FileExcelProps, FileExcelEvents, FileExcelSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14 3v4a1 1 0 0 0 1 1h4" }], ["path", { "d": "M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2" }], ["path", { "d": "M9 12l1.333 5l1.667 -4l1.667 4l1.333 -5" }]];
3
+ </script>
4
+ <Icon type="outline" name="file-word" {...$$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 FileWordProps = typeof __propDef.props;
13
+ export type FileWordEvents = typeof __propDef.events;
14
+ export type FileWordSlots = typeof __propDef.slots;
15
+ export default class FileWord extends SvelteComponentTyped<FileWordProps, FileWordEvents, FileWordSlots> {
16
+ }
17
+ export {};
@@ -322,6 +322,7 @@ export { default as IconAugmentedRealityOff } from './augmented-reality-off.svel
322
322
  export { default as IconAugmentedReality } from './augmented-reality.svelte';
323
323
  export { default as IconAuth2fa } from './auth-2fa.svelte';
324
324
  export { default as IconAutomaticGearbox } from './automatic-gearbox.svelte';
325
+ export { default as IconAutomation } from './automation.svelte';
325
326
  export { default as IconAvocado } from './avocado.svelte';
326
327
  export { default as IconAwardOff } from './award-off.svelte';
327
328
  export { default as IconAward } from './award.svelte';
@@ -1131,10 +1132,12 @@ export { default as IconChartArea } from './chart-area.svelte';
1131
1132
  export { default as IconChartArrowsVertical } from './chart-arrows-vertical.svelte';
1132
1133
  export { default as IconChartArrows } from './chart-arrows.svelte';
1133
1134
  export { default as IconChartBarOff } from './chart-bar-off.svelte';
1135
+ export { default as IconChartBarPopular } from './chart-bar-popular.svelte';
1134
1136
  export { default as IconChartBar } from './chart-bar.svelte';
1135
1137
  export { default as IconChartBubble } from './chart-bubble.svelte';
1136
1138
  export { default as IconChartCandle } from './chart-candle.svelte';
1137
1139
  export { default as IconChartCircles } from './chart-circles.svelte';
1140
+ export { default as IconChartCohort } from './chart-cohort.svelte';
1138
1141
  export { default as IconChartDonut2 } from './chart-donut-2.svelte';
1139
1142
  export { default as IconChartDonut3 } from './chart-donut-3.svelte';
1140
1143
  export { default as IconChartDonut4 } from './chart-donut-4.svelte';
@@ -1142,6 +1145,7 @@ export { default as IconChartDonut } from './chart-donut.svelte';
1142
1145
  export { default as IconChartDots2 } from './chart-dots-2.svelte';
1143
1146
  export { default as IconChartDots3 } from './chart-dots-3.svelte';
1144
1147
  export { default as IconChartDots } from './chart-dots.svelte';
1148
+ export { default as IconChartFunnel } from './chart-funnel.svelte';
1145
1149
  export { default as IconChartGridDots } from './chart-grid-dots.svelte';
1146
1150
  export { default as IconChartHistogram } from './chart-histogram.svelte';
1147
1151
  export { default as IconChartInfographic } from './chart-infographic.svelte';
@@ -1800,6 +1804,7 @@ export { default as IconDeviceTablet } from './device-tablet.svelte';
1800
1804
  export { default as IconDeviceTvOff } from './device-tv-off.svelte';
1801
1805
  export { default as IconDeviceTvOld } from './device-tv-old.svelte';
1802
1806
  export { default as IconDeviceTv } from './device-tv.svelte';
1807
+ export { default as IconDeviceUnknown } from './device-unknown.svelte';
1803
1808
  export { default as IconDeviceUsb } from './device-usb.svelte';
1804
1809
  export { default as IconDeviceVisionPro } from './device-vision-pro.svelte';
1805
1810
  export { default as IconDeviceWatchBolt } from './device-watch-bolt.svelte';
@@ -2045,6 +2050,7 @@ export { default as IconFileDollar } from './file-dollar.svelte';
2045
2050
  export { default as IconFileDots } from './file-dots.svelte';
2046
2051
  export { default as IconFileDownload } from './file-download.svelte';
2047
2052
  export { default as IconFileEuro } from './file-euro.svelte';
2053
+ export { default as IconFileExcel } from './file-excel.svelte';
2048
2054
  export { default as IconFileExport } from './file-export.svelte';
2049
2055
  export { default as IconFileFunction } from './file-function.svelte';
2050
2056
  export { default as IconFileHorizontal } from './file-horizontal.svelte';
@@ -2108,6 +2114,7 @@ export { default as IconFileTypography } from './file-typography.svelte';
2108
2114
  export { default as IconFileUnknown } from './file-unknown.svelte';
2109
2115
  export { default as IconFileUpload } from './file-upload.svelte';
2110
2116
  export { default as IconFileVector } from './file-vector.svelte';
2117
+ export { default as IconFileWord } from './file-word.svelte';
2111
2118
  export { default as IconFileX } from './file-x.svelte';
2112
2119
  export { default as IconFileZip } from './file-zip.svelte';
2113
2120
  export { default as IconFile } from './file.svelte';
@@ -3254,6 +3261,7 @@ export { default as IconNumber } from './number.svelte';
3254
3261
  export { default as IconNumbers } from './numbers.svelte';
3255
3262
  export { default as IconNurse } from './nurse.svelte';
3256
3263
  export { default as IconNut } from './nut.svelte';
3264
+ export { default as IconObjectScan } from './object-scan.svelte';
3257
3265
  export { default as IconOctagonMinus2 } from './octagon-minus-2.svelte';
3258
3266
  export { default as IconOctagonMinus } from './octagon-minus.svelte';
3259
3267
  export { default as IconOctagonOff } from './octagon-off.svelte';
@@ -4192,6 +4200,9 @@ export { default as IconTank } from './tank.svelte';
4192
4200
  export { default as IconTargetArrow } from './target-arrow.svelte';
4193
4201
  export { default as IconTargetOff } from './target-off.svelte';
4194
4202
  export { default as IconTarget } from './target.svelte';
4203
+ export { default as IconTaxEuro } from './tax-euro.svelte';
4204
+ export { default as IconTaxPound } from './tax-pound.svelte';
4205
+ export { default as IconTax } from './tax.svelte';
4195
4206
  export { default as IconTeapot } from './teapot.svelte';
4196
4207
  export { default as IconTelescopeOff } from './telescope-off.svelte';
4197
4208
  export { default as IconTelescope } from './telescope.svelte';
@@ -4260,6 +4271,10 @@ export { default as IconTimelineEventText } from './timeline-event-text.svelte';
4260
4271
  export { default as IconTimelineEventX } from './timeline-event-x.svelte';
4261
4272
  export { default as IconTimelineEvent } from './timeline-event.svelte';
4262
4273
  export { default as IconTimeline } from './timeline.svelte';
4274
+ export { default as IconTimezone } from './timezone.svelte';
4275
+ export { default as IconTipJarEuro } from './tip-jar-euro.svelte';
4276
+ export { default as IconTipJarPound } from './tip-jar-pound.svelte';
4277
+ export { default as IconTipJar } from './tip-jar.svelte';
4263
4278
  export { default as IconTir } from './tir.svelte';
4264
4279
  export { default as IconToggleLeft } from './toggle-left.svelte';
4265
4280
  export { default as IconToggleRight } from './toggle-right.svelte';
@@ -4438,6 +4453,8 @@ export { default as IconView360 } from './view-360.svelte';
4438
4453
  export { default as IconViewfinderOff } from './viewfinder-off.svelte';
4439
4454
  export { default as IconViewfinder } from './viewfinder.svelte';
4440
4455
  export { default as IconViewportNarrow } from './viewport-narrow.svelte';
4456
+ export { default as IconViewportShort } from './viewport-short.svelte';
4457
+ export { default as IconViewportTall } from './viewport-tall.svelte';
4441
4458
  export { default as IconViewportWide } from './viewport-wide.svelte';
4442
4459
  export { default as IconVinyl } from './vinyl.svelte';
4443
4460
  export { default as IconVipOff } from './vip-off.svelte';
@@ -4821,6 +4838,7 @@ export { default as IconCircleNumber7Filled } from './circle-number-7-filled.sve
4821
4838
  export { default as IconCircleNumber8Filled } from './circle-number-8-filled.svelte';
4822
4839
  export { default as IconCircleNumber9Filled } from './circle-number-9-filled.svelte';
4823
4840
  export { default as IconCirclePercentageFilled } from './circle-percentage-filled.svelte';
4841
+ export { default as IconCirclePlusFilled } from './circle-plus-filled.svelte';
4824
4842
  export { default as IconCircleXFilled } from './circle-x-filled.svelte';
4825
4843
  export { default as IconCircleFilled } from './circle-filled.svelte';
4826
4844
  export { default as IconCirclesFilled } from './circles-filled.svelte';
@@ -322,6 +322,7 @@ export { default as IconAugmentedRealityOff } from './augmented-reality-off.svel
322
322
  export { default as IconAugmentedReality } from './augmented-reality.svelte';
323
323
  export { default as IconAuth2fa } from './auth-2fa.svelte';
324
324
  export { default as IconAutomaticGearbox } from './automatic-gearbox.svelte';
325
+ export { default as IconAutomation } from './automation.svelte';
325
326
  export { default as IconAvocado } from './avocado.svelte';
326
327
  export { default as IconAwardOff } from './award-off.svelte';
327
328
  export { default as IconAward } from './award.svelte';
@@ -1131,10 +1132,12 @@ export { default as IconChartArea } from './chart-area.svelte';
1131
1132
  export { default as IconChartArrowsVertical } from './chart-arrows-vertical.svelte';
1132
1133
  export { default as IconChartArrows } from './chart-arrows.svelte';
1133
1134
  export { default as IconChartBarOff } from './chart-bar-off.svelte';
1135
+ export { default as IconChartBarPopular } from './chart-bar-popular.svelte';
1134
1136
  export { default as IconChartBar } from './chart-bar.svelte';
1135
1137
  export { default as IconChartBubble } from './chart-bubble.svelte';
1136
1138
  export { default as IconChartCandle } from './chart-candle.svelte';
1137
1139
  export { default as IconChartCircles } from './chart-circles.svelte';
1140
+ export { default as IconChartCohort } from './chart-cohort.svelte';
1138
1141
  export { default as IconChartDonut2 } from './chart-donut-2.svelte';
1139
1142
  export { default as IconChartDonut3 } from './chart-donut-3.svelte';
1140
1143
  export { default as IconChartDonut4 } from './chart-donut-4.svelte';
@@ -1142,6 +1145,7 @@ export { default as IconChartDonut } from './chart-donut.svelte';
1142
1145
  export { default as IconChartDots2 } from './chart-dots-2.svelte';
1143
1146
  export { default as IconChartDots3 } from './chart-dots-3.svelte';
1144
1147
  export { default as IconChartDots } from './chart-dots.svelte';
1148
+ export { default as IconChartFunnel } from './chart-funnel.svelte';
1145
1149
  export { default as IconChartGridDots } from './chart-grid-dots.svelte';
1146
1150
  export { default as IconChartHistogram } from './chart-histogram.svelte';
1147
1151
  export { default as IconChartInfographic } from './chart-infographic.svelte';
@@ -1800,6 +1804,7 @@ export { default as IconDeviceTablet } from './device-tablet.svelte';
1800
1804
  export { default as IconDeviceTvOff } from './device-tv-off.svelte';
1801
1805
  export { default as IconDeviceTvOld } from './device-tv-old.svelte';
1802
1806
  export { default as IconDeviceTv } from './device-tv.svelte';
1807
+ export { default as IconDeviceUnknown } from './device-unknown.svelte';
1803
1808
  export { default as IconDeviceUsb } from './device-usb.svelte';
1804
1809
  export { default as IconDeviceVisionPro } from './device-vision-pro.svelte';
1805
1810
  export { default as IconDeviceWatchBolt } from './device-watch-bolt.svelte';
@@ -2045,6 +2050,7 @@ export { default as IconFileDollar } from './file-dollar.svelte';
2045
2050
  export { default as IconFileDots } from './file-dots.svelte';
2046
2051
  export { default as IconFileDownload } from './file-download.svelte';
2047
2052
  export { default as IconFileEuro } from './file-euro.svelte';
2053
+ export { default as IconFileExcel } from './file-excel.svelte';
2048
2054
  export { default as IconFileExport } from './file-export.svelte';
2049
2055
  export { default as IconFileFunction } from './file-function.svelte';
2050
2056
  export { default as IconFileHorizontal } from './file-horizontal.svelte';
@@ -2108,6 +2114,7 @@ export { default as IconFileTypography } from './file-typography.svelte';
2108
2114
  export { default as IconFileUnknown } from './file-unknown.svelte';
2109
2115
  export { default as IconFileUpload } from './file-upload.svelte';
2110
2116
  export { default as IconFileVector } from './file-vector.svelte';
2117
+ export { default as IconFileWord } from './file-word.svelte';
2111
2118
  export { default as IconFileX } from './file-x.svelte';
2112
2119
  export { default as IconFileZip } from './file-zip.svelte';
2113
2120
  export { default as IconFile } from './file.svelte';
@@ -3254,6 +3261,7 @@ export { default as IconNumber } from './number.svelte';
3254
3261
  export { default as IconNumbers } from './numbers.svelte';
3255
3262
  export { default as IconNurse } from './nurse.svelte';
3256
3263
  export { default as IconNut } from './nut.svelte';
3264
+ export { default as IconObjectScan } from './object-scan.svelte';
3257
3265
  export { default as IconOctagonMinus2 } from './octagon-minus-2.svelte';
3258
3266
  export { default as IconOctagonMinus } from './octagon-minus.svelte';
3259
3267
  export { default as IconOctagonOff } from './octagon-off.svelte';
@@ -4192,6 +4200,9 @@ export { default as IconTank } from './tank.svelte';
4192
4200
  export { default as IconTargetArrow } from './target-arrow.svelte';
4193
4201
  export { default as IconTargetOff } from './target-off.svelte';
4194
4202
  export { default as IconTarget } from './target.svelte';
4203
+ export { default as IconTaxEuro } from './tax-euro.svelte';
4204
+ export { default as IconTaxPound } from './tax-pound.svelte';
4205
+ export { default as IconTax } from './tax.svelte';
4195
4206
  export { default as IconTeapot } from './teapot.svelte';
4196
4207
  export { default as IconTelescopeOff } from './telescope-off.svelte';
4197
4208
  export { default as IconTelescope } from './telescope.svelte';
@@ -4260,6 +4271,10 @@ export { default as IconTimelineEventText } from './timeline-event-text.svelte';
4260
4271
  export { default as IconTimelineEventX } from './timeline-event-x.svelte';
4261
4272
  export { default as IconTimelineEvent } from './timeline-event.svelte';
4262
4273
  export { default as IconTimeline } from './timeline.svelte';
4274
+ export { default as IconTimezone } from './timezone.svelte';
4275
+ export { default as IconTipJarEuro } from './tip-jar-euro.svelte';
4276
+ export { default as IconTipJarPound } from './tip-jar-pound.svelte';
4277
+ export { default as IconTipJar } from './tip-jar.svelte';
4263
4278
  export { default as IconTir } from './tir.svelte';
4264
4279
  export { default as IconToggleLeft } from './toggle-left.svelte';
4265
4280
  export { default as IconToggleRight } from './toggle-right.svelte';
@@ -4438,6 +4453,8 @@ export { default as IconView360 } from './view-360.svelte';
4438
4453
  export { default as IconViewfinderOff } from './viewfinder-off.svelte';
4439
4454
  export { default as IconViewfinder } from './viewfinder.svelte';
4440
4455
  export { default as IconViewportNarrow } from './viewport-narrow.svelte';
4456
+ export { default as IconViewportShort } from './viewport-short.svelte';
4457
+ export { default as IconViewportTall } from './viewport-tall.svelte';
4441
4458
  export { default as IconViewportWide } from './viewport-wide.svelte';
4442
4459
  export { default as IconVinyl } from './vinyl.svelte';
4443
4460
  export { default as IconVipOff } from './vip-off.svelte';
@@ -4821,6 +4838,7 @@ export { default as IconCircleNumber7Filled } from './circle-number-7-filled.sve
4821
4838
  export { default as IconCircleNumber8Filled } from './circle-number-8-filled.svelte';
4822
4839
  export { default as IconCircleNumber9Filled } from './circle-number-9-filled.svelte';
4823
4840
  export { default as IconCirclePercentageFilled } from './circle-percentage-filled.svelte';
4841
+ export { default as IconCirclePlusFilled } from './circle-plus-filled.svelte';
4824
4842
  export { default as IconCircleXFilled } from './circle-x-filled.svelte';
4825
4843
  export { default as IconCircleFilled } from './circle-filled.svelte';
4826
4844
  export { default as IconCirclesFilled } from './circles-filled.svelte';
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 8v-2a2 2 0 0 1 2 -2h2" }], ["path", { "d": "M4 16v2a2 2 0 0 0 2 2h2" }], ["path", { "d": "M16 4h2a2 2 0 0 1 2 2v2" }], ["path", { "d": "M16 20h2a2 2 0 0 0 2 -2v-2" }], ["path", { "d": "M8 8m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z" }]];
3
+ </script>
4
+ <Icon type="outline" name="object-scan" {...$$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 ObjectScanProps = typeof __propDef.props;
13
+ export type ObjectScanEvents = typeof __propDef.events;
14
+ export type ObjectScanSlots = typeof __propDef.slots;
15
+ export default class ObjectScan extends SvelteComponentTyped<ObjectScanProps, ObjectScanEvents, ObjectScanSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8.487 21h7.026a4 4 0 0 0 3.808 -5.224l-1.706 -5.306a5 5 0 0 0 -4.76 -3.47h-1.71a5 5 0 0 0 -4.76 3.47l-1.706 5.306a4 4 0 0 0 3.808 5.224" }], ["path", { "d": "M15 3q -1 4 -3 4t -3 -4z" }], ["path", { "d": "M12 14h-3" }], ["path", { "d": "M14 11.172a3 3 0 1 0 0 5.656" }]];
3
+ </script>
4
+ <Icon type="outline" name="tax-euro" {...$$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 TaxEuroProps = typeof __propDef.props;
13
+ export type TaxEuroEvents = typeof __propDef.events;
14
+ export type TaxEuroSlots = typeof __propDef.slots;
15
+ export default class TaxEuro extends SvelteComponentTyped<TaxEuroProps, TaxEuroEvents, TaxEuroSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8.487 21h7.026a4 4 0 0 0 3.808 -5.224l-1.706 -5.306a5 5 0 0 0 -4.76 -3.47h-1.71a5 5 0 0 0 -4.76 3.47l-1.706 5.306a4 4 0 0 0 3.808 5.224" }], ["path", { "d": "M15 3q -1 4 -3 4t -3 -4z" }], ["path", { "d": "M14 11h-1a2 2 0 0 0 -2 2v2c0 1.105 -.395 2 -1.5 2h4.5" }], ["path", { "d": "M10 14h3" }]];
3
+ </script>
4
+ <Icon type="outline" name="tax-pound" {...$$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 TaxPoundProps = typeof __propDef.props;
13
+ export type TaxPoundEvents = typeof __propDef.events;
14
+ export type TaxPoundSlots = typeof __propDef.slots;
15
+ export default class TaxPound extends SvelteComponentTyped<TaxPoundProps, TaxPoundEvents, TaxPoundSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8.487 21h7.026a4 4 0 0 0 3.808 -5.224l-1.706 -5.306a5 5 0 0 0 -4.76 -3.47h-1.71a5 5 0 0 0 -4.76 3.47l-1.706 5.306a4 4 0 0 0 3.808 5.224" }], ["path", { "d": "M15 3q -1 4 -3 4t -3 -4z" }], ["path", { "d": "M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5" }], ["path", { "d": "M12 10v1" }], ["path", { "d": "M12 17v1" }]];
3
+ </script>
4
+ <Icon type="outline" name="tax" {...$$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 TaxProps = typeof __propDef.props;
13
+ export type TaxEvents = typeof __propDef.events;
14
+ export type TaxSlots = typeof __propDef.slots;
15
+ export default class Tax extends SvelteComponentTyped<TaxProps, TaxEvents, TaxSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M20.884 10.554a9 9 0 1 0 -10.337 10.328" }], ["path", { "d": "M3.6 9h16.8" }], ["path", { "d": "M3.6 15h6.9" }], ["path", { "d": "M11.5 3a17 17 0 0 0 -1.502 14.954" }], ["path", { "d": "M12.5 3a17 17 0 0 1 2.52 7.603" }], ["path", { "d": "M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" }], ["path", { "d": "M18 16.5v1.5l.5 .5" }]];
3
+ </script>
4
+ <Icon type="outline" name="timezone" {...$$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 TimezoneProps = typeof __propDef.props;
13
+ export type TimezoneEvents = typeof __propDef.events;
14
+ export type TimezoneSlots = typeof __propDef.slots;
15
+ export default class Timezone extends SvelteComponentTyped<TimezoneProps, TimezoneEvents, TimezoneSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 4v1.882c0 .685 .387 1.312 1 1.618s1 .933 1 1.618v8.882a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3v-8.882c0 -.685 .387 -1.312 1 -1.618s1 -.933 1 -1.618v-1.882" }], ["path", { "d": "M6 4h12z" }], ["path", { "d": "M12 13h-3" }], ["path", { "d": "M14 10.172a3 3 0 1 0 0 5.656" }]];
3
+ </script>
4
+ <Icon type="outline" name="tip-jar-euro" {...$$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 TipJarEuroProps = typeof __propDef.props;
13
+ export type TipJarEuroEvents = typeof __propDef.events;
14
+ export type TipJarEuroSlots = typeof __propDef.slots;
15
+ export default class TipJarEuro extends SvelteComponentTyped<TipJarEuroProps, TipJarEuroEvents, TipJarEuroSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 4v1.882c0 .685 .387 1.312 1 1.618s1 .933 1 1.618v8.882a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3v-8.882c0 -.685 .387 -1.312 1 -1.618s1 -.933 1 -1.618v-1.882" }], ["path", { "d": "M6 4h12z" }], ["path", { "d": "M14 10h-1a2 2 0 0 0 -2 2v2c0 1.105 -.395 2 -1.5 2h4.5" }], ["path", { "d": "M10 13h3" }]];
3
+ </script>
4
+ <Icon type="outline" name="tip-jar-pound" {...$$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 TipJarPoundProps = typeof __propDef.props;
13
+ export type TipJarPoundEvents = typeof __propDef.events;
14
+ export type TipJarPoundSlots = typeof __propDef.slots;
15
+ export default class TipJarPound extends SvelteComponentTyped<TipJarPoundProps, TipJarPoundEvents, TipJarPoundSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14 10h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5" }], ["path", { "d": "M12 9v1" }], ["path", { "d": "M12 16v1" }], ["path", { "d": "M17 4v1.882c0 .685 .387 1.312 1 1.618s1 .933 1 1.618v8.882a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3v-8.882c0 -.685 .387 -1.312 1 -1.618s1 -.933 1 -1.618v-1.882" }], ["path", { "d": "M6 4h12z" }]];
3
+ </script>
4
+ <Icon type="outline" name="tip-jar" {...$$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 TipJarProps = typeof __propDef.props;
13
+ export type TipJarEvents = typeof __propDef.events;
14
+ export type TipJarSlots = typeof __propDef.slots;
15
+ export default class TipJar extends SvelteComponentTyped<TipJarProps, TipJarEvents, TipJarSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M3 12h7l-3 -3m0 6l3 -3" }], ["path", { "d": "M21 12h-7l3 -3m0 6l-3 -3" }], ["path", { "d": "M9 6v-3h6v3" }], ["path", { "d": "M9 18v3h6v-3" }]];
2
+ const iconNode = [["path", { "d": "M3 12h7l-3 -3" }], ["path", { "d": "M7 15l3 -3" }], ["path", { "d": "M21 12h-7l3 -3" }], ["path", { "d": "M17 15l-3 -3" }], ["path", { "d": "M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1" }], ["path", { "d": "M9 18v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-1" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="viewport-narrow" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 3v7l3 -3" }], ["path", { "d": "M9 7l3 3" }], ["path", { "d": "M12 21v-7l3 3" }], ["path", { "d": "M9 17l3 -3" }], ["path", { "d": "M18 9h1a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-1" }], ["path", { "d": "M6 9h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h1" }]];
3
+ </script>
4
+ <Icon type="outline" name="viewport-short" {...$$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 ViewportShortProps = typeof __propDef.props;
13
+ export type ViewportShortEvents = typeof __propDef.events;
14
+ export type ViewportShortSlots = typeof __propDef.slots;
15
+ export default class ViewportShort extends SvelteComponentTyped<ViewportShortProps, ViewportShortEvents, ViewportShortSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 10v-7l3 3" }], ["path", { "d": "M9 6l3 -3" }], ["path", { "d": "M12 14v7l3 -3" }], ["path", { "d": "M9 18l3 3" }], ["path", { "d": "M18 3h1a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-1" }], ["path", { "d": "M6 3h-1a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h1" }]];
3
+ </script>
4
+ <Icon type="outline" name="viewport-tall" {...$$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 ViewportTallProps = typeof __propDef.props;
13
+ export type ViewportTallEvents = typeof __propDef.events;
14
+ export type ViewportTallSlots = typeof __propDef.slots;
15
+ export default class ViewportTall extends SvelteComponentTyped<ViewportTallProps, ViewportTallEvents, ViewportTallSlots> {
16
+ }
17
+ export {};
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M10 12h-7l3 -3m0 6l-3 -3" }], ["path", { "d": "M14 12h7l-3 -3m0 6l3 -3" }], ["path", { "d": "M3 6v-3h18v3" }], ["path", { "d": "M3 18v3h18v-3" }]];
2
+ const iconNode = [["path", { "d": "M10 12h-7l3 -3" }], ["path", { "d": "M6 15l-3 -3" }], ["path", { "d": "M14 12h7l-3 -3" }], ["path", { "d": "M18 15l3 -3" }], ["path", { "d": "M3 6v-1a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v1" }], ["path", { "d": "M3 18v1a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-1" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="viewport-wide" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -323,6 +323,7 @@ export default [
323
323
  "augmented-reality",
324
324
  "auth-2fa",
325
325
  "automatic-gearbox",
326
+ "automation",
326
327
  "avocado",
327
328
  "award-off",
328
329
  "award",
@@ -1132,10 +1133,12 @@ export default [
1132
1133
  "chart-arrows-vertical",
1133
1134
  "chart-arrows",
1134
1135
  "chart-bar-off",
1136
+ "chart-bar-popular",
1135
1137
  "chart-bar",
1136
1138
  "chart-bubble",
1137
1139
  "chart-candle",
1138
1140
  "chart-circles",
1141
+ "chart-cohort",
1139
1142
  "chart-donut-2",
1140
1143
  "chart-donut-3",
1141
1144
  "chart-donut-4",
@@ -1143,6 +1146,7 @@ export default [
1143
1146
  "chart-dots-2",
1144
1147
  "chart-dots-3",
1145
1148
  "chart-dots",
1149
+ "chart-funnel",
1146
1150
  "chart-grid-dots",
1147
1151
  "chart-histogram",
1148
1152
  "chart-infographic",
@@ -1801,6 +1805,7 @@ export default [
1801
1805
  "device-tv-off",
1802
1806
  "device-tv-old",
1803
1807
  "device-tv",
1808
+ "device-unknown",
1804
1809
  "device-usb",
1805
1810
  "device-vision-pro",
1806
1811
  "device-watch-bolt",
@@ -2046,6 +2051,7 @@ export default [
2046
2051
  "file-dots",
2047
2052
  "file-download",
2048
2053
  "file-euro",
2054
+ "file-excel",
2049
2055
  "file-export",
2050
2056
  "file-function",
2051
2057
  "file-horizontal",
@@ -2109,6 +2115,7 @@ export default [
2109
2115
  "file-unknown",
2110
2116
  "file-upload",
2111
2117
  "file-vector",
2118
+ "file-word",
2112
2119
  "file-x",
2113
2120
  "file-zip",
2114
2121
  "file",
@@ -3255,6 +3262,7 @@ export default [
3255
3262
  "numbers",
3256
3263
  "nurse",
3257
3264
  "nut",
3265
+ "object-scan",
3258
3266
  "octagon-minus-2",
3259
3267
  "octagon-minus",
3260
3268
  "octagon-off",
@@ -4193,6 +4201,9 @@ export default [
4193
4201
  "target-arrow",
4194
4202
  "target-off",
4195
4203
  "target",
4204
+ "tax-euro",
4205
+ "tax-pound",
4206
+ "tax",
4196
4207
  "teapot",
4197
4208
  "telescope-off",
4198
4209
  "telescope",
@@ -4261,6 +4272,10 @@ export default [
4261
4272
  "timeline-event-x",
4262
4273
  "timeline-event",
4263
4274
  "timeline",
4275
+ "timezone",
4276
+ "tip-jar-euro",
4277
+ "tip-jar-pound",
4278
+ "tip-jar",
4264
4279
  "tir",
4265
4280
  "toggle-left",
4266
4281
  "toggle-right",
@@ -4439,6 +4454,8 @@ export default [
4439
4454
  "viewfinder-off",
4440
4455
  "viewfinder",
4441
4456
  "viewport-narrow",
4457
+ "viewport-short",
4458
+ "viewport-tall",
4442
4459
  "viewport-wide",
4443
4460
  "vinyl",
4444
4461
  "vip-off",
@@ -4822,6 +4839,7 @@ export default [
4822
4839
  "circle-number-8-filled",
4823
4840
  "circle-number-9-filled",
4824
4841
  "circle-percentage-filled",
4842
+ "circle-plus-filled",
4825
4843
  "circle-x-filled",
4826
4844
  "circle-filled",
4827
4845
  "circles-filled",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.4.0",
3
+ "version": "3.5.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.",
@@ -1325,6 +1325,10 @@
1325
1325
  "types": "./dist/icons/automatic-gearbox.svelte.d.ts",
1326
1326
  "svelte": "./dist/icons/automatic-gearbox.svelte"
1327
1327
  },
1328
+ "./IconAutomation.svelte": {
1329
+ "types": "./dist/icons/automation.svelte.d.ts",
1330
+ "svelte": "./dist/icons/automation.svelte"
1331
+ },
1328
1332
  "./IconAvocado.svelte": {
1329
1333
  "types": "./dist/icons/avocado.svelte.d.ts",
1330
1334
  "svelte": "./dist/icons/avocado.svelte"
@@ -4561,6 +4565,10 @@
4561
4565
  "types": "./dist/icons/chart-bar-off.svelte.d.ts",
4562
4566
  "svelte": "./dist/icons/chart-bar-off.svelte"
4563
4567
  },
4568
+ "./IconChartBarPopular.svelte": {
4569
+ "types": "./dist/icons/chart-bar-popular.svelte.d.ts",
4570
+ "svelte": "./dist/icons/chart-bar-popular.svelte"
4571
+ },
4564
4572
  "./IconChartBar.svelte": {
4565
4573
  "types": "./dist/icons/chart-bar.svelte.d.ts",
4566
4574
  "svelte": "./dist/icons/chart-bar.svelte"
@@ -4577,6 +4585,10 @@
4577
4585
  "types": "./dist/icons/chart-circles.svelte.d.ts",
4578
4586
  "svelte": "./dist/icons/chart-circles.svelte"
4579
4587
  },
4588
+ "./IconChartCohort.svelte": {
4589
+ "types": "./dist/icons/chart-cohort.svelte.d.ts",
4590
+ "svelte": "./dist/icons/chart-cohort.svelte"
4591
+ },
4580
4592
  "./IconChartDonut2.svelte": {
4581
4593
  "types": "./dist/icons/chart-donut-2.svelte.d.ts",
4582
4594
  "svelte": "./dist/icons/chart-donut-2.svelte"
@@ -4605,6 +4617,10 @@
4605
4617
  "types": "./dist/icons/chart-dots.svelte.d.ts",
4606
4618
  "svelte": "./dist/icons/chart-dots.svelte"
4607
4619
  },
4620
+ "./IconChartFunnel.svelte": {
4621
+ "types": "./dist/icons/chart-funnel.svelte.d.ts",
4622
+ "svelte": "./dist/icons/chart-funnel.svelte"
4623
+ },
4608
4624
  "./IconChartGridDots.svelte": {
4609
4625
  "types": "./dist/icons/chart-grid-dots.svelte.d.ts",
4610
4626
  "svelte": "./dist/icons/chart-grid-dots.svelte"
@@ -7237,6 +7253,10 @@
7237
7253
  "types": "./dist/icons/device-tv.svelte.d.ts",
7238
7254
  "svelte": "./dist/icons/device-tv.svelte"
7239
7255
  },
7256
+ "./IconDeviceUnknown.svelte": {
7257
+ "types": "./dist/icons/device-unknown.svelte.d.ts",
7258
+ "svelte": "./dist/icons/device-unknown.svelte"
7259
+ },
7240
7260
  "./IconDeviceUsb.svelte": {
7241
7261
  "types": "./dist/icons/device-usb.svelte.d.ts",
7242
7262
  "svelte": "./dist/icons/device-usb.svelte"
@@ -8217,6 +8237,10 @@
8217
8237
  "types": "./dist/icons/file-euro.svelte.d.ts",
8218
8238
  "svelte": "./dist/icons/file-euro.svelte"
8219
8239
  },
8240
+ "./IconFileExcel.svelte": {
8241
+ "types": "./dist/icons/file-excel.svelte.d.ts",
8242
+ "svelte": "./dist/icons/file-excel.svelte"
8243
+ },
8220
8244
  "./IconFileExport.svelte": {
8221
8245
  "types": "./dist/icons/file-export.svelte.d.ts",
8222
8246
  "svelte": "./dist/icons/file-export.svelte"
@@ -8469,6 +8493,10 @@
8469
8493
  "types": "./dist/icons/file-vector.svelte.d.ts",
8470
8494
  "svelte": "./dist/icons/file-vector.svelte"
8471
8495
  },
8496
+ "./IconFileWord.svelte": {
8497
+ "types": "./dist/icons/file-word.svelte.d.ts",
8498
+ "svelte": "./dist/icons/file-word.svelte"
8499
+ },
8472
8500
  "./IconFileX.svelte": {
8473
8501
  "types": "./dist/icons/file-x.svelte.d.ts",
8474
8502
  "svelte": "./dist/icons/file-x.svelte"
@@ -13053,6 +13081,10 @@
13053
13081
  "types": "./dist/icons/nut.svelte.d.ts",
13054
13082
  "svelte": "./dist/icons/nut.svelte"
13055
13083
  },
13084
+ "./IconObjectScan.svelte": {
13085
+ "types": "./dist/icons/object-scan.svelte.d.ts",
13086
+ "svelte": "./dist/icons/object-scan.svelte"
13087
+ },
13056
13088
  "./IconOctagonMinus2.svelte": {
13057
13089
  "types": "./dist/icons/octagon-minus-2.svelte.d.ts",
13058
13090
  "svelte": "./dist/icons/octagon-minus-2.svelte"
@@ -16805,6 +16837,18 @@
16805
16837
  "types": "./dist/icons/target.svelte.d.ts",
16806
16838
  "svelte": "./dist/icons/target.svelte"
16807
16839
  },
16840
+ "./IconTaxEuro.svelte": {
16841
+ "types": "./dist/icons/tax-euro.svelte.d.ts",
16842
+ "svelte": "./dist/icons/tax-euro.svelte"
16843
+ },
16844
+ "./IconTaxPound.svelte": {
16845
+ "types": "./dist/icons/tax-pound.svelte.d.ts",
16846
+ "svelte": "./dist/icons/tax-pound.svelte"
16847
+ },
16848
+ "./IconTax.svelte": {
16849
+ "types": "./dist/icons/tax.svelte.d.ts",
16850
+ "svelte": "./dist/icons/tax.svelte"
16851
+ },
16808
16852
  "./IconTeapot.svelte": {
16809
16853
  "types": "./dist/icons/teapot.svelte.d.ts",
16810
16854
  "svelte": "./dist/icons/teapot.svelte"
@@ -17077,6 +17121,22 @@
17077
17121
  "types": "./dist/icons/timeline.svelte.d.ts",
17078
17122
  "svelte": "./dist/icons/timeline.svelte"
17079
17123
  },
17124
+ "./IconTimezone.svelte": {
17125
+ "types": "./dist/icons/timezone.svelte.d.ts",
17126
+ "svelte": "./dist/icons/timezone.svelte"
17127
+ },
17128
+ "./IconTipJarEuro.svelte": {
17129
+ "types": "./dist/icons/tip-jar-euro.svelte.d.ts",
17130
+ "svelte": "./dist/icons/tip-jar-euro.svelte"
17131
+ },
17132
+ "./IconTipJarPound.svelte": {
17133
+ "types": "./dist/icons/tip-jar-pound.svelte.d.ts",
17134
+ "svelte": "./dist/icons/tip-jar-pound.svelte"
17135
+ },
17136
+ "./IconTipJar.svelte": {
17137
+ "types": "./dist/icons/tip-jar.svelte.d.ts",
17138
+ "svelte": "./dist/icons/tip-jar.svelte"
17139
+ },
17080
17140
  "./IconTir.svelte": {
17081
17141
  "types": "./dist/icons/tir.svelte.d.ts",
17082
17142
  "svelte": "./dist/icons/tir.svelte"
@@ -17789,6 +17849,14 @@
17789
17849
  "types": "./dist/icons/viewport-narrow.svelte.d.ts",
17790
17850
  "svelte": "./dist/icons/viewport-narrow.svelte"
17791
17851
  },
17852
+ "./IconViewportShort.svelte": {
17853
+ "types": "./dist/icons/viewport-short.svelte.d.ts",
17854
+ "svelte": "./dist/icons/viewport-short.svelte"
17855
+ },
17856
+ "./IconViewportTall.svelte": {
17857
+ "types": "./dist/icons/viewport-tall.svelte.d.ts",
17858
+ "svelte": "./dist/icons/viewport-tall.svelte"
17859
+ },
17792
17860
  "./IconViewportWide.svelte": {
17793
17861
  "types": "./dist/icons/viewport-wide.svelte.d.ts",
17794
17862
  "svelte": "./dist/icons/viewport-wide.svelte"
@@ -19321,6 +19389,10 @@
19321
19389
  "types": "./dist/icons/circle-percentage-filled.svelte.d.ts",
19322
19390
  "svelte": "./dist/icons/circle-percentage-filled.svelte"
19323
19391
  },
19392
+ "./IconCirclePlusFilled.svelte": {
19393
+ "types": "./dist/icons/circle-plus-filled.svelte.d.ts",
19394
+ "svelte": "./dist/icons/circle-plus-filled.svelte"
19395
+ },
19324
19396
  "./IconCircleXFilled.svelte": {
19325
19397
  "types": "./dist/icons/circle-x-filled.svelte.d.ts",
19326
19398
  "svelte": "./dist/icons/circle-x-filled.svelte"
@@ -21128,7 +21200,7 @@
21128
21200
  "imports-check": "attw $(npm pack)"
21129
21201
  },
21130
21202
  "dependencies": {
21131
- "@tabler/icons": "3.4.0"
21203
+ "@tabler/icons": "3.5.0"
21132
21204
  },
21133
21205
  "devDependencies": {
21134
21206
  "@sveltejs/package": "^2.2.7",