@tabler/icons-svelte 3.33.0 → 3.34.1

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 (46) hide show
  1. package/dist/icons/brand-dropbox.svelte +6 -0
  2. package/dist/icons/brand-dropbox.svelte.d.ts +17 -0
  3. package/dist/icons/building-bridge-2-filled.svelte +6 -0
  4. package/dist/icons/building-bridge-2-filled.svelte.d.ts +17 -0
  5. package/dist/icons/columns-1-filled.svelte +6 -0
  6. package/dist/icons/columns-1-filled.svelte.d.ts +17 -0
  7. package/dist/icons/columns-2-filled.svelte +6 -0
  8. package/dist/icons/columns-2-filled.svelte.d.ts +17 -0
  9. package/dist/icons/columns-3-filled.svelte +6 -0
  10. package/dist/icons/columns-3-filled.svelte.d.ts +17 -0
  11. package/dist/icons/confetti-filled.svelte +6 -0
  12. package/dist/icons/confetti-filled.svelte.d.ts +17 -0
  13. package/dist/icons/container-filled.svelte +6 -0
  14. package/dist/icons/container-filled.svelte.d.ts +17 -0
  15. package/dist/icons/index.d.ts +20 -0
  16. package/dist/icons/index.js +20 -0
  17. package/dist/icons/language-off.svelte +1 -1
  18. package/dist/icons/language.svelte +1 -1
  19. package/dist/icons/layout-board-filled.svelte +6 -0
  20. package/dist/icons/layout-board-filled.svelte.d.ts +17 -0
  21. package/dist/icons/layout-board-split-filled.svelte +6 -0
  22. package/dist/icons/layout-board-split-filled.svelte.d.ts +17 -0
  23. package/dist/icons/library-filled.svelte +6 -0
  24. package/dist/icons/library-filled.svelte.d.ts +17 -0
  25. package/dist/icons/library-plus-filled.svelte +6 -0
  26. package/dist/icons/library-plus-filled.svelte.d.ts +17 -0
  27. package/dist/icons/octagon-minus-filled.svelte +6 -0
  28. package/dist/icons/octagon-minus-filled.svelte.d.ts +17 -0
  29. package/dist/icons/octagon-plus-filled.svelte +6 -0
  30. package/dist/icons/octagon-plus-filled.svelte.d.ts +17 -0
  31. package/dist/icons/receipt-dollar-filled.svelte +6 -0
  32. package/dist/icons/receipt-dollar-filled.svelte.d.ts +17 -0
  33. package/dist/icons/receipt-euro-filled.svelte +6 -0
  34. package/dist/icons/receipt-euro-filled.svelte.d.ts +17 -0
  35. package/dist/icons/receipt-pound-filled.svelte +6 -0
  36. package/dist/icons/receipt-pound-filled.svelte.d.ts +17 -0
  37. package/dist/icons/receipt-rupee-filled.svelte +6 -0
  38. package/dist/icons/receipt-rupee-filled.svelte.d.ts +17 -0
  39. package/dist/icons/receipt-yen-filled.svelte +6 -0
  40. package/dist/icons/receipt-yen-filled.svelte.d.ts +17 -0
  41. package/dist/icons/receipt-yuan-filled.svelte +6 -0
  42. package/dist/icons/receipt-yuan-filled.svelte.d.ts +17 -0
  43. package/dist/icons/template-filled.svelte +6 -0
  44. package/dist/icons/template-filled.svelte.d.ts +17 -0
  45. package/dist/icons-list.js +20 -0
  46. package/package.json +3 -2
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M7.5 10.625l-4.5 -2.813l4.5 -2.812l4.5 2.813m-4.5 2.812l4.5 -2.813m-4.5 2.813l-4.5 2.823l4.5 2.802m0 -5.625l4.5 2.823m0 -5.636l4.5 2.791l4.5 -2.812l-4.5 -2.791l-4.5 2.813zm-4.5 8.438l4.5 -2.802m-4.5 2.802v1.123l4.5 2.627l4.5 -2.627v-1.123m-4.5 -2.802l4.5 -2.823l4.5 2.823l-4.5 2.802m-4.5 -2.802l4.5 2.802" }]];
3
+ </script>
4
+ <Icon type="outline" name="brand-dropbox" {...$$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 BrandDropboxProps = typeof __propDef.props;
13
+ export type BrandDropboxEvents = typeof __propDef.events;
14
+ export type BrandDropboxSlots = typeof __propDef.slots;
15
+ export default class BrandDropbox extends SvelteComponentTyped<BrandDropboxProps, BrandDropboxEvents, BrandDropboxSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M18 6a3 3 0 0 1 3 3v9a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2a3 3 0 0 0 -6 0v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-9a3 3 0 0 1 3 -3z" }]];
3
+ </script>
4
+ <Icon type="filled" name="building-bridge-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 BuildingBridge_2FilledProps = typeof __propDef.props;
13
+ export type BuildingBridge_2FilledEvents = typeof __propDef.events;
14
+ export type BuildingBridge_2FilledSlots = typeof __propDef.slots;
15
+ export default class BuildingBridge_2Filled extends SvelteComponentTyped<BuildingBridge_2FilledProps, BuildingBridge_2FilledEvents, BuildingBridge_2FilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M18 2a2 2 0 0 1 2 2v16a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16a2 2 0 0 1 2 -2z" }]];
3
+ </script>
4
+ <Icon type="filled" name="columns-1-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 Columns_1FilledProps = typeof __propDef.props;
13
+ export type Columns_1FilledEvents = typeof __propDef.events;
14
+ export type Columns_1FilledSlots = typeof __propDef.slots;
15
+ export default class Columns_1Filled extends SvelteComponentTyped<Columns_1FilledProps, Columns_1FilledEvents, Columns_1FilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 2h6a1 1 0 0 1 1 1v18a1 1 0 0 1 -1 1h-6a2 2 0 0 1 -2 -2v-16a2 2 0 0 1 2 -2" }], ["path", { "d": "M14 2h6a2 2 0 0 1 2 2v16a2 2 0 0 1 -2 2h-6a1 1 0 0 1 -1 -1v-18a1 1 0 0 1 1 -1" }]];
3
+ </script>
4
+ <Icon type="filled" name="columns-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 Columns_2FilledProps = typeof __propDef.props;
13
+ export type Columns_2FilledEvents = typeof __propDef.events;
14
+ export type Columns_2FilledSlots = typeof __propDef.slots;
15
+ export default class Columns_2Filled extends SvelteComponentTyped<Columns_2FilledProps, Columns_2FilledEvents, Columns_2FilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M4 2h2a1 1 0 0 1 1 1v18a1 1 0 0 1 -1 1h-2a2 2 0 0 1 -2 -2v-16a2 2 0 0 1 2 -2" }], ["path", { "d": "M9 2m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v18a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M18 2h2a2 2 0 0 1 2 2v16a2 2 0 0 1 -2 2h-2a1 1 0 0 1 -1 -1v-18a1 1 0 0 1 1 -1" }]];
3
+ </script>
4
+ <Icon type="filled" name="columns-3-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 Columns_3FilledProps = typeof __propDef.props;
13
+ export type Columns_3FilledEvents = typeof __propDef.events;
14
+ export type Columns_3FilledSlots = typeof __propDef.slots;
15
+ export default class Columns_3Filled extends SvelteComponentTyped<Columns_3FilledProps, Columns_3FilledEvents, Columns_3FilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M3 5a1 1 0 0 1 1 -1a1 1 0 0 1 1.993 -.117l.007 .117a1 1 0 0 1 .117 1.993l-.117 .007a1 1 0 1 1 -2 0a1 1 0 0 1 -1 -1m7.53 -1.243a1 1 0 1 1 1.94 .486l-.5 2a1 1 0 1 1 -1.94 -.486zm6.47 1.243a1 1 0 0 1 1 -1a1 1 0 0 1 1.993 -.117l.007 .117a1 1 0 0 1 .117 1.993l-.117 .007a1 1 0 0 1 -2 0a1 1 0 0 1 -1 -1m-8.81 4.293l6.517 6.518a1 1 0 0 1 -.29 1.617l-9.573 4.387a2 2 0 0 1 -2.661 -2.652l4.39 -9.58a1 1 0 0 1 1.616 -.29m7.517 -1a1 1 0 0 1 0 1.414l-1 1a1 1 0 0 1 -1.414 -1.414l1 -1a1 1 0 0 1 1.414 0m4.05 3.237a1 1 0 0 1 .486 1.94l-2 .5a1 1 0 0 1 -.486 -1.94zm-2.756 7.47a1 1 0 0 1 1 -1a1 1 0 0 1 1.993 -.117l.007 .117a1 1 0 0 1 .117 1.993l-.117 .007a1 1 0 0 1 -2 0a1 1 0 0 1 -1 -1" }]];
3
+ </script>
4
+ <Icon type="filled" name="confetti-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 ConfettiFilledProps = typeof __propDef.props;
13
+ export type ConfettiFilledEvents = typeof __propDef.events;
14
+ export type ConfettiFilledSlots = typeof __propDef.slots;
15
+ export default class ConfettiFilled extends SvelteComponentTyped<ConfettiFilledProps, ConfettiFilledEvents, ConfettiFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M20 3a1 1 0 0 1 1 1v.01a1 1 0 0 1 -2 0v-.01a1 1 0 0 1 1 -1" }], ["path", { "d": "M20 19a1 1 0 0 1 1 1v.01a1 1 0 0 1 -2 0v-.01a1 1 0 0 1 1 -1" }], ["path", { "d": "M20 15a1 1 0 0 1 1 1v.01a1 1 0 0 1 -2 0v-.01a1 1 0 0 1 1 -1" }], ["path", { "d": "M20 11a1 1 0 0 1 1 1v.01a1 1 0 0 1 -2 0v-.01a1 1 0 0 1 1 -1" }], ["path", { "d": "M20 7a1 1 0 0 1 1 1v.01a1 1 0 0 1 -2 0v-.01a1 1 0 0 1 1 -1" }], ["path", { "d": "M15 3a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2z" }], ["path", { "d": "M4 3a1 1 0 0 1 1 1v.01a1 1 0 1 1 -2 0v-.01a1 1 0 0 1 1 -1" }], ["path", { "d": "M4 19a1 1 0 0 1 1 1v.01a1 1 0 0 1 -2 0v-.01a1 1 0 0 1 1 -1" }], ["path", { "d": "M4 15a1 1 0 0 1 1 1v.01a1 1 0 0 1 -2 0v-.01a1 1 0 0 1 1 -1" }], ["path", { "d": "M4 11a1 1 0 0 1 1 1v.01a1 1 0 0 1 -2 0v-.01a1 1 0 0 1 1 -1" }], ["path", { "d": "M4 7a1 1 0 0 1 1 1v.01a1 1 0 1 1 -2 0v-.01a1 1 0 0 1 1 -1" }]];
3
+ </script>
4
+ <Icon type="filled" name="container-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 ContainerFilledProps = typeof __propDef.props;
13
+ export type ContainerFilledEvents = typeof __propDef.events;
14
+ export type ContainerFilledSlots = typeof __propDef.slots;
15
+ export default class ContainerFilled extends SvelteComponentTyped<ContainerFilledProps, ContainerFilledEvents, ContainerFilledSlots> {
16
+ }
17
+ export {};
@@ -717,6 +717,7 @@ export { default as IconBrandDoctrine } from './brand-doctrine.svelte';
717
717
  export { default as IconBrandDolbyDigital } from './brand-dolby-digital.svelte';
718
718
  export { default as IconBrandDouban } from './brand-douban.svelte';
719
719
  export { default as IconBrandDribbble } from './brand-dribbble.svelte';
720
+ export { default as IconBrandDropbox } from './brand-dropbox.svelte';
720
721
  export { default as IconBrandDrops } from './brand-drops.svelte';
721
722
  export { default as IconBrandDrupal } from './brand-drupal.svelte';
722
723
  export { default as IconBrandEdge } from './brand-edge.svelte';
@@ -5165,6 +5166,7 @@ export { default as IconBrightnessFilled } from './brightness-filled.svelte';
5165
5166
  export { default as IconBubbleTextFilled } from './bubble-text-filled.svelte';
5166
5167
  export { default as IconBubbleFilled } from './bubble-filled.svelte';
5167
5168
  export { default as IconBugFilled } from './bug-filled.svelte';
5169
+ export { default as IconBuildingBridge2Filled } from './building-bridge-2-filled.svelte';
5168
5170
  export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
5169
5171
  export { default as IconBulbFilled } from './bulb-filled.svelte';
5170
5172
  export { default as IconBusFilled } from './bus-filled.svelte';
@@ -5328,9 +5330,14 @@ export { default as IconCoinTakaFilled } from './coin-taka-filled.svelte';
5328
5330
  export { default as IconCoinYenFilled } from './coin-yen-filled.svelte';
5329
5331
  export { default as IconCoinYuanFilled } from './coin-yuan-filled.svelte';
5330
5332
  export { default as IconCoinFilled } from './coin-filled.svelte';
5333
+ export { default as IconColumns1Filled } from './columns-1-filled.svelte';
5334
+ export { default as IconColumns2Filled } from './columns-2-filled.svelte';
5335
+ export { default as IconColumns3Filled } from './columns-3-filled.svelte';
5331
5336
  export { default as IconCompassFilled } from './compass-filled.svelte';
5332
5337
  export { default as IconCone2Filled } from './cone-2-filled.svelte';
5333
5338
  export { default as IconConeFilled } from './cone-filled.svelte';
5339
+ export { default as IconConfettiFilled } from './confetti-filled.svelte';
5340
+ export { default as IconContainerFilled } from './container-filled.svelte';
5334
5341
  export { default as IconContrast2Filled } from './contrast-2-filled.svelte';
5335
5342
  export { default as IconContrastFilled } from './contrast-filled.svelte';
5336
5343
  export { default as IconCookieManFilled } from './cookie-man-filled.svelte';
@@ -5574,6 +5581,8 @@ export { default as IconLayoutAlignLeftFilled } from './layout-align-left-filled
5574
5581
  export { default as IconLayoutAlignMiddleFilled } from './layout-align-middle-filled.svelte';
5575
5582
  export { default as IconLayoutAlignRightFilled } from './layout-align-right-filled.svelte';
5576
5583
  export { default as IconLayoutAlignTopFilled } from './layout-align-top-filled.svelte';
5584
+ export { default as IconLayoutBoardSplitFilled } from './layout-board-split-filled.svelte';
5585
+ export { default as IconLayoutBoardFilled } from './layout-board-filled.svelte';
5577
5586
  export { default as IconLayoutBottombarCollapseFilled } from './layout-bottombar-collapse-filled.svelte';
5578
5587
  export { default as IconLayoutBottombarExpandFilled } from './layout-bottombar-expand-filled.svelte';
5579
5588
  export { default as IconLayoutBottombarFilled } from './layout-bottombar-filled.svelte';
@@ -5596,6 +5605,8 @@ export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svel
5596
5605
  export { default as IconLayoutFilled } from './layout-filled.svelte';
5597
5606
  export { default as IconLegoFilled } from './lego-filled.svelte';
5598
5607
  export { default as IconLemon2Filled } from './lemon-2-filled.svelte';
5608
+ export { default as IconLibraryPlusFilled } from './library-plus-filled.svelte';
5609
+ export { default as IconLibraryFilled } from './library-filled.svelte';
5599
5610
  export { default as IconLifebuoyFilled } from './lifebuoy-filled.svelte';
5600
5611
  export { default as IconLivePhotoFilled } from './live-photo-filled.svelte';
5601
5612
  export { default as IconLiveViewFilled } from './live-view-filled.svelte';
@@ -5644,6 +5655,8 @@ export { default as IconMugFilled } from './mug-filled.svelte';
5644
5655
  export { default as IconMushroomFilled } from './mushroom-filled.svelte';
5645
5656
  export { default as IconNavigationFilled } from './navigation-filled.svelte';
5646
5657
  export { default as IconNurseFilled } from './nurse-filled.svelte';
5658
+ export { default as IconOctagonMinusFilled } from './octagon-minus-filled.svelte';
5659
+ export { default as IconOctagonPlusFilled } from './octagon-plus-filled.svelte';
5647
5660
  export { default as IconOctagonFilled } from './octagon-filled.svelte';
5648
5661
  export { default as IconOvalVerticalFilled } from './oval-vertical-filled.svelte';
5649
5662
  export { default as IconOvalFilled } from './oval-filled.svelte';
@@ -5699,6 +5712,12 @@ export { default as IconPuzzleFilled } from './puzzle-filled.svelte';
5699
5712
  export { default as IconQuoteFilled } from './quote-filled.svelte';
5700
5713
  export { default as IconRadarFilled } from './radar-filled.svelte';
5701
5714
  export { default as IconRadioactiveFilled } from './radioactive-filled.svelte';
5715
+ export { default as IconReceiptDollarFilled } from './receipt-dollar-filled.svelte';
5716
+ export { default as IconReceiptEuroFilled } from './receipt-euro-filled.svelte';
5717
+ export { default as IconReceiptPoundFilled } from './receipt-pound-filled.svelte';
5718
+ export { default as IconReceiptRupeeFilled } from './receipt-rupee-filled.svelte';
5719
+ export { default as IconReceiptYenFilled } from './receipt-yen-filled.svelte';
5720
+ export { default as IconReceiptYuanFilled } from './receipt-yuan-filled.svelte';
5702
5721
  export { default as IconReceiptFilled } from './receipt-filled.svelte';
5703
5722
  export { default as IconRectangleVerticalFilled } from './rectangle-vertical-filled.svelte';
5704
5723
  export { default as IconRectangleFilled } from './rectangle-filled.svelte';
@@ -5875,6 +5894,7 @@ export { default as IconTagFilled } from './tag-filled.svelte';
5875
5894
  export { default as IconTagsFilled } from './tags-filled.svelte';
5876
5895
  export { default as IconTemperatureMinusFilled } from './temperature-minus-filled.svelte';
5877
5896
  export { default as IconTemperaturePlusFilled } from './temperature-plus-filled.svelte';
5897
+ export { default as IconTemplateFilled } from './template-filled.svelte';
5878
5898
  export { default as IconTestPipe2Filled } from './test-pipe-2-filled.svelte';
5879
5899
  export { default as IconThumbDownFilled } from './thumb-down-filled.svelte';
5880
5900
  export { default as IconThumbUpFilled } from './thumb-up-filled.svelte';
@@ -717,6 +717,7 @@ export { default as IconBrandDoctrine } from './brand-doctrine.svelte';
717
717
  export { default as IconBrandDolbyDigital } from './brand-dolby-digital.svelte';
718
718
  export { default as IconBrandDouban } from './brand-douban.svelte';
719
719
  export { default as IconBrandDribbble } from './brand-dribbble.svelte';
720
+ export { default as IconBrandDropbox } from './brand-dropbox.svelte';
720
721
  export { default as IconBrandDrops } from './brand-drops.svelte';
721
722
  export { default as IconBrandDrupal } from './brand-drupal.svelte';
722
723
  export { default as IconBrandEdge } from './brand-edge.svelte';
@@ -5165,6 +5166,7 @@ export { default as IconBrightnessFilled } from './brightness-filled.svelte';
5165
5166
  export { default as IconBubbleTextFilled } from './bubble-text-filled.svelte';
5166
5167
  export { default as IconBubbleFilled } from './bubble-filled.svelte';
5167
5168
  export { default as IconBugFilled } from './bug-filled.svelte';
5169
+ export { default as IconBuildingBridge2Filled } from './building-bridge-2-filled.svelte';
5168
5170
  export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
5169
5171
  export { default as IconBulbFilled } from './bulb-filled.svelte';
5170
5172
  export { default as IconBusFilled } from './bus-filled.svelte';
@@ -5328,9 +5330,14 @@ export { default as IconCoinTakaFilled } from './coin-taka-filled.svelte';
5328
5330
  export { default as IconCoinYenFilled } from './coin-yen-filled.svelte';
5329
5331
  export { default as IconCoinYuanFilled } from './coin-yuan-filled.svelte';
5330
5332
  export { default as IconCoinFilled } from './coin-filled.svelte';
5333
+ export { default as IconColumns1Filled } from './columns-1-filled.svelte';
5334
+ export { default as IconColumns2Filled } from './columns-2-filled.svelte';
5335
+ export { default as IconColumns3Filled } from './columns-3-filled.svelte';
5331
5336
  export { default as IconCompassFilled } from './compass-filled.svelte';
5332
5337
  export { default as IconCone2Filled } from './cone-2-filled.svelte';
5333
5338
  export { default as IconConeFilled } from './cone-filled.svelte';
5339
+ export { default as IconConfettiFilled } from './confetti-filled.svelte';
5340
+ export { default as IconContainerFilled } from './container-filled.svelte';
5334
5341
  export { default as IconContrast2Filled } from './contrast-2-filled.svelte';
5335
5342
  export { default as IconContrastFilled } from './contrast-filled.svelte';
5336
5343
  export { default as IconCookieManFilled } from './cookie-man-filled.svelte';
@@ -5574,6 +5581,8 @@ export { default as IconLayoutAlignLeftFilled } from './layout-align-left-filled
5574
5581
  export { default as IconLayoutAlignMiddleFilled } from './layout-align-middle-filled.svelte';
5575
5582
  export { default as IconLayoutAlignRightFilled } from './layout-align-right-filled.svelte';
5576
5583
  export { default as IconLayoutAlignTopFilled } from './layout-align-top-filled.svelte';
5584
+ export { default as IconLayoutBoardSplitFilled } from './layout-board-split-filled.svelte';
5585
+ export { default as IconLayoutBoardFilled } from './layout-board-filled.svelte';
5577
5586
  export { default as IconLayoutBottombarCollapseFilled } from './layout-bottombar-collapse-filled.svelte';
5578
5587
  export { default as IconLayoutBottombarExpandFilled } from './layout-bottombar-expand-filled.svelte';
5579
5588
  export { default as IconLayoutBottombarFilled } from './layout-bottombar-filled.svelte';
@@ -5596,6 +5605,8 @@ export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svel
5596
5605
  export { default as IconLayoutFilled } from './layout-filled.svelte';
5597
5606
  export { default as IconLegoFilled } from './lego-filled.svelte';
5598
5607
  export { default as IconLemon2Filled } from './lemon-2-filled.svelte';
5608
+ export { default as IconLibraryPlusFilled } from './library-plus-filled.svelte';
5609
+ export { default as IconLibraryFilled } from './library-filled.svelte';
5599
5610
  export { default as IconLifebuoyFilled } from './lifebuoy-filled.svelte';
5600
5611
  export { default as IconLivePhotoFilled } from './live-photo-filled.svelte';
5601
5612
  export { default as IconLiveViewFilled } from './live-view-filled.svelte';
@@ -5644,6 +5655,8 @@ export { default as IconMugFilled } from './mug-filled.svelte';
5644
5655
  export { default as IconMushroomFilled } from './mushroom-filled.svelte';
5645
5656
  export { default as IconNavigationFilled } from './navigation-filled.svelte';
5646
5657
  export { default as IconNurseFilled } from './nurse-filled.svelte';
5658
+ export { default as IconOctagonMinusFilled } from './octagon-minus-filled.svelte';
5659
+ export { default as IconOctagonPlusFilled } from './octagon-plus-filled.svelte';
5647
5660
  export { default as IconOctagonFilled } from './octagon-filled.svelte';
5648
5661
  export { default as IconOvalVerticalFilled } from './oval-vertical-filled.svelte';
5649
5662
  export { default as IconOvalFilled } from './oval-filled.svelte';
@@ -5699,6 +5712,12 @@ export { default as IconPuzzleFilled } from './puzzle-filled.svelte';
5699
5712
  export { default as IconQuoteFilled } from './quote-filled.svelte';
5700
5713
  export { default as IconRadarFilled } from './radar-filled.svelte';
5701
5714
  export { default as IconRadioactiveFilled } from './radioactive-filled.svelte';
5715
+ export { default as IconReceiptDollarFilled } from './receipt-dollar-filled.svelte';
5716
+ export { default as IconReceiptEuroFilled } from './receipt-euro-filled.svelte';
5717
+ export { default as IconReceiptPoundFilled } from './receipt-pound-filled.svelte';
5718
+ export { default as IconReceiptRupeeFilled } from './receipt-rupee-filled.svelte';
5719
+ export { default as IconReceiptYenFilled } from './receipt-yen-filled.svelte';
5720
+ export { default as IconReceiptYuanFilled } from './receipt-yuan-filled.svelte';
5702
5721
  export { default as IconReceiptFilled } from './receipt-filled.svelte';
5703
5722
  export { default as IconRectangleVerticalFilled } from './rectangle-vertical-filled.svelte';
5704
5723
  export { default as IconRectangleFilled } from './rectangle-filled.svelte';
@@ -5875,6 +5894,7 @@ export { default as IconTagFilled } from './tag-filled.svelte';
5875
5894
  export { default as IconTagsFilled } from './tags-filled.svelte';
5876
5895
  export { default as IconTemperatureMinusFilled } from './temperature-minus-filled.svelte';
5877
5896
  export { default as IconTemperaturePlusFilled } from './temperature-plus-filled.svelte';
5897
+ export { default as IconTemplateFilled } from './template-filled.svelte';
5878
5898
  export { default as IconTestPipe2Filled } from './test-pipe-2-filled.svelte';
5879
5899
  export { default as IconThumbDownFilled } from './thumb-down-filled.svelte';
5880
5900
  export { default as IconThumbUpFilled } from './thumb-up-filled.svelte';
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M4 5h1m4 0h2" }], ["path", { "d": "M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483" }], ["path", { "d": "M5 9c0 2.144 2.952 3.908 6.7 4" }], ["path", { "d": "M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8" }], ["path", { "d": "M18 18h-5.1" }], ["path", { "d": "M3 3l18 18" }]];
2
+ const iconNode = [["path", { "d": "M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8" }], ["path", { "d": "M18 18h-5.1" }], ["path", { "d": "M8.747 8.748c-.66 2.834 -2.536 4.252 -4.747 4.252" }], ["path", { "d": "M4 6.371l2.371 0" }], ["path", { "d": "M5 9c0 2.144 2.252 3.908 6 4" }], ["path", { "d": "M3 3l18 18" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="language-off" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -1,5 +1,5 @@
1
1
  <script>import Icon from '../Icon.svelte';
2
- const iconNode = [["path", { "d": "M4 5h7" }], ["path", { "d": "M9 3v2c0 4.418 -2.239 8 -5 8" }], ["path", { "d": "M5 9c0 2.144 2.952 3.908 6.7 4" }], ["path", { "d": "M12 20l4 -9l4 9" }], ["path", { "d": "M19.1 18h-6.2" }]];
2
+ const iconNode = [["path", { "d": "M9 6.371c0 4.418 -2.239 6.629 -5 6.629" }], ["path", { "d": "M4 6.371h7" }], ["path", { "d": "M5 9c0 2.144 2.252 3.908 6 4" }], ["path", { "d": "M12 20l4 -9l4 9" }], ["path", { "d": "M19.1 18h-6.2" }], ["path", { "d": "M6.694 3l.793 .582" }]];
3
3
  </script>
4
4
  <Icon type="outline" name="language" {...$$props} iconNode={iconNode}>
5
5
  <slot/>
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M5 3h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2" }], ["path", { "d": "M14 3h5a2 2 0 0 1 2 2v8a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-9a1 1 0 0 1 1 -1" }], ["path", { "d": "M14 16h6a1 1 0 0 1 1 1v2a2 2 0 0 1 -2 2h-5a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1" }], ["path", { "d": "M4 10h6a1 1 0 0 1 1 1v9a1 1 0 0 1 -1 1h-5a2 2 0 0 1 -2 -2v-8a1 1 0 0 1 1 -1" }]];
3
+ </script>
4
+ <Icon type="filled" name="layout-board-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 LayoutBoardFilledProps = typeof __propDef.props;
13
+ export type LayoutBoardFilledEvents = typeof __propDef.events;
14
+ export type LayoutBoardFilledSlots = typeof __propDef.slots;
15
+ export default class LayoutBoardFilled extends SvelteComponentTyped<LayoutBoardFilledProps, LayoutBoardFilledEvents, LayoutBoardFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M5 3h5a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2" }], ["path", { "d": "M14 3h5a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1" }], ["path", { "d": "M13 10m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M14 16h6a1 1 0 0 1 1 1v2a2 2 0 0 1 -2 2h-5a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1" }], ["path", { "d": "M4 13h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-5a2 2 0 0 1 -2 -2v-5a1 1 0 0 1 1 -1" }]];
3
+ </script>
4
+ <Icon type="filled" name="layout-board-split-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 LayoutBoardSplitFilledProps = typeof __propDef.props;
13
+ export type LayoutBoardSplitFilledEvents = typeof __propDef.events;
14
+ export type LayoutBoardSplitFilledSlots = typeof __propDef.slots;
15
+ export default class LayoutBoardSplitFilled extends SvelteComponentTyped<LayoutBoardSplitFilledProps, LayoutBoardSplitFilledEvents, LayoutBoardSplitFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M18.333 2a3.667 3.667 0 0 1 3.667 3.667v8.666a3.667 3.667 0 0 1 -3.667 3.667h-8.666a3.667 3.667 0 0 1 -3.667 -3.667v-8.666a3.667 3.667 0 0 1 3.667 -3.667zm-4.333 10h-3a1 1 0 0 0 0 2h3a1 1 0 0 0 0 -2m3 -3h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0 -2m-1 -3h-5a1 1 0 0 0 0 2h5a1 1 0 0 0 0 -2" }], ["path", { "d": "M3.517 6.391a1 1 0 0 1 .99 1.738c-.313 .178 -.506 .51 -.507 .868v10c0 .548 .452 1 1 1h10c.284 0 .405 -.088 .626 -.486a1 1 0 0 1 1.748 .972c-.546 .98 -1.28 1.514 -2.374 1.514h-10c-1.652 0 -3 -1.348 -3 -3v-10.002a3 3 0 0 1 1.517 -2.605" }]];
3
+ </script>
4
+ <Icon type="filled" name="library-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 LibraryFilledProps = typeof __propDef.props;
13
+ export type LibraryFilledEvents = typeof __propDef.events;
14
+ export type LibraryFilledSlots = typeof __propDef.slots;
15
+ export default class LibraryFilled extends SvelteComponentTyped<LibraryFilledProps, LibraryFilledEvents, LibraryFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M18.333 2a3.667 3.667 0 0 1 3.667 3.667v8.666a3.667 3.667 0 0 1 -3.667 3.667h-8.666a3.667 3.667 0 0 1 -3.667 -3.667v-8.666a3.667 3.667 0 0 1 3.667 -3.667zm-4.333 4a1 1 0 0 0 -1 1v2h-2a1 1 0 0 0 0 2h2v2a1 1 0 0 0 2 0v-2h2a1 1 0 0 0 0 -2h-2v-2a1 1 0 0 0 -1 -1" }], ["path", { "d": "M3.517 6.391a1 1 0 0 1 .99 1.738c-.313 .178 -.506 .51 -.507 .868v10c0 .548 .452 1 1 1h10c.284 0 .405 -.088 .626 -.486a1 1 0 0 1 1.748 .972c-.546 .98 -1.28 1.514 -2.374 1.514h-10c-1.652 0 -3 -1.348 -3 -3v-10.002a3 3 0 0 1 1.517 -2.605" }]];
3
+ </script>
4
+ <Icon type="filled" name="library-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 LibraryPlusFilledProps = typeof __propDef.props;
13
+ export type LibraryPlusFilledEvents = typeof __propDef.events;
14
+ export type LibraryPlusFilledSlots = typeof __propDef.slots;
15
+ export default class LibraryPlusFilled extends SvelteComponentTyped<LibraryPlusFilledProps, LibraryPlusFilledEvents, LibraryPlusFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M13.196 1.246l5.575 2.39a3.04 3.04 0 0 1 1.595 1.594l2.388 5.573c.328 .764 .328 1.63 0 2.393l-2.39 5.575a3.04 3.04 0 0 1 -1.594 1.595l-5.573 2.388a3.03 3.03 0 0 1 -2.393 0l-5.574 -2.389a3.04 3.04 0 0 1 -1.595 -1.595l-2.388 -5.574a3.04 3.04 0 0 1 0 -2.392l2.39 -5.575a3.04 3.04 0 0 1 1.593 -1.595l5.574 -2.388a3.04 3.04 0 0 1 2.392 0m1.804 9.754h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0 -2" }]];
3
+ </script>
4
+ <Icon type="filled" name="octagon-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 OctagonMinusFilledProps = typeof __propDef.props;
13
+ export type OctagonMinusFilledEvents = typeof __propDef.events;
14
+ export type OctagonMinusFilledSlots = typeof __propDef.slots;
15
+ export default class OctagonMinusFilled extends SvelteComponentTyped<OctagonMinusFilledProps, OctagonMinusFilledEvents, OctagonMinusFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M13.196 1.246l5.575 2.39a3.04 3.04 0 0 1 1.595 1.594l2.388 5.573c.328 .764 .328 1.63 0 2.393l-2.39 5.575a3.04 3.04 0 0 1 -1.594 1.595l-5.573 2.388a3.03 3.03 0 0 1 -2.393 0l-5.574 -2.389a3.04 3.04 0 0 1 -1.595 -1.595l-2.388 -5.574a3.04 3.04 0 0 1 0 -2.392l2.39 -5.575a3.04 3.04 0 0 1 1.593 -1.595l5.574 -2.388a3.04 3.04 0 0 1 2.392 0m-1.196 6.754a1 1 0 0 0 -1 1v2h-2a1 1 0 0 0 0 2h2v2a1 1 0 0 0 2 0v-2h2a1 1 0 0 0 0 -2h-2v-2a1 1 0 0 0 -1 -1" }]];
3
+ </script>
4
+ <Icon type="filled" name="octagon-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 OctagonPlusFilledProps = typeof __propDef.props;
13
+ export type OctagonPlusFilledEvents = typeof __propDef.events;
14
+ export type OctagonPlusFilledSlots = typeof __propDef.slots;
15
+ export default class OctagonPlusFilled extends SvelteComponentTyped<OctagonPlusFilledProps, OctagonPlusFilledEvents, OctagonPlusFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 2a3 3 0 0 1 3 3v16a1 1 0 0 1 -1.555 .832l-2.318 -1.545l-1.42 1.42a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.293 -1.292l-1.293 1.292a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.421 -1.42l-2.317 1.545l-.019 .012l-.054 .03l-.028 .017l-.054 .023l-.05 .023l-.049 .015l-.06 .019l-.052 .009l-.057 .011l-.084 .006l-.026 .003h-.022l-.049 -.003h-.039l-.013 -.003h-.016l-.041 -.008l-.038 -.005l-.015 -.005l-.018 -.002l-.034 -.011l-.04 -.01l-.019 -.007l-.015 -.004l-.029 -.013l-.04 -.015l-.021 -.011l-.013 -.005l-.028 -.016l-.036 -.018l-.014 -.01l-.018 -.01l-.038 -.027l-.022 -.014l-.01 -.009l-.02 -.014l-.045 -.041l-.012 -.008l-.024 -.024l-.035 -.039l-.02 -.02l-.007 -.011l-.011 -.012l-.032 -.045l-.02 -.025l-.012 -.019l-.03 -.054l-.017 -.028l-.023 -.054l-.023 -.05a1 1 0 0 1 -.034 -.108l-.01 -.057l-.01 -.053l-.009 -.132v-16a3 3 0 0 1 3 -3zm-5 3a1 1 0 0 0 -1 1a3 3 0 1 0 0 6v2c-.403 .013 -.75 -.18 -.934 -.5a1 1 0 0 0 -1.732 1a3 3 0 0 0 2.505 1.5l.161 -.001a1 1 0 1 0 2 .001l.176 -.005a3 3 0 0 0 -.176 -5.995v-2c.403 -.013 .75 .18 .934 .5a1 1 0 0 0 1.732 -1a3 3 0 0 0 -2.505 -1.5h-.161a1 1 0 0 0 -1 -1m1 7a1 1 0 0 1 0 2zm-2 -4v2a1 1 0 0 1 0 -2" }]];
3
+ </script>
4
+ <Icon type="filled" name="receipt-dollar-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 ReceiptDollarFilledProps = typeof __propDef.props;
13
+ export type ReceiptDollarFilledEvents = typeof __propDef.events;
14
+ export type ReceiptDollarFilledSlots = typeof __propDef.slots;
15
+ export default class ReceiptDollarFilled extends SvelteComponentTyped<ReceiptDollarFilledProps, ReceiptDollarFilledEvents, ReceiptDollarFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 2a3 3 0 0 1 3 3v16a1 1 0 0 1 -1.555 .832l-2.318 -1.545l-1.42 1.42a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.293 -1.292l-1.293 1.292a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.421 -1.42l-2.317 1.545a1 1 0 0 1 -1.55 -.72l-.005 -.112v-16a3 3 0 0 1 3 -3zm-3.875 4c-2.046 0 -3.668 1.746 -4.043 4h-.082a1 1 0 0 0 0 2h.082c.376 2.254 1.997 4 4.043 4c1.106 0 2.053 -.465 2.707 -1.445a1 1 0 1 0 -1.664 -1.11c-.267 .401 -.58 .555 -1.043 .555c-.882 0 -1.7 -.814 -2.002 -1.999l1.877 -.001a1 1 0 0 0 0 -2h-1.877c.301 -1.186 1.12 -2 2.002 -2c.462 0 .776 .154 1.043 .555a1 1 0 0 0 1.664 -1.11c-.654 -.98 -1.6 -1.445 -2.707 -1.445" }]];
3
+ </script>
4
+ <Icon type="filled" name="receipt-euro-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 ReceiptEuroFilledProps = typeof __propDef.props;
13
+ export type ReceiptEuroFilledEvents = typeof __propDef.events;
14
+ export type ReceiptEuroFilledSlots = typeof __propDef.slots;
15
+ export default class ReceiptEuroFilled extends SvelteComponentTyped<ReceiptEuroFilledProps, ReceiptEuroFilledEvents, ReceiptEuroFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 2a3 3 0 0 1 3 3v16a1 1 0 0 1 -1.555 .832l-2.318 -1.545l-1.42 1.42a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.293 -1.292l-1.293 1.292a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.421 -1.42l-2.317 1.545l-.019 .012l-.054 .03l-.028 .017l-.054 .023l-.05 .023l-.049 .015l-.06 .019l-.052 .009l-.057 .011l-.084 .006l-.026 .003h-.022l-.049 -.003h-.039l-.013 -.003h-.016l-.041 -.008l-.038 -.005l-.015 -.005l-.018 -.002l-.034 -.011l-.04 -.01l-.019 -.007l-.015 -.004l-.029 -.013l-.04 -.015l-.021 -.011l-.013 -.005l-.028 -.016l-.036 -.018l-.014 -.01l-.018 -.01l-.038 -.027l-.022 -.014l-.01 -.009l-.02 -.014l-.045 -.041l-.012 -.008l-.024 -.024l-.035 -.039l-.02 -.02l-.007 -.011l-.011 -.012l-.032 -.045l-.02 -.025l-.012 -.019l-.03 -.054l-.017 -.028l-.023 -.054l-.023 -.05a1 1 0 0 1 -.034 -.108l-.01 -.057l-.01 -.053l-.009 -.132v-16a3 3 0 0 1 3 -3zm-4 4a3 3 0 0 0 -3 3v2h-1a1 1 0 0 0 0 2h1a1 1 0 0 1 -.883 .993l-.117 .007c-1.287 0 -1.332 1.864 -.133 1.993l.133 .007h6a1 1 0 0 0 1 -1l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.171l.048 -.148a3 3 0 0 0 .123 -.852h1a1 1 0 0 0 0 -2h-1v-2a1 1 0 0 1 2 0a1 1 0 0 0 2 0a3 3 0 0 0 -3 -3" }]];
3
+ </script>
4
+ <Icon type="filled" name="receipt-pound-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 ReceiptPoundFilledProps = typeof __propDef.props;
13
+ export type ReceiptPoundFilledEvents = typeof __propDef.events;
14
+ export type ReceiptPoundFilledSlots = typeof __propDef.slots;
15
+ export default class ReceiptPoundFilled extends SvelteComponentTyped<ReceiptPoundFilledProps, ReceiptPoundFilledEvents, ReceiptPoundFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 2a3 3 0 0 1 3 3v16a1 1 0 0 1 -1.555 .832l-2.318 -1.545l-1.42 1.42a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.293 -1.292l-1.293 1.292a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.421 -1.42l-2.317 1.545l-.019 .012l-.054 .03l-.028 .017l-.054 .023l-.05 .023l-.049 .015l-.06 .019l-.052 .009l-.057 .011l-.084 .006l-.026 .003h-.022l-.049 -.003h-.039l-.013 -.003h-.016l-.041 -.008l-.038 -.005l-.015 -.005l-.018 -.002l-.034 -.011l-.04 -.01l-.019 -.007l-.015 -.004l-.029 -.013l-.04 -.015l-.021 -.011l-.013 -.005l-.028 -.016l-.036 -.018l-.014 -.01l-.018 -.01l-.038 -.027l-.022 -.014l-.01 -.009l-.02 -.014l-.045 -.041l-.012 -.008l-.024 -.024l-.035 -.039l-.02 -.02l-.007 -.011l-.011 -.012l-.032 -.045l-.02 -.025l-.012 -.019l-.03 -.054l-.017 -.028l-.023 -.054l-.023 -.05a1 1 0 0 1 -.034 -.108l-.01 -.057l-.01 -.053l-.009 -.132v-16a3 3 0 0 1 3 -3zm-2 4h-6c-1.287 0 -1.332 1.864 -.133 1.993l.133 .007h1a2 2 0 0 1 1.732 1h-2.732a1 1 0 1 0 0 2l2.732 .001a2 2 0 0 1 -1.732 .999h-1c-.89 0 -1.337 1.077 -.707 1.707l3 3a1 1 0 0 0 1.414 0l.083 -.094a1 1 0 0 0 -.083 -1.32l-1.484 -1.485l.113 -.037a4.01 4.01 0 0 0 2.538 -2.77l1.126 -.001a1 1 0 0 0 0 -2h-1.126a4 4 0 0 0 -.33 -.855l-.079 -.145h1.535a1 1 0 0 0 1 -1l-.007 -.117a1 1 0 0 0 -.993 -.883" }]];
3
+ </script>
4
+ <Icon type="filled" name="receipt-rupee-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 ReceiptRupeeFilledProps = typeof __propDef.props;
13
+ export type ReceiptRupeeFilledEvents = typeof __propDef.events;
14
+ export type ReceiptRupeeFilledSlots = typeof __propDef.slots;
15
+ export default class ReceiptRupeeFilled extends SvelteComponentTyped<ReceiptRupeeFilledProps, ReceiptRupeeFilledEvents, ReceiptRupeeFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 2a3 3 0 0 1 3 3v16a1 1 0 0 1 -1.555 .832l-2.318 -1.545l-1.42 1.42a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.293 -1.292l-1.293 1.292a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.421 -1.42l-2.317 1.545l-.019 .012l-.054 .03l-.028 .017l-.054 .023l-.05 .023l-.049 .015l-.06 .019l-.052 .009l-.057 .011l-.084 .006l-.026 .003h-.022l-.049 -.003h-.039l-.013 -.003h-.016l-.041 -.008l-.038 -.005l-.015 -.005l-.018 -.002l-.034 -.011l-.04 -.01l-.019 -.007l-.015 -.004l-.029 -.013l-.04 -.015l-.021 -.011l-.013 -.005l-.028 -.016l-.036 -.018l-.014 -.01l-.018 -.01l-.038 -.027l-.022 -.014l-.01 -.009l-.02 -.014l-.045 -.041l-.012 -.008l-.024 -.024l-.035 -.039l-.02 -.02l-.007 -.011l-.011 -.012l-.032 -.045l-.02 -.025l-.012 -.019l-.03 -.054l-.017 -.028l-.023 -.054l-.023 -.05a1 1 0 0 1 -.034 -.108l-.01 -.057l-.01 -.053l-.009 -.132v-16a3 3 0 0 1 3 -3zm-1.445 4.168a1 1 0 0 0 -1.387 .277l-2.168 3.252l-2.168 -3.252a1 1 0 0 0 -1.664 1.11l1.63 2.445h-.798a1 1 0 0 0 0 2h2v1h-2a1 1 0 0 0 0 2h2v1a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .883 -.993v-1h2a1 1 0 0 0 0 -2h-2v-1h2a1 1 0 0 0 0 -2h-.8l1.632 -2.445a1 1 0 0 0 -.277 -1.387" }]];
3
+ </script>
4
+ <Icon type="filled" name="receipt-yen-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 ReceiptYenFilledProps = typeof __propDef.props;
13
+ export type ReceiptYenFilledEvents = typeof __propDef.events;
14
+ export type ReceiptYenFilledSlots = typeof __propDef.slots;
15
+ export default class ReceiptYenFilled extends SvelteComponentTyped<ReceiptYenFilledProps, ReceiptYenFilledEvents, ReceiptYenFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M17 2a3 3 0 0 1 3 3v16a1 1 0 0 1 -1.555 .832l-2.318 -1.545l-1.42 1.42a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.293 -1.292l-1.293 1.292a1 1 0 0 1 -1.32 .083l-.094 -.083l-1.421 -1.42l-2.317 1.545l-.019 .012l-.054 .03l-.028 .017l-.054 .023l-.05 .023l-.049 .015l-.06 .019l-.052 .009l-.057 .011l-.084 .006l-.026 .003h-.022l-.049 -.003h-.039l-.013 -.003h-.016l-.041 -.008l-.038 -.005l-.015 -.005l-.018 -.002l-.034 -.011l-.04 -.01l-.019 -.007l-.015 -.004l-.029 -.013l-.04 -.015l-.021 -.011l-.013 -.005l-.028 -.016l-.036 -.018l-.014 -.01l-.018 -.01l-.038 -.027l-.022 -.014l-.01 -.009l-.02 -.014l-.045 -.041l-.012 -.008l-.024 -.024l-.035 -.039l-.02 -.02l-.007 -.011l-.011 -.012l-.032 -.045l-.02 -.025l-.012 -.019l-.03 -.054l-.017 -.028l-.023 -.054l-.023 -.05a1 1 0 0 1 -.034 -.108l-.01 -.057l-.01 -.053l-.009 -.132v-16a3 3 0 0 1 3 -3zm-1.445 4.168a1 1 0 0 0 -1.387 .277l-2.168 3.252l-2.168 -3.252a1 1 0 0 0 -1.664 1.11l2.297 3.445h-1.465a1 1 0 0 0 0 2h2v3a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .883 -.993v-3h2a1 1 0 0 0 0 -2h-1.465l2.297 -3.445a1 1 0 0 0 -.277 -1.387" }]];
3
+ </script>
4
+ <Icon type="filled" name="receipt-yuan-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 ReceiptYuanFilledProps = typeof __propDef.props;
13
+ export type ReceiptYuanFilledEvents = typeof __propDef.events;
14
+ export type ReceiptYuanFilledSlots = typeof __propDef.slots;
15
+ export default class ReceiptYuanFilled extends SvelteComponentTyped<ReceiptYuanFilledProps, ReceiptYuanFilledEvents, ReceiptYuanFilledSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,6 @@
1
+ <script>import Icon from '../Icon.svelte';
2
+ const iconNode = [["path", { "d": "M19 3a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z" }], ["path", { "d": "M9 11a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2z" }], ["path", { "d": "M20 11a1 1 0 0 1 0 2h-6a1 1 0 0 1 0 -2z" }], ["path", { "d": "M20 15a1 1 0 0 1 0 2h-6a1 1 0 0 1 0 -2z" }], ["path", { "d": "M20 19a1 1 0 0 1 0 2h-6a1 1 0 0 1 0 -2z" }]];
3
+ </script>
4
+ <Icon type="filled" name="template-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 TemplateFilledProps = typeof __propDef.props;
13
+ export type TemplateFilledEvents = typeof __propDef.events;
14
+ export type TemplateFilledSlots = typeof __propDef.slots;
15
+ export default class TemplateFilled extends SvelteComponentTyped<TemplateFilledProps, TemplateFilledEvents, TemplateFilledSlots> {
16
+ }
17
+ export {};
@@ -718,6 +718,7 @@ export default [
718
718
  "brand-dolby-digital",
719
719
  "brand-douban",
720
720
  "brand-dribbble",
721
+ "brand-dropbox",
721
722
  "brand-drops",
722
723
  "brand-drupal",
723
724
  "brand-edge",
@@ -5166,6 +5167,7 @@ export default [
5166
5167
  "bubble-text-filled",
5167
5168
  "bubble-filled",
5168
5169
  "bug-filled",
5170
+ "building-bridge-2-filled",
5169
5171
  "building-broadcast-tower-filled",
5170
5172
  "bulb-filled",
5171
5173
  "bus-filled",
@@ -5329,9 +5331,14 @@ export default [
5329
5331
  "coin-yen-filled",
5330
5332
  "coin-yuan-filled",
5331
5333
  "coin-filled",
5334
+ "columns-1-filled",
5335
+ "columns-2-filled",
5336
+ "columns-3-filled",
5332
5337
  "compass-filled",
5333
5338
  "cone-2-filled",
5334
5339
  "cone-filled",
5340
+ "confetti-filled",
5341
+ "container-filled",
5335
5342
  "contrast-2-filled",
5336
5343
  "contrast-filled",
5337
5344
  "cookie-man-filled",
@@ -5575,6 +5582,8 @@ export default [
5575
5582
  "layout-align-middle-filled",
5576
5583
  "layout-align-right-filled",
5577
5584
  "layout-align-top-filled",
5585
+ "layout-board-split-filled",
5586
+ "layout-board-filled",
5578
5587
  "layout-bottombar-collapse-filled",
5579
5588
  "layout-bottombar-expand-filled",
5580
5589
  "layout-bottombar-filled",
@@ -5597,6 +5606,8 @@ export default [
5597
5606
  "layout-filled",
5598
5607
  "lego-filled",
5599
5608
  "lemon-2-filled",
5609
+ "library-plus-filled",
5610
+ "library-filled",
5600
5611
  "lifebuoy-filled",
5601
5612
  "live-photo-filled",
5602
5613
  "live-view-filled",
@@ -5645,6 +5656,8 @@ export default [
5645
5656
  "mushroom-filled",
5646
5657
  "navigation-filled",
5647
5658
  "nurse-filled",
5659
+ "octagon-minus-filled",
5660
+ "octagon-plus-filled",
5648
5661
  "octagon-filled",
5649
5662
  "oval-vertical-filled",
5650
5663
  "oval-filled",
@@ -5700,6 +5713,12 @@ export default [
5700
5713
  "quote-filled",
5701
5714
  "radar-filled",
5702
5715
  "radioactive-filled",
5716
+ "receipt-dollar-filled",
5717
+ "receipt-euro-filled",
5718
+ "receipt-pound-filled",
5719
+ "receipt-rupee-filled",
5720
+ "receipt-yen-filled",
5721
+ "receipt-yuan-filled",
5703
5722
  "receipt-filled",
5704
5723
  "rectangle-vertical-filled",
5705
5724
  "rectangle-filled",
@@ -5876,6 +5895,7 @@ export default [
5876
5895
  "tags-filled",
5877
5896
  "temperature-minus-filled",
5878
5897
  "temperature-plus-filled",
5898
+ "template-filled",
5879
5899
  "test-pipe-2-filled",
5880
5900
  "thumb-down-filled",
5881
5901
  "thumb-up-filled",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.33.0",
3
+ "version": "3.34.1",
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.",
@@ -20,6 +20,7 @@
20
20
  "svelte": "./dist/tabler-icons-svelte.js",
21
21
  "types": "./dist/tabler-icons-svelte.d.ts",
22
22
  "type": "module",
23
+ "amdName": "TablerIconsSvelte",
23
24
  "exports": {
24
25
  ".": {
25
26
  "types": "./dist/tabler-icons-svelte.d.ts",
@@ -49,7 +50,7 @@
49
50
  "imports-check": "attw $(npm pack)"
50
51
  },
51
52
  "dependencies": {
52
- "@tabler/icons": "3.33.0"
53
+ "@tabler/icons": "3.34.1"
53
54
  },
54
55
  "devDependencies": {
55
56
  "@sveltejs/package": "^2.2.7",