@tabler/icons-svelte 3.31.0 → 3.32.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 (58) hide show
  1. package/dist/icons/arrow-bar-to-down-dashed.svelte +6 -0
  2. package/dist/icons/arrow-bar-to-down-dashed.svelte.d.ts +17 -0
  3. package/dist/icons/arrow-bar-to-left-dashed.svelte +6 -0
  4. package/dist/icons/arrow-bar-to-left-dashed.svelte.d.ts +17 -0
  5. package/dist/icons/arrow-bar-to-right-dashed.svelte +6 -0
  6. package/dist/icons/arrow-bar-to-right-dashed.svelte.d.ts +17 -0
  7. package/dist/icons/arrow-bar-to-up-dashed.svelte +6 -0
  8. package/dist/icons/arrow-bar-to-up-dashed.svelte.d.ts +17 -0
  9. package/dist/icons/chalkboard-teacher.svelte +6 -0
  10. package/dist/icons/chalkboard-teacher.svelte.d.ts +17 -0
  11. package/dist/icons/filter-2-bolt.svelte +6 -0
  12. package/dist/icons/filter-2-bolt.svelte.d.ts +17 -0
  13. package/dist/icons/filter-2-cancel.svelte +6 -0
  14. package/dist/icons/filter-2-cancel.svelte.d.ts +17 -0
  15. package/dist/icons/filter-2-check.svelte +6 -0
  16. package/dist/icons/filter-2-check.svelte.d.ts +17 -0
  17. package/dist/icons/filter-2-code.svelte +6 -0
  18. package/dist/icons/filter-2-code.svelte.d.ts +17 -0
  19. package/dist/icons/filter-2-cog.svelte +6 -0
  20. package/dist/icons/filter-2-cog.svelte.d.ts +17 -0
  21. package/dist/icons/filter-2-discount.svelte +6 -0
  22. package/dist/icons/filter-2-discount.svelte.d.ts +17 -0
  23. package/dist/icons/filter-2-dollar.svelte +6 -0
  24. package/dist/icons/filter-2-dollar.svelte.d.ts +17 -0
  25. package/dist/icons/filter-2-down.svelte +6 -0
  26. package/dist/icons/filter-2-down.svelte.d.ts +17 -0
  27. package/dist/icons/filter-2-edit.svelte +6 -0
  28. package/dist/icons/filter-2-edit.svelte.d.ts +17 -0
  29. package/dist/icons/filter-2-exclamation.svelte +6 -0
  30. package/dist/icons/filter-2-exclamation.svelte.d.ts +17 -0
  31. package/dist/icons/filter-2-minus.svelte +6 -0
  32. package/dist/icons/filter-2-minus.svelte.d.ts +17 -0
  33. package/dist/icons/filter-2-pause.svelte +6 -0
  34. package/dist/icons/filter-2-pause.svelte.d.ts +17 -0
  35. package/dist/icons/filter-2-pin.svelte +6 -0
  36. package/dist/icons/filter-2-pin.svelte.d.ts +17 -0
  37. package/dist/icons/filter-2-plus.svelte +6 -0
  38. package/dist/icons/filter-2-plus.svelte.d.ts +17 -0
  39. package/dist/icons/filter-2-question.svelte +6 -0
  40. package/dist/icons/filter-2-question.svelte.d.ts +17 -0
  41. package/dist/icons/filter-2-search.svelte +6 -0
  42. package/dist/icons/filter-2-search.svelte.d.ts +17 -0
  43. package/dist/icons/filter-2-share.svelte +6 -0
  44. package/dist/icons/filter-2-share.svelte.d.ts +17 -0
  45. package/dist/icons/filter-2-spark.svelte +6 -0
  46. package/dist/icons/filter-2-spark.svelte.d.ts +17 -0
  47. package/dist/icons/filter-2-up.svelte +6 -0
  48. package/dist/icons/filter-2-up.svelte.d.ts +17 -0
  49. package/dist/icons/filter-2-x.svelte +6 -0
  50. package/dist/icons/filter-2-x.svelte.d.ts +17 -0
  51. package/dist/icons/filter-2.svelte +6 -0
  52. package/dist/icons/filter-2.svelte.d.ts +17 -0
  53. package/dist/icons/filter-spark.svelte +6 -0
  54. package/dist/icons/filter-spark.svelte.d.ts +17 -0
  55. package/dist/icons/index.d.ts +27 -0
  56. package/dist/icons/index.js +27 -0
  57. package/dist/icons-list.js +27 -0
  58. package/package.json +2 -2
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 14v-10" }], ["path", { "d": "M12 14l4 -4" }], ["path", { "d": "M12 14l-4 -4" }], ["path", { "d": "M4 20h3m13 0h-3m-3.5 0h-3" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-bar-to-down-dashed" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type ArrowBarToDownDashedProps = typeof __propDef.props;
13
+ export type ArrowBarToDownDashedEvents = typeof __propDef.events;
14
+ export type ArrowBarToDownDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowBarToDownDashed extends SvelteComponentTyped<ArrowBarToDownDashedProps, ArrowBarToDownDashedEvents, ArrowBarToDownDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M10 12l10 0" }], ["path", { "d": "M10 12l4 -4" }], ["path", { "d": "M10 12l4 4" }], ["path", { "d": "M4 20l0 -3m0 -13l0 3m0 3.5l0 3" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-bar-to-left-dashed" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type ArrowBarToLeftDashedProps = typeof __propDef.props;
13
+ export type ArrowBarToLeftDashedEvents = typeof __propDef.events;
14
+ export type ArrowBarToLeftDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowBarToLeftDashed extends SvelteComponentTyped<ArrowBarToLeftDashedProps, ArrowBarToLeftDashedEvents, ArrowBarToLeftDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M14 12l-10 0" }], ["path", { "d": "M14 12l-4 4" }], ["path", { "d": "M14 12l-4 -4" }], ["path", { "d": "M20 4l0 3m0 13l0 -3m0 -3.5l0 -3" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-bar-to-right-dashed" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type ArrowBarToRightDashedProps = typeof __propDef.props;
13
+ export type ArrowBarToRightDashedEvents = typeof __propDef.events;
14
+ export type ArrowBarToRightDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowBarToRightDashed extends SvelteComponentTyped<ArrowBarToRightDashedProps, ArrowBarToRightDashedEvents, ArrowBarToRightDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M12 10v10" }], ["path", { "d": "M12 10l4 4" }], ["path", { "d": "M12 10l-4 4" }], ["path", { "d": "M4 4h3m13 0h-3m-3.5 0h-3" }]];
3
+ </script>
4
+ <Icon type="outline" name="arrow-bar-to-up-dashed" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type ArrowBarToUpDashedProps = typeof __propDef.props;
13
+ export type ArrowBarToUpDashedEvents = typeof __propDef.events;
14
+ export type ArrowBarToUpDashedSlots = typeof __propDef.slots;
15
+ export default class ArrowBarToUpDashed extends SvelteComponentTyped<ArrowBarToUpDashedProps, ArrowBarToUpDashedEvents, ArrowBarToUpDashedSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1" }], ["path", { "d": "M12 14a2 2 0 1 0 4.001 -.001a2 2 0 0 0 -4.001 .001" }], ["path", { "d": "M17 19a2 2 0 0 0 -2 -2h-2a2 2 0 0 0 -2 2" }]];
3
+ </script>
4
+ <Icon type="outline" name="chalkboard-teacher" {...$$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 ChalkboardTeacherProps = typeof __propDef.props;
13
+ export type ChalkboardTeacherEvents = typeof __propDef.events;
14
+ export type ChalkboardTeacherSlots = typeof __propDef.slots;
15
+ export default class ChalkboardTeacher extends SvelteComponentTyped<ChalkboardTeacherProps, ChalkboardTeacherEvents, ChalkboardTeacherSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h4" }], ["path", { "d": "M19 16l-2 3h4l-2 3" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-bolt" {...$$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 Filter_2BoltProps = typeof __propDef.props;
13
+ export type Filter_2BoltEvents = typeof __propDef.events;
14
+ export type Filter_2BoltSlots = typeof __propDef.slots;
15
+ export default class Filter_2Bolt extends SvelteComponentTyped<Filter_2BoltProps, Filter_2BoltEvents, Filter_2BoltSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h3" }], ["path", { "d": "M17 21l4 -4m-5 2c0 .796 .316 1.559 .879 2.121c.563 .563 1.326 .879 2.121 .879c.796 0 1.559 -.316 2.121 -.879c.563 -.563 .879 -1.326 .879 -2.121c0 -.796 -.316 -1.559 -.879 -2.121c-.563 -.563 -1.326 -.879 -2.121 -.879c-.796 0 -1.559 .316 -2.121 .879c-.563 .563 -.879 1.326 -.879 2.121z" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-cancel" {...$$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 Filter_2CancelProps = typeof __propDef.props;
13
+ export type Filter_2CancelEvents = typeof __propDef.events;
14
+ export type Filter_2CancelSlots = typeof __propDef.slots;
15
+ export default class Filter_2Cancel extends SvelteComponentTyped<Filter_2CancelProps, Filter_2CancelEvents, Filter_2CancelSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h2" }], ["path", { "d": "M15 18l2 2l4 -4" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-check" {...$$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 Filter_2CheckProps = typeof __propDef.props;
13
+ export type Filter_2CheckEvents = typeof __propDef.events;
14
+ export type Filter_2CheckSlots = typeof __propDef.slots;
15
+ export default class Filter_2Check extends SvelteComponentTyped<Filter_2CheckProps, Filter_2CheckEvents, Filter_2CheckSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h2" }], ["path", { "d": "M17 17l-2 2l2 2" }], ["path", { "d": "M20 21l2 -2l-2 -2" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-code" {...$$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 Filter_2CodeProps = typeof __propDef.props;
13
+ export type Filter_2CodeEvents = typeof __propDef.events;
14
+ export type Filter_2CodeSlots = typeof __propDef.slots;
15
+ export default class Filter_2Code extends SvelteComponentTyped<Filter_2CodeProps, Filter_2CodeEvents, Filter_2CodeSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h3" }], ["path", { "d": "M19.001 21c-.53 0 -1.039 -.211 -1.414 -.586c-.375 -.375 -.586 -.884 -.586 -1.414c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586m0 4c.53 0 1.039 -.211 1.414 -.586c.375 -.375 .586 -.884 .586 -1.414c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586m0 4v1.5m0 -5.5v-1.5m3.031 1.75l-1.299 .75m-3.463 2l-1.3 .75m0 -3.5l1.3 .75m3.463 2l1.3 .75" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-cog" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type Filter_2CogProps = typeof __propDef.props;
13
+ export type Filter_2CogEvents = typeof __propDef.events;
14
+ export type Filter_2CogSlots = typeof __propDef.slots;
15
+ export default class Filter_2Cog extends SvelteComponentTyped<Filter_2CogProps, Filter_2CogEvents, Filter_2CogSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h3" }], ["path", { "d": "M16 16v.01" }], ["path", { "d": "M16 21l5 -5" }], ["path", { "d": "M21 21v.01" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-discount" {...$$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 Filter_2DiscountProps = typeof __propDef.props;
13
+ export type Filter_2DiscountEvents = typeof __propDef.events;
14
+ export type Filter_2DiscountSlots = typeof __propDef.slots;
15
+ export default class Filter_2Discount extends SvelteComponentTyped<Filter_2DiscountProps, Filter_2DiscountEvents, Filter_2DiscountSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h10" }], ["path", { "d": "M9 18h4" }], ["path", { "d": "M21 15h-2m-2 6h2m0 0v1m0 -1h.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 -.439h-1c-.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.5m0 -1v1" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-dollar" {...$$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 Filter_2DollarProps = typeof __propDef.props;
13
+ export type Filter_2DollarEvents = typeof __propDef.events;
14
+ export type Filter_2DollarSlots = typeof __propDef.slots;
15
+ export default class Filter_2Dollar extends SvelteComponentTyped<Filter_2DollarProps, Filter_2DollarEvents, Filter_2DollarSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h3" }], ["path", { "d": "M19 16v6" }], ["path", { "d": "M19 22l3 -3" }], ["path", { "d": "M19 22l-3 -3" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-down" {...$$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 Filter_2DownProps = typeof __propDef.props;
13
+ export type Filter_2DownEvents = typeof __propDef.events;
14
+ export type Filter_2DownSlots = typeof __propDef.slots;
15
+ export default class Filter_2Down extends SvelteComponentTyped<Filter_2DownProps, Filter_2DownEvents, Filter_2DownSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h11" }], ["path", { "d": "M9 18h2" }], ["path", { "d": "M18.42 15.61c.195 -.195 .426 -.35 .681 -.455c.255 -.106 .528 -.16 .804 -.16c.276 0 .549 .054 .804 .16c.255 .106 .486 .26 .681 .455c.195 .195 .35 .427 .455 .681c.106 .255 .16 .528 .16 .804c0 .276 -.054 .549 -.16 .804c-.105 .255 -.26 .486 -.455 .681l-3.39 3.42h-3v-3l3.42 -3.39z" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-edit" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type Filter_2EditProps = typeof __propDef.props;
13
+ export type Filter_2EditEvents = typeof __propDef.events;
14
+ export type Filter_2EditSlots = typeof __propDef.slots;
15
+ export default class Filter_2Edit extends SvelteComponentTyped<Filter_2EditProps, Filter_2EditEvents, Filter_2EditSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h6" }], ["path", { "d": "M19 16v3m0 3v.01" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-exclamation" {...$$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 Filter_2ExclamationProps = typeof __propDef.props;
13
+ export type Filter_2ExclamationEvents = typeof __propDef.events;
14
+ export type Filter_2ExclamationSlots = typeof __propDef.slots;
15
+ export default class Filter_2Exclamation extends SvelteComponentTyped<Filter_2ExclamationProps, Filter_2ExclamationEvents, Filter_2ExclamationSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h3" }], ["path", { "d": "M16 19h6" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-minus" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type Filter_2MinusProps = typeof __propDef.props;
13
+ export type Filter_2MinusEvents = typeof __propDef.events;
14
+ export type Filter_2MinusSlots = typeof __propDef.slots;
15
+ export default class Filter_2Minus extends SvelteComponentTyped<Filter_2MinusProps, Filter_2MinusEvents, Filter_2MinusSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h4" }], ["path", { "d": "M17 17v5" }], ["path", { "d": "M21 17v5" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-pause" {...$$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 Filter_2PauseProps = typeof __propDef.props;
13
+ export type Filter_2PauseEvents = typeof __propDef.events;
14
+ export type Filter_2PauseSlots = typeof __propDef.slots;
15
+ export default class Filter_2Pause extends SvelteComponentTyped<Filter_2PauseProps, Filter_2PauseEvents, Filter_2PauseSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h10" }], ["path", { "d": "M9 18h3" }], ["path", { "d": "M19 18v.01m2.121 2.111c.42 -.419 .706 -.954 .821 -1.536c.116 -.582 .056 -1.185 -.17 -1.733c-.227 -.548 -.611 -1.017 -1.105 -1.347c-.493 -.33 -1.073 -.506 -1.667 -.506c-.593 0 -1.173 .176 -1.667 .506c-.493 .33 -.878 .798 -1.105 1.347c-.227 .548 -.286 1.151 -.17 1.733c.116 .582 .402 1.116 .821 1.536c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-pin" {...$$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 Filter_2PinProps = typeof __propDef.props;
13
+ export type Filter_2PinEvents = typeof __propDef.events;
14
+ export type Filter_2PinSlots = typeof __propDef.slots;
15
+ export default class Filter_2Pin extends SvelteComponentTyped<Filter_2PinProps, Filter_2PinEvents, Filter_2PinSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h10" }], ["path", { "d": "M9 18h3" }], ["path", { "d": "M19 15v6" }], ["path", { "d": "M16 18h6" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-plus" {...$$props} iconNode={iconNode}>
5
+ <slot/>
6
+ </Icon>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ import type { IconProps } from '../types.js';
3
+ declare const __propDef: {
4
+ props: IconProps;
5
+ events: {
6
+ [evt: string]: CustomEvent<any>;
7
+ };
8
+ slots: {
9
+ default: {};
10
+ };
11
+ };
12
+ export type Filter_2PlusProps = typeof __propDef.props;
13
+ export type Filter_2PlusEvents = typeof __propDef.events;
14
+ export type Filter_2PlusSlots = typeof __propDef.slots;
15
+ export default class Filter_2Plus extends SvelteComponentTyped<Filter_2PlusProps, Filter_2PlusEvents, Filter_2PlusSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h10.5" }], ["path", { "d": "M9 18h5" }], ["path", { "d": "M19 22v.01" }], ["path", { "d": "M19 19c.448 -.001 .883 -.153 1.235 -.431c.352 -.278 .6 -.666 .706 -1.101c.105 -.436 .061 -.894 -.125 -1.302c-.186 -.408 -.504 -.742 -.902 -.948c-.398 -.204 -.853 -.267 -1.291 -.179c-.438 .088 -.834 .321 -1.123 .662" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-question" {...$$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 Filter_2QuestionProps = typeof __propDef.props;
13
+ export type Filter_2QuestionEvents = typeof __propDef.events;
14
+ export type Filter_2QuestionSlots = typeof __propDef.slots;
15
+ export default class Filter_2Question extends SvelteComponentTyped<Filter_2QuestionProps, Filter_2QuestionEvents, Filter_2QuestionSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h8.5" }], ["path", { "d": "M9 18h2" }], ["path", { "d": "M15 18c0 .796 .316 1.559 .879 2.121c.563 .563 1.326 .879 2.121 .879c.796 0 1.559 -.316 2.121 -.879c.563 -.563 .879 -1.326 .879 -2.121c0 -.796 -.316 -1.559 -.879 -2.121c-.563 -.563 -1.326 -.879 -2.121 -.879c-.796 0 -1.559 .316 -2.121 .879c-.563 .563 -.879 1.326 -.879 2.121z" }], ["path", { "d": "M20.2 20.2l1.8 1.8" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-search" {...$$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 Filter_2SearchProps = typeof __propDef.props;
13
+ export type Filter_2SearchEvents = typeof __propDef.events;
14
+ export type Filter_2SearchSlots = typeof __propDef.slots;
15
+ export default class Filter_2Search extends SvelteComponentTyped<Filter_2SearchProps, Filter_2SearchEvents, Filter_2SearchSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h3.5" }], ["path", { "d": "M16 22l5 -5" }], ["path", { "d": "M21 17v4.5" }], ["path", { "d": "M21 17h-4.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-share" {...$$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 Filter_2ShareProps = typeof __propDef.props;
13
+ export type Filter_2ShareEvents = typeof __propDef.events;
14
+ export type Filter_2ShareSlots = typeof __propDef.slots;
15
+ export default class Filter_2Share extends SvelteComponentTyped<Filter_2ShareProps, Filter_2ShareEvents, Filter_2ShareSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h9.5" }], ["path", { "d": "M9 18h2.5" }], ["path", { "d": "M19 21.5c.205 -.849 .641 -1.625 1.258 -2.242c.617 -.617 1.393 -1.053 2.242 -1.258c-.849 -.205 -1.625 -.641 -2.242 -1.258c-.617 -.617 -1.053 -1.393 -1.258 -2.242c-.205 .849 -.641 1.625 -1.258 2.242c-.617 .617 -1.393 1.053 -2.242 1.258c.849 .205 1.625 .641 2.242 1.258c.617 .617 1.053 1.393 1.258 2.242z" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-spark" {...$$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 Filter_2SparkProps = typeof __propDef.props;
13
+ export type Filter_2SparkEvents = typeof __propDef.events;
14
+ export type Filter_2SparkSlots = typeof __propDef.slots;
15
+ export default class Filter_2Spark extends SvelteComponentTyped<Filter_2SparkProps, Filter_2SparkEvents, Filter_2SparkSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h3" }], ["path", { "d": "M19 22v-6m0 0l3 3m-3 -3l-3 3" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-up" {...$$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 Filter_2UpProps = typeof __propDef.props;
13
+ export type Filter_2UpEvents = typeof __propDef.events;
14
+ export type Filter_2UpSlots = typeof __propDef.slots;
15
+ export default class Filter_2Up extends SvelteComponentTyped<Filter_2UpProps, Filter_2UpEvents, Filter_2UpSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h4" }], ["path", { "d": "M22 22l-5 -5m0 5l5 -5" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2-x" {...$$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 Filter_2XProps = typeof __propDef.props;
13
+ export type Filter_2XEvents = typeof __propDef.events;
14
+ export type Filter_2XSlots = typeof __propDef.slots;
15
+ export default class Filter_2X extends SvelteComponentTyped<Filter_2XProps, Filter_2XEvents, Filter_2XSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 6h16" }], ["path", { "d": "M6 12h12" }], ["path", { "d": "M9 18h6" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-2" {...$$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 Filter_2Props = typeof __propDef.props;
13
+ export type Filter_2Events = typeof __propDef.events;
14
+ export type Filter_2Slots = typeof __propDef.slots;
15
+ export default class Filter_2 extends SvelteComponentTyped<Filter_2Props, Filter_2Events, Filter_2Slots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M15 12.5v-.5l4.414 -4.414a2 2 0 0 0 .586 -1.414v-2.172h-16v2.227c0 .497 .185 .977 .52 1.345l4.48 4.928v8.5l2 -.667" }], ["path", { "d": "M18.5 22a4.75 4.75 0 0 1 3.5 -3.5a4.75 4.75 0 0 1 -3.5 -3.5a4.75 4.75 0 0 1 -3.5 3.5a4.75 4.75 0 0 1 3.5 3.5" }]];
3
+ </script>
4
+ <Icon type="outline" name="filter-spark" {...$$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 FilterSparkProps = typeof __propDef.props;
13
+ export type FilterSparkEvents = typeof __propDef.events;
14
+ export type FilterSparkSlots = typeof __propDef.slots;
15
+ export default class FilterSpark extends SvelteComponentTyped<FilterSparkProps, FilterSparkEvents, FilterSparkSlots> {
16
+ }
17
+ export {};
@@ -155,9 +155,13 @@ export { default as IconArrowBarBoth } from './arrow-bar-both.svelte';
155
155
  export { default as IconArrowBarDown } from './arrow-bar-down.svelte';
156
156
  export { default as IconArrowBarLeft } from './arrow-bar-left.svelte';
157
157
  export { default as IconArrowBarRight } from './arrow-bar-right.svelte';
158
+ export { default as IconArrowBarToDownDashed } from './arrow-bar-to-down-dashed.svelte';
158
159
  export { default as IconArrowBarToDown } from './arrow-bar-to-down.svelte';
160
+ export { default as IconArrowBarToLeftDashed } from './arrow-bar-to-left-dashed.svelte';
159
161
  export { default as IconArrowBarToLeft } from './arrow-bar-to-left.svelte';
162
+ export { default as IconArrowBarToRightDashed } from './arrow-bar-to-right-dashed.svelte';
160
163
  export { default as IconArrowBarToRight } from './arrow-bar-to-right.svelte';
164
+ export { default as IconArrowBarToUpDashed } from './arrow-bar-to-up-dashed.svelte';
161
165
  export { default as IconArrowBarToUp } from './arrow-bar-to-up.svelte';
162
166
  export { default as IconArrowBarUp } from './arrow-bar-up.svelte';
163
167
  export { default as IconArrowBearLeft2 } from './arrow-bear-left-2.svelte';
@@ -1204,6 +1208,7 @@ export { default as IconCertificateOff } from './certificate-off.svelte';
1204
1208
  export { default as IconCertificate } from './certificate.svelte';
1205
1209
  export { default as IconChairDirector } from './chair-director.svelte';
1206
1210
  export { default as IconChalkboardOff } from './chalkboard-off.svelte';
1211
+ export { default as IconChalkboardTeacher } from './chalkboard-teacher.svelte';
1207
1212
  export { default as IconChalkboard } from './chalkboard.svelte';
1208
1213
  export { default as IconChargingPile } from './charging-pile.svelte';
1209
1214
  export { default as IconChartArcs3 } from './chart-arcs-3.svelte';
@@ -2274,6 +2279,27 @@ export { default as IconFileZip } from './file-zip.svelte';
2274
2279
  export { default as IconFile } from './file.svelte';
2275
2280
  export { default as IconFilesOff } from './files-off.svelte';
2276
2281
  export { default as IconFiles } from './files.svelte';
2282
+ export { default as IconFilter2Bolt } from './filter-2-bolt.svelte';
2283
+ export { default as IconFilter2Cancel } from './filter-2-cancel.svelte';
2284
+ export { default as IconFilter2Check } from './filter-2-check.svelte';
2285
+ export { default as IconFilter2Code } from './filter-2-code.svelte';
2286
+ export { default as IconFilter2Cog } from './filter-2-cog.svelte';
2287
+ export { default as IconFilter2Discount } from './filter-2-discount.svelte';
2288
+ export { default as IconFilter2Dollar } from './filter-2-dollar.svelte';
2289
+ export { default as IconFilter2Down } from './filter-2-down.svelte';
2290
+ export { default as IconFilter2Edit } from './filter-2-edit.svelte';
2291
+ export { default as IconFilter2Exclamation } from './filter-2-exclamation.svelte';
2292
+ export { default as IconFilter2Minus } from './filter-2-minus.svelte';
2293
+ export { default as IconFilter2Pause } from './filter-2-pause.svelte';
2294
+ export { default as IconFilter2Pin } from './filter-2-pin.svelte';
2295
+ export { default as IconFilter2Plus } from './filter-2-plus.svelte';
2296
+ export { default as IconFilter2Question } from './filter-2-question.svelte';
2297
+ export { default as IconFilter2Search } from './filter-2-search.svelte';
2298
+ export { default as IconFilter2Share } from './filter-2-share.svelte';
2299
+ export { default as IconFilter2Spark } from './filter-2-spark.svelte';
2300
+ export { default as IconFilter2Up } from './filter-2-up.svelte';
2301
+ export { default as IconFilter2X } from './filter-2-x.svelte';
2302
+ export { default as IconFilter2 } from './filter-2.svelte';
2277
2303
  export { default as IconFilterBolt } from './filter-bolt.svelte';
2278
2304
  export { default as IconFilterCancel } from './filter-cancel.svelte';
2279
2305
  export { default as IconFilterCheck } from './filter-check.svelte';
@@ -2293,6 +2319,7 @@ export { default as IconFilterPlus } from './filter-plus.svelte';
2293
2319
  export { default as IconFilterQuestion } from './filter-question.svelte';
2294
2320
  export { default as IconFilterSearch } from './filter-search.svelte';
2295
2321
  export { default as IconFilterShare } from './filter-share.svelte';
2322
+ export { default as IconFilterSpark } from './filter-spark.svelte';
2296
2323
  export { default as IconFilterStar } from './filter-star.svelte';
2297
2324
  export { default as IconFilterUp } from './filter-up.svelte';
2298
2325
  export { default as IconFilterX } from './filter-x.svelte';
@@ -155,9 +155,13 @@ export { default as IconArrowBarBoth } from './arrow-bar-both.svelte';
155
155
  export { default as IconArrowBarDown } from './arrow-bar-down.svelte';
156
156
  export { default as IconArrowBarLeft } from './arrow-bar-left.svelte';
157
157
  export { default as IconArrowBarRight } from './arrow-bar-right.svelte';
158
+ export { default as IconArrowBarToDownDashed } from './arrow-bar-to-down-dashed.svelte';
158
159
  export { default as IconArrowBarToDown } from './arrow-bar-to-down.svelte';
160
+ export { default as IconArrowBarToLeftDashed } from './arrow-bar-to-left-dashed.svelte';
159
161
  export { default as IconArrowBarToLeft } from './arrow-bar-to-left.svelte';
162
+ export { default as IconArrowBarToRightDashed } from './arrow-bar-to-right-dashed.svelte';
160
163
  export { default as IconArrowBarToRight } from './arrow-bar-to-right.svelte';
164
+ export { default as IconArrowBarToUpDashed } from './arrow-bar-to-up-dashed.svelte';
161
165
  export { default as IconArrowBarToUp } from './arrow-bar-to-up.svelte';
162
166
  export { default as IconArrowBarUp } from './arrow-bar-up.svelte';
163
167
  export { default as IconArrowBearLeft2 } from './arrow-bear-left-2.svelte';
@@ -1204,6 +1208,7 @@ export { default as IconCertificateOff } from './certificate-off.svelte';
1204
1208
  export { default as IconCertificate } from './certificate.svelte';
1205
1209
  export { default as IconChairDirector } from './chair-director.svelte';
1206
1210
  export { default as IconChalkboardOff } from './chalkboard-off.svelte';
1211
+ export { default as IconChalkboardTeacher } from './chalkboard-teacher.svelte';
1207
1212
  export { default as IconChalkboard } from './chalkboard.svelte';
1208
1213
  export { default as IconChargingPile } from './charging-pile.svelte';
1209
1214
  export { default as IconChartArcs3 } from './chart-arcs-3.svelte';
@@ -2274,6 +2279,27 @@ export { default as IconFileZip } from './file-zip.svelte';
2274
2279
  export { default as IconFile } from './file.svelte';
2275
2280
  export { default as IconFilesOff } from './files-off.svelte';
2276
2281
  export { default as IconFiles } from './files.svelte';
2282
+ export { default as IconFilter2Bolt } from './filter-2-bolt.svelte';
2283
+ export { default as IconFilter2Cancel } from './filter-2-cancel.svelte';
2284
+ export { default as IconFilter2Check } from './filter-2-check.svelte';
2285
+ export { default as IconFilter2Code } from './filter-2-code.svelte';
2286
+ export { default as IconFilter2Cog } from './filter-2-cog.svelte';
2287
+ export { default as IconFilter2Discount } from './filter-2-discount.svelte';
2288
+ export { default as IconFilter2Dollar } from './filter-2-dollar.svelte';
2289
+ export { default as IconFilter2Down } from './filter-2-down.svelte';
2290
+ export { default as IconFilter2Edit } from './filter-2-edit.svelte';
2291
+ export { default as IconFilter2Exclamation } from './filter-2-exclamation.svelte';
2292
+ export { default as IconFilter2Minus } from './filter-2-minus.svelte';
2293
+ export { default as IconFilter2Pause } from './filter-2-pause.svelte';
2294
+ export { default as IconFilter2Pin } from './filter-2-pin.svelte';
2295
+ export { default as IconFilter2Plus } from './filter-2-plus.svelte';
2296
+ export { default as IconFilter2Question } from './filter-2-question.svelte';
2297
+ export { default as IconFilter2Search } from './filter-2-search.svelte';
2298
+ export { default as IconFilter2Share } from './filter-2-share.svelte';
2299
+ export { default as IconFilter2Spark } from './filter-2-spark.svelte';
2300
+ export { default as IconFilter2Up } from './filter-2-up.svelte';
2301
+ export { default as IconFilter2X } from './filter-2-x.svelte';
2302
+ export { default as IconFilter2 } from './filter-2.svelte';
2277
2303
  export { default as IconFilterBolt } from './filter-bolt.svelte';
2278
2304
  export { default as IconFilterCancel } from './filter-cancel.svelte';
2279
2305
  export { default as IconFilterCheck } from './filter-check.svelte';
@@ -2293,6 +2319,7 @@ export { default as IconFilterPlus } from './filter-plus.svelte';
2293
2319
  export { default as IconFilterQuestion } from './filter-question.svelte';
2294
2320
  export { default as IconFilterSearch } from './filter-search.svelte';
2295
2321
  export { default as IconFilterShare } from './filter-share.svelte';
2322
+ export { default as IconFilterSpark } from './filter-spark.svelte';
2296
2323
  export { default as IconFilterStar } from './filter-star.svelte';
2297
2324
  export { default as IconFilterUp } from './filter-up.svelte';
2298
2325
  export { default as IconFilterX } from './filter-x.svelte';
@@ -156,9 +156,13 @@ export default [
156
156
  "arrow-bar-down",
157
157
  "arrow-bar-left",
158
158
  "arrow-bar-right",
159
+ "arrow-bar-to-down-dashed",
159
160
  "arrow-bar-to-down",
161
+ "arrow-bar-to-left-dashed",
160
162
  "arrow-bar-to-left",
163
+ "arrow-bar-to-right-dashed",
161
164
  "arrow-bar-to-right",
165
+ "arrow-bar-to-up-dashed",
162
166
  "arrow-bar-to-up",
163
167
  "arrow-bar-up",
164
168
  "arrow-bear-left-2",
@@ -1205,6 +1209,7 @@ export default [
1205
1209
  "certificate",
1206
1210
  "chair-director",
1207
1211
  "chalkboard-off",
1212
+ "chalkboard-teacher",
1208
1213
  "chalkboard",
1209
1214
  "charging-pile",
1210
1215
  "chart-arcs-3",
@@ -2275,6 +2280,27 @@ export default [
2275
2280
  "file",
2276
2281
  "files-off",
2277
2282
  "files",
2283
+ "filter-2-bolt",
2284
+ "filter-2-cancel",
2285
+ "filter-2-check",
2286
+ "filter-2-code",
2287
+ "filter-2-cog",
2288
+ "filter-2-discount",
2289
+ "filter-2-dollar",
2290
+ "filter-2-down",
2291
+ "filter-2-edit",
2292
+ "filter-2-exclamation",
2293
+ "filter-2-minus",
2294
+ "filter-2-pause",
2295
+ "filter-2-pin",
2296
+ "filter-2-plus",
2297
+ "filter-2-question",
2298
+ "filter-2-search",
2299
+ "filter-2-share",
2300
+ "filter-2-spark",
2301
+ "filter-2-up",
2302
+ "filter-2-x",
2303
+ "filter-2",
2278
2304
  "filter-bolt",
2279
2305
  "filter-cancel",
2280
2306
  "filter-check",
@@ -2294,6 +2320,7 @@ export default [
2294
2320
  "filter-question",
2295
2321
  "filter-search",
2296
2322
  "filter-share",
2323
+ "filter-spark",
2297
2324
  "filter-star",
2298
2325
  "filter-up",
2299
2326
  "filter-x",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.31.0",
3
+ "version": "3.32.0",
4
4
  "license": "MIT",
5
5
  "author": "codecalm",
6
6
  "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
@@ -49,7 +49,7 @@
49
49
  "imports-check": "attw $(npm pack)"
50
50
  },
51
51
  "dependencies": {
52
- "@tabler/icons": "3.31.0"
52
+ "@tabler/icons": "3.32.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@sveltejs/package": "^2.2.7",