@tabler/icons-svelte 3.28.0 → 3.29.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 (42) hide show
  1. package/dist/Icon.svelte.d.ts +3 -3
  2. package/dist/icons/current-location-filled.svelte +6 -0
  3. package/dist/icons/current-location-filled.svelte.d.ts +17 -0
  4. package/dist/icons/exposure-filled.svelte +6 -0
  5. package/dist/icons/exposure-filled.svelte.d.ts +17 -0
  6. package/dist/icons/eye-table-filled.svelte +6 -0
  7. package/dist/icons/eye-table-filled.svelte.d.ts +17 -0
  8. package/dist/icons/eyeglass-2-filled.svelte +6 -0
  9. package/dist/icons/eyeglass-2-filled.svelte.d.ts +17 -0
  10. package/dist/icons/face-mask-filled.svelte +6 -0
  11. package/dist/icons/face-mask-filled.svelte.d.ts +17 -0
  12. package/dist/icons/fence-filled.svelte +6 -0
  13. package/dist/icons/fence-filled.svelte.d.ts +17 -0
  14. package/dist/icons/fidget-spinner-filled.svelte +6 -0
  15. package/dist/icons/fidget-spinner-filled.svelte.d.ts +17 -0
  16. package/dist/icons/file-description-filled.svelte +6 -0
  17. package/dist/icons/file-description-filled.svelte.d.ts +17 -0
  18. package/dist/icons/file-digit-filled.svelte +6 -0
  19. package/dist/icons/file-digit-filled.svelte.d.ts +17 -0
  20. package/dist/icons/file-horizontal-filled.svelte +6 -0
  21. package/dist/icons/file-horizontal-filled.svelte.d.ts +17 -0
  22. package/dist/icons/file-invoice-filled.svelte +6 -0
  23. package/dist/icons/file-invoice-filled.svelte.d.ts +17 -0
  24. package/dist/icons/file-minus-filled.svelte +6 -0
  25. package/dist/icons/file-minus-filled.svelte.d.ts +17 -0
  26. package/dist/icons/file-neutral-filled.svelte +6 -0
  27. package/dist/icons/file-neutral-filled.svelte.d.ts +17 -0
  28. package/dist/icons/file-power-filled.svelte +6 -0
  29. package/dist/icons/file-power-filled.svelte.d.ts +17 -0
  30. package/dist/icons/file-sad-filled.svelte +6 -0
  31. package/dist/icons/file-sad-filled.svelte.d.ts +17 -0
  32. package/dist/icons/file-smile-filled.svelte +6 -0
  33. package/dist/icons/file-smile-filled.svelte.d.ts +17 -0
  34. package/dist/icons/file-star-filled.svelte +6 -0
  35. package/dist/icons/file-star-filled.svelte.d.ts +17 -0
  36. package/dist/icons/file-text-filled.svelte +6 -0
  37. package/dist/icons/file-text-filled.svelte.d.ts +17 -0
  38. package/dist/icons/index.d.ts +18 -0
  39. package/dist/icons/index.js +18 -0
  40. package/dist/icons-list.js +18 -0
  41. package/dist/types.d.ts +1 -1
  42. package/package.json +2 -2
@@ -3,11 +3,11 @@ import type { IconNode } from './types';
3
3
  declare const __propDef: {
4
4
  props: {
5
5
  [x: string]: any;
6
- type: 'outline' | 'filled';
6
+ type: "outline" | "filled";
7
7
  name: string;
8
8
  color?: string | undefined;
9
- size?: string | number | undefined;
10
- stroke?: string | number | undefined;
9
+ size?: number | string | undefined;
10
+ stroke?: number | string | undefined;
11
11
  iconNode: IconNode;
12
12
  };
13
13
  events: {
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 1a1 1 0 0 1 1 1v1.055a9.004 9.004 0 0 1 7.946 7.945h1.054a1 1 0 0 1 0 2h-1.055a9.004 9.004 0 0 1 -7.944 7.945l-.001 1.055a1 1 0 0 1 -2 0v-1.055a9.004 9.004 0 0 1 -7.945 -7.944l-1.055 -.001a1 1 0 0 1 0 -2h1.055a9.004 9.004 0 0 1 7.945 -7.945v-1.055a1 1 0 0 1 1 -1m0 4a7 7 0 1 0 0 14a7 7 0 0 0 0 -14m0 3a4 4 0 1 1 -4 4l.005 -.2a4 4 0 0 1 3.995 -3.8" }]];
3
+ </script>
4
+ <Icon type="filled" name="current-location-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 CurrentLocationFilledProps = typeof __propDef.props;
13
+ export type CurrentLocationFilledEvents = typeof __propDef.events;
14
+ export type CurrentLocationFilledSlots = typeof __propDef.slots;
15
+ export default class CurrentLocationFilled extends SvelteComponentTyped<CurrentLocationFilledProps, CurrentLocationFilledEvents, CurrentLocationFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M19 2a3 3 0 0 1 3 3v14a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm0 2h-14a1 1 0 0 0 -1 1v14c0 .29 .123 .55 .321 .732l1.61 -1.584a973 973 0 0 0 6.69 -6.675l7.094 -7.173a1 1 0 0 0 -.715 -.3m-1 11h-4a1 1 0 0 0 0 2h4a1 1 0 0 0 0 -2m-10 -10a1 1 0 0 1 1 1v1h1a1 1 0 0 1 .993 .883l.007 .117a1 1 0 0 1 -1 1h-1v1a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -1 -1v-1h-1a1 1 0 0 1 -.993 -.883l-.007 -.117a1 1 0 0 1 1 -1h1v-1a1 1 0 0 1 .883 -.993z" }]];
3
+ </script>
4
+ <Icon type="filled" name="exposure-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 ExposureFilledProps = typeof __propDef.props;
13
+ export type ExposureFilledEvents = typeof __propDef.events;
14
+ export type ExposureFilledSlots = typeof __propDef.slots;
15
+ export default class ExposureFilled extends SvelteComponentTyped<ExposureFilledProps, ExposureFilledEvents, ExposureFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M20 2a1 1 0 0 1 0 2v16a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16a1 1 0 1 1 0 -2zm-12 15l-.128 .007a1 1 0 0 0 .118 1.993l.128 -.007a1 1 0 0 0 -.118 -1.993m4 0l-.128 .007a1 1 0 0 0 .118 1.993l.128 -.007a1 1 0 0 0 -.118 -1.993m4 0l-.128 .007a1 1 0 0 0 .118 1.993l.128 -.007a1 1 0 0 0 -.118 -1.993m-6 -3h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0 -2m5 0h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0 -2m-1 -8h-4a1 1 0 1 0 0 2h1v3a1 1 0 0 0 2 0v-3h1a1 1 0 0 0 0 -2" }]];
3
+ </script>
4
+ <Icon type="filled" name="eye-table-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 EyeTableFilledProps = typeof __propDef.props;
13
+ export type EyeTableFilledEvents = typeof __propDef.events;
14
+ export type EyeTableFilledSlots = typeof __propDef.slots;
15
+ export default class EyeTableFilled extends SvelteComponentTyped<EyeTableFilledProps, EyeTableFilledEvents, EyeTableFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8 3a1 1 0 1 1 0 2h-1.257l-2.24 7.467a4.5 4.5 0 0 1 6.24 2.533h2.513a4.502 4.502 0 0 1 6.241 -2.534l-2.241 -7.466h-1.256a1 1 0 0 1 -.993 -.883l-.007 -.117a1 1 0 0 1 1 -1h2a1 1 0 0 1 .958 .713l3 10a1 1 0 0 1 .042 .287v2.5a4.5 4.5 0 0 1 -8.972 .5h-2.056a4.5 4.5 0 0 1 -8.972 -.5v-2.5a1 1 0 0 1 .042 -.287l3 -10a1 1 0 0 1 .958 -.713z" }]];
3
+ </script>
4
+ <Icon type="filled" name="eyeglass-2-filled" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type Eyeglass_2FilledProps = typeof __propDef.props;
13
+ export type Eyeglass_2FilledEvents = typeof __propDef.events;
14
+ export type Eyeglass_2FilledSlots = typeof __propDef.slots;
15
+ export default class Eyeglass_2Filled extends SvelteComponentTyped<Eyeglass_2FilledProps, Eyeglass_2FilledEvents, Eyeglass_2FilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12.825 4.196l5 1.43a3 3 0 0 1 2.175 2.884v.065c1.7 .33 3 1.72 3 3.425s-1.3 3.095 -3 3.425v.066a3 3 0 0 1 -2.175 2.885l-5 1.428a3 3 0 0 1 -1.65 0l-5 -1.429a3 3 0 0 1 -2.17 -2.702l-.005 -.247c-1.7 -.33 -3 -1.72 -3 -3.426c0 -1.705 1.3 -3.096 3 -3.426v-.064a3 3 0 0 1 2.175 -2.884l5 -1.428a3 3 0 0 1 1.65 0m2.175 8.802h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0 -2m-11 -2.349c-.6 .248 -1 .77 -1 1.349c0 .578 .4 1.101 1 1.349zm16.001 0v2.697c.599 -.248 .999 -.77 .999 -1.348s-.4 -1.1 -.999 -1.348m-5.001 -1.652h-6a1 1 0 1 0 0 2h6a1 1 0 0 0 0 -2" }]];
3
+ </script>
4
+ <Icon type="filled" name="face-mask-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 FaceMaskFilledProps = typeof __propDef.props;
13
+ export type FaceMaskFilledEvents = typeof __propDef.events;
14
+ export type FaceMaskFilledSlots = typeof __propDef.slots;
15
+ export default class FaceMaskFilled extends SvelteComponentTyped<FaceMaskFilledProps, FaceMaskFilledEvents, FaceMaskFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M19 17v3a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-3z" }], ["path", { "d": "M11 17v3a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-3z" }], ["path", { "d": "M20 12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z" }], ["path", { "d": "M8.707 3.293l2 2a1 1 0 0 1 .293 .707v5h-6v-5a1 1 0 0 1 .293 -.707l2 -2a1 1 0 0 1 1.414 0" }], ["path", { "d": "M16.707 3.293l2 2a1 1 0 0 1 .293 .707v5h-6v-5a1 1 0 0 1 .293 -.707l2 -2a1 1 0 0 1 1.414 0" }]];
3
+ </script>
4
+ <Icon type="filled" name="fence-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 FenceFilledProps = typeof __propDef.props;
13
+ export type FenceFilledEvents = typeof __propDef.events;
14
+ export type FenceFilledSlots = typeof __propDef.slots;
15
+ export default class FenceFilled extends SvelteComponentTyped<FenceFilledProps, FenceFilledEvents, FenceFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 0a5 5 0 0 1 3.584 8.488l-.012 .012a5 5 0 0 1 1.33 2.517l.018 .101l.251 -.048q .15 -.025 .3 -.041l.304 -.024l.225 -.005a5 5 0 1 1 -4.89 6.046l-.032 -.164l-.24 .048a5 5 0 0 1 -.556 .062l-.282 .008q -.427 0 -.84 -.07l-.239 -.048l-.004 .025a5 5 0 0 1 -3.331 3.834l-.22 .068a5 5 0 1 1 -.461 -9.728l.173 .036l.019 -.102c.19 -.95 .653 -1.824 1.331 -2.516l-.05 -.052a5.02 5.02 0 0 1 -1.355 -2.978l-.018 -.244l-.005 -.225a5 5 0 0 1 5 -5m6 15a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1m-12 0a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1m6 -4.995c-1.1 0 -1.99 .891 -1.99 1.99v.02a1.99 1.99 0 0 0 3.98 0v-.02a1.99 1.99 0 0 0 -1.99 -1.99m0 -6.005a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1" }]];
3
+ </script>
4
+ <Icon type="filled" name="fidget-spinner-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 FidgetSpinnerFilledProps = typeof __propDef.props;
13
+ export type FidgetSpinnerFilledEvents = typeof __propDef.events;
14
+ export type FidgetSpinnerFilledSlots = typeof __propDef.slots;
15
+ export default class FidgetSpinnerFilled extends SvelteComponentTyped<FidgetSpinnerFilledProps, FidgetSpinnerFilledEvents, FidgetSpinnerFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm3 14h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0 -2m0 -4h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0 -2" }], ["path", { "d": "M19 7h-4l-.001 -4.001z" }]];
3
+ </script>
4
+ <Icon type="filled" name="file-description-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 FileDescriptionFilledProps = typeof __propDef.props;
13
+ export type FileDescriptionFilledEvents = typeof __propDef.events;
14
+ export type FileDescriptionFilledSlots = typeof __propDef.slots;
15
+ export default class FileDescriptionFilled extends SvelteComponentTyped<FileDescriptionFilledProps, FileDescriptionFilledEvents, FileDescriptionFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm-1 9h-1a2 2 0 0 0 -2 2v3a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2m4 0a1 1 0 0 0 -1 1v5a1 1 0 0 0 2 0v-5a1 1 0 0 0 -1 -1m-4 2v3h-1v-3z" }], ["path", { "d": "M19 7h-4l-.001 -4.001z" }]];
3
+ </script>
4
+ <Icon type="filled" name="file-digit-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 FileDigitFilledProps = typeof __propDef.props;
13
+ export type FileDigitFilledEvents = typeof __propDef.events;
14
+ export type FileDigitFilledSlots = typeof __propDef.slots;
15
+ export default class FileDigitFilled extends SvelteComponentTyped<FileDigitFilledProps, FileDigitFilledEvents, FileDigitFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M22 12l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007h-4l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-4l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007h-9a3 3 0 0 0 -2.995 2.824l-.005 .176v10a3 3 0 0 0 2.824 2.995l.176 .005h14a3 3 0 0 0 2.995 -2.824l.005 -.176z" }], ["path", { "d": "M17 5v4l4.001 .001z" }]];
3
+ </script>
4
+ <Icon type="filled" name="file-horizontal-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 FileHorizontalFilledProps = typeof __propDef.props;
13
+ export type FileHorizontalFilledEvents = typeof __propDef.events;
14
+ export type FileHorizontalFilledSlots = typeof __propDef.slots;
15
+ export default class FileHorizontalFilled extends SvelteComponentTyped<FileHorizontalFilledProps, FileHorizontalFilledEvents, FileHorizontalFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm4 15h-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0 -2m0 -4h-8a1 1 0 0 0 0 2h8a1 1 0 0 0 0 -2m-7 -7h-1a1 1 0 1 0 0 2h1a1 1 0 1 0 0 -2" }], ["path", { "d": "M19 7h-4l-.001 -4.001z" }]];
3
+ </script>
4
+ <Icon type="filled" name="file-invoice-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 FileInvoiceFilledProps = typeof __propDef.props;
13
+ export type FileInvoiceFilledEvents = typeof __propDef.events;
14
+ export type FileInvoiceFilledSlots = typeof __propDef.slots;
15
+ export default class FileInvoiceFilled extends SvelteComponentTyped<FileInvoiceFilledProps, FileInvoiceFilledEvents, FileInvoiceFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm3 11h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0 -2" }], ["path", { "d": "M19 7h-4l-.001 -4.001z" }]];
3
+ </script>
4
+ <Icon type="filled" name="file-minus-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 FileMinusFilledProps = typeof __propDef.props;
13
+ export type FileMinusFilledEvents = typeof __propDef.events;
14
+ export type FileMinusFilledSlots = typeof __propDef.slots;
15
+ export default class FileMinusFilled extends SvelteComponentTyped<FileMinusFilledProps, FileMinusFilledEvents, FileMinusFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm2 14h-4a1 1 0 0 0 0 2h4a1 1 0 0 0 0 -2m-3.995 -4h-.01a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2m4 0h-.01a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2" }], ["path", { "d": "M19 7h-4l-.001 -4.001z" }]];
3
+ </script>
4
+ <Icon type="filled" name="file-neutral-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 FileNeutralFilledProps = typeof __propDef.props;
13
+ export type FileNeutralFilledEvents = typeof __propDef.events;
14
+ export type FileNeutralFilledSlots = typeof __propDef.slots;
15
+ export default class FileNeutralFilled extends SvelteComponentTyped<FileNeutralFilledProps, FileNeutralFilledEvents, FileNeutralFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm.555 9.168a1 1 0 0 0 -1.387 .277l-2 3l-.057 .097a1 1 0 0 0 .889 1.458h2.13l-.962 1.445a1 1 0 1 0 1.664 1.11l2 -3l.057 -.097a1 1 0 0 0 -.889 -1.458h-2.132l.964 -1.445a1 1 0 0 0 -.277 -1.387" }], ["path", { "d": "M19 7h-4l-.001 -4.001z" }]];
3
+ </script>
4
+ <Icon type="filled" name="file-power-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 FilePowerFilledProps = typeof __propDef.props;
13
+ export type FilePowerFilledEvents = typeof __propDef.events;
14
+ export type FilePowerFilledSlots = typeof __propDef.slots;
15
+ export default class FilePowerFilled extends SvelteComponentTyped<FilePowerFilledProps, FilePowerFilledEvents, FilePowerFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm2.571 15.18a4.5 4.5 0 0 0 -5.142 0a1 1 0 1 0 1.142 1.64a2.5 2.5 0 0 1 2.858 0a1 1 0 0 0 1.142 -1.64m-4.565 -5.18h-.011a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2m4 0h-.011a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2" }], ["path", { "d": "M19 7h-4l-.001 -4.001z" }]];
3
+ </script>
4
+ <Icon type="filled" name="file-sad-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 FileSadFilledProps = typeof __propDef.props;
13
+ export type FileSadFilledEvents = typeof __propDef.events;
14
+ export type FileSadFilledSlots = typeof __propDef.slots;
15
+ export default class FileSadFilled extends SvelteComponentTyped<FileSadFilledProps, FileSadFilledEvents, FileSadFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm2.82 14.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392m-4.815 -4.429h-.01a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2m4 0h-.01a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2" }], ["path", { "d": "M19 7h-4l-.001 -4.001z" }]];
3
+ </script>
4
+ <Icon type="filled" name="file-smile-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 FileSmileFilledProps = typeof __propDef.props;
13
+ export type FileSmileFilledEvents = typeof __propDef.events;
14
+ export type FileSmileFilledSlots = typeof __propDef.slots;
15
+ export default class FileSmileFilled extends SvelteComponentTyped<FileSmileFilledProps, FileSmileFilledEvents, FileSmileFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm-.2 9a.39 .39 0 0 0 -.351 .217l-1.086 2.193l-2.428 .352a.389 .389 0 0 0 -.217 .665l1.757 1.707l-.415 2.411a.392 .392 0 0 0 .568 .41l2.172 -1.138l2.172 1.138a.39 .39 0 0 0 .567 -.411l-.414 -2.41l1.757 -1.707a.39 .39 0 0 0 -.217 -.665l-2.428 -.352l-1.086 -2.193a.39 .39 0 0 0 -.351 -.217" }], ["path", { "d": "M19 7h-4l-.001 -4.001z" }]];
3
+ </script>
4
+ <Icon type="filled" name="file-star-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 FileStarFilledProps = typeof __propDef.props;
13
+ export type FileStarFilledEvents = typeof __propDef.events;
14
+ export type FileStarFilledSlots = typeof __propDef.slots;
15
+ export default class FileStarFilled extends SvelteComponentTyped<FileStarFilledProps, FileStarFilledEvents, FileStarFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005zm3 14h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0 -2m0 -4h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0 -2m-5 -4h-1a1 1 0 1 0 0 2h1a1 1 0 0 0 0 -2" }], ["path", { "d": "M19 7h-4l-.001 -4.001z" }]];
3
+ </script>
4
+ <Icon type="filled" name="file-text-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 FileTextFilledProps = typeof __propDef.props;
13
+ export type FileTextFilledEvents = typeof __propDef.events;
14
+ export type FileTextFilledSlots = typeof __propDef.slots;
15
+ export default class FileTextFilled extends SvelteComponentTyped<FileTextFilledProps, FileTextFilledEvents, FileTextFilledSlots> {
16
+ }
17
+ export {};
@@ -5303,6 +5303,7 @@ export { default as IconCrop75Filled } from './crop-7-5-filled.svelte';
5303
5303
  export { default as IconCropLandscapeFilled } from './crop-landscape-filled.svelte';
5304
5304
  export { default as IconCropPortraitFilled } from './crop-portrait-filled.svelte';
5305
5305
  export { default as IconCrossFilled } from './cross-filled.svelte';
5306
+ export { default as IconCurrentLocationFilled } from './current-location-filled.svelte';
5306
5307
  export { default as IconDashboardFilled } from './dashboard-filled.svelte';
5307
5308
  export { default as IconDeviceCctvFilled } from './device-cctv-filled.svelte';
5308
5309
  export { default as IconDeviceDesktopFilled } from './device-desktop-filled.svelte';
@@ -5344,11 +5345,28 @@ export { default as IconEggFilled } from './egg-filled.svelte';
5344
5345
  export { default as IconElevatorFilled } from './elevator-filled.svelte';
5345
5346
  export { default as IconEngineFilled } from './engine-filled.svelte';
5346
5347
  export { default as IconExclamationCircleFilled } from './exclamation-circle-filled.svelte';
5348
+ export { default as IconExposureFilled } from './exposure-filled.svelte';
5349
+ export { default as IconEyeTableFilled } from './eye-table-filled.svelte';
5347
5350
  export { default as IconEyeFilled } from './eye-filled.svelte';
5351
+ export { default as IconEyeglass2Filled } from './eyeglass-2-filled.svelte';
5348
5352
  export { default as IconEyeglassFilled } from './eyeglass-filled.svelte';
5353
+ export { default as IconFaceMaskFilled } from './face-mask-filled.svelte';
5349
5354
  export { default as IconFaviconFilled } from './favicon-filled.svelte';
5350
5355
  export { default as IconFeatherFilled } from './feather-filled.svelte';
5356
+ export { default as IconFenceFilled } from './fence-filled.svelte';
5351
5357
  export { default as IconFerryFilled } from './ferry-filled.svelte';
5358
+ export { default as IconFidgetSpinnerFilled } from './fidget-spinner-filled.svelte';
5359
+ export { default as IconFileDescriptionFilled } from './file-description-filled.svelte';
5360
+ export { default as IconFileDigitFilled } from './file-digit-filled.svelte';
5361
+ export { default as IconFileHorizontalFilled } from './file-horizontal-filled.svelte';
5362
+ export { default as IconFileInvoiceFilled } from './file-invoice-filled.svelte';
5363
+ export { default as IconFileMinusFilled } from './file-minus-filled.svelte';
5364
+ export { default as IconFileNeutralFilled } from './file-neutral-filled.svelte';
5365
+ export { default as IconFilePowerFilled } from './file-power-filled.svelte';
5366
+ export { default as IconFileSadFilled } from './file-sad-filled.svelte';
5367
+ export { default as IconFileSmileFilled } from './file-smile-filled.svelte';
5368
+ export { default as IconFileStarFilled } from './file-star-filled.svelte';
5369
+ export { default as IconFileTextFilled } from './file-text-filled.svelte';
5352
5370
  export { default as IconFileXFilled } from './file-x-filled.svelte';
5353
5371
  export { default as IconFileFilled } from './file-filled.svelte';
5354
5372
  export { default as IconFilterFilled } from './filter-filled.svelte';
@@ -5303,6 +5303,7 @@ export { default as IconCrop75Filled } from './crop-7-5-filled.svelte';
5303
5303
  export { default as IconCropLandscapeFilled } from './crop-landscape-filled.svelte';
5304
5304
  export { default as IconCropPortraitFilled } from './crop-portrait-filled.svelte';
5305
5305
  export { default as IconCrossFilled } from './cross-filled.svelte';
5306
+ export { default as IconCurrentLocationFilled } from './current-location-filled.svelte';
5306
5307
  export { default as IconDashboardFilled } from './dashboard-filled.svelte';
5307
5308
  export { default as IconDeviceCctvFilled } from './device-cctv-filled.svelte';
5308
5309
  export { default as IconDeviceDesktopFilled } from './device-desktop-filled.svelte';
@@ -5344,11 +5345,28 @@ export { default as IconEggFilled } from './egg-filled.svelte';
5344
5345
  export { default as IconElevatorFilled } from './elevator-filled.svelte';
5345
5346
  export { default as IconEngineFilled } from './engine-filled.svelte';
5346
5347
  export { default as IconExclamationCircleFilled } from './exclamation-circle-filled.svelte';
5348
+ export { default as IconExposureFilled } from './exposure-filled.svelte';
5349
+ export { default as IconEyeTableFilled } from './eye-table-filled.svelte';
5347
5350
  export { default as IconEyeFilled } from './eye-filled.svelte';
5351
+ export { default as IconEyeglass2Filled } from './eyeglass-2-filled.svelte';
5348
5352
  export { default as IconEyeglassFilled } from './eyeglass-filled.svelte';
5353
+ export { default as IconFaceMaskFilled } from './face-mask-filled.svelte';
5349
5354
  export { default as IconFaviconFilled } from './favicon-filled.svelte';
5350
5355
  export { default as IconFeatherFilled } from './feather-filled.svelte';
5356
+ export { default as IconFenceFilled } from './fence-filled.svelte';
5351
5357
  export { default as IconFerryFilled } from './ferry-filled.svelte';
5358
+ export { default as IconFidgetSpinnerFilled } from './fidget-spinner-filled.svelte';
5359
+ export { default as IconFileDescriptionFilled } from './file-description-filled.svelte';
5360
+ export { default as IconFileDigitFilled } from './file-digit-filled.svelte';
5361
+ export { default as IconFileHorizontalFilled } from './file-horizontal-filled.svelte';
5362
+ export { default as IconFileInvoiceFilled } from './file-invoice-filled.svelte';
5363
+ export { default as IconFileMinusFilled } from './file-minus-filled.svelte';
5364
+ export { default as IconFileNeutralFilled } from './file-neutral-filled.svelte';
5365
+ export { default as IconFilePowerFilled } from './file-power-filled.svelte';
5366
+ export { default as IconFileSadFilled } from './file-sad-filled.svelte';
5367
+ export { default as IconFileSmileFilled } from './file-smile-filled.svelte';
5368
+ export { default as IconFileStarFilled } from './file-star-filled.svelte';
5369
+ export { default as IconFileTextFilled } from './file-text-filled.svelte';
5352
5370
  export { default as IconFileXFilled } from './file-x-filled.svelte';
5353
5371
  export { default as IconFileFilled } from './file-filled.svelte';
5354
5372
  export { default as IconFilterFilled } from './filter-filled.svelte';
@@ -5304,6 +5304,7 @@ export default [
5304
5304
  "crop-landscape-filled",
5305
5305
  "crop-portrait-filled",
5306
5306
  "cross-filled",
5307
+ "current-location-filled",
5307
5308
  "dashboard-filled",
5308
5309
  "device-cctv-filled",
5309
5310
  "device-desktop-filled",
@@ -5345,11 +5346,28 @@ export default [
5345
5346
  "elevator-filled",
5346
5347
  "engine-filled",
5347
5348
  "exclamation-circle-filled",
5349
+ "exposure-filled",
5350
+ "eye-table-filled",
5348
5351
  "eye-filled",
5352
+ "eyeglass-2-filled",
5349
5353
  "eyeglass-filled",
5354
+ "face-mask-filled",
5350
5355
  "favicon-filled",
5351
5356
  "feather-filled",
5357
+ "fence-filled",
5352
5358
  "ferry-filled",
5359
+ "fidget-spinner-filled",
5360
+ "file-description-filled",
5361
+ "file-digit-filled",
5362
+ "file-horizontal-filled",
5363
+ "file-invoice-filled",
5364
+ "file-minus-filled",
5365
+ "file-neutral-filled",
5366
+ "file-power-filled",
5367
+ "file-sad-filled",
5368
+ "file-smile-filled",
5369
+ "file-star-filled",
5370
+ "file-text-filled",
5353
5371
  "file-x-filled",
5354
5372
  "file-filled",
5355
5373
  "filter-filled",
package/dist/types.d.ts CHANGED
@@ -14,5 +14,5 @@ type IconEvents = {
14
14
  type IconSlots = {
15
15
  default: {};
16
16
  };
17
- export type Icon = SvelteComponent<IconProps, IconEvents, IconSlots>;
17
+ export type Icon = typeof SvelteComponent<IconProps, IconEvents, IconSlots>;
18
18
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.28.0",
3
+ "version": "3.29.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": "workspace:*"
52
+ "@tabler/icons": "3.29.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@sveltejs/package": "^2.2.7",