@tabler/icons-svelte 3.33.0 → 3.34.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.
- package/dist/icons/building-bridge-2-filled.svelte +6 -0
- package/dist/icons/building-bridge-2-filled.svelte.d.ts +17 -0
- package/dist/icons/columns-1-filled.svelte +6 -0
- package/dist/icons/columns-1-filled.svelte.d.ts +17 -0
- package/dist/icons/columns-2-filled.svelte +6 -0
- package/dist/icons/columns-2-filled.svelte.d.ts +17 -0
- package/dist/icons/columns-3-filled.svelte +6 -0
- package/dist/icons/columns-3-filled.svelte.d.ts +17 -0
- package/dist/icons/confetti-filled.svelte +6 -0
- package/dist/icons/confetti-filled.svelte.d.ts +17 -0
- package/dist/icons/container-filled.svelte +6 -0
- package/dist/icons/container-filled.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +19 -0
- package/dist/icons/index.js +19 -0
- package/dist/icons/layout-board-filled.svelte +6 -0
- package/dist/icons/layout-board-filled.svelte.d.ts +17 -0
- package/dist/icons/layout-board-split-filled.svelte +6 -0
- package/dist/icons/layout-board-split-filled.svelte.d.ts +17 -0
- package/dist/icons/library-filled.svelte +6 -0
- package/dist/icons/library-filled.svelte.d.ts +17 -0
- package/dist/icons/library-plus-filled.svelte +6 -0
- package/dist/icons/library-plus-filled.svelte.d.ts +17 -0
- package/dist/icons/octagon-minus-filled.svelte +6 -0
- package/dist/icons/octagon-minus-filled.svelte.d.ts +17 -0
- package/dist/icons/octagon-plus-filled.svelte +6 -0
- package/dist/icons/octagon-plus-filled.svelte.d.ts +17 -0
- package/dist/icons/receipt-dollar-filled.svelte +6 -0
- package/dist/icons/receipt-dollar-filled.svelte.d.ts +17 -0
- package/dist/icons/receipt-euro-filled.svelte +6 -0
- package/dist/icons/receipt-euro-filled.svelte.d.ts +17 -0
- package/dist/icons/receipt-pound-filled.svelte +6 -0
- package/dist/icons/receipt-pound-filled.svelte.d.ts +17 -0
- package/dist/icons/receipt-rupee-filled.svelte +6 -0
- package/dist/icons/receipt-rupee-filled.svelte.d.ts +17 -0
- package/dist/icons/receipt-yen-filled.svelte +6 -0
- package/dist/icons/receipt-yen-filled.svelte.d.ts +17 -0
- package/dist/icons/receipt-yuan-filled.svelte +6 -0
- package/dist/icons/receipt-yuan-filled.svelte.d.ts +17 -0
- package/dist/icons/template-filled.svelte +6 -0
- package/dist/icons/template-filled.svelte.d.ts +17 -0
- package/dist/icons-list.js +19 -0
- package/package.json +2 -2
|
@@ -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 {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -5165,6 +5165,7 @@ export { default as IconBrightnessFilled } from './brightness-filled.svelte';
|
|
|
5165
5165
|
export { default as IconBubbleTextFilled } from './bubble-text-filled.svelte';
|
|
5166
5166
|
export { default as IconBubbleFilled } from './bubble-filled.svelte';
|
|
5167
5167
|
export { default as IconBugFilled } from './bug-filled.svelte';
|
|
5168
|
+
export { default as IconBuildingBridge2Filled } from './building-bridge-2-filled.svelte';
|
|
5168
5169
|
export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
|
|
5169
5170
|
export { default as IconBulbFilled } from './bulb-filled.svelte';
|
|
5170
5171
|
export { default as IconBusFilled } from './bus-filled.svelte';
|
|
@@ -5328,9 +5329,14 @@ export { default as IconCoinTakaFilled } from './coin-taka-filled.svelte';
|
|
|
5328
5329
|
export { default as IconCoinYenFilled } from './coin-yen-filled.svelte';
|
|
5329
5330
|
export { default as IconCoinYuanFilled } from './coin-yuan-filled.svelte';
|
|
5330
5331
|
export { default as IconCoinFilled } from './coin-filled.svelte';
|
|
5332
|
+
export { default as IconColumns1Filled } from './columns-1-filled.svelte';
|
|
5333
|
+
export { default as IconColumns2Filled } from './columns-2-filled.svelte';
|
|
5334
|
+
export { default as IconColumns3Filled } from './columns-3-filled.svelte';
|
|
5331
5335
|
export { default as IconCompassFilled } from './compass-filled.svelte';
|
|
5332
5336
|
export { default as IconCone2Filled } from './cone-2-filled.svelte';
|
|
5333
5337
|
export { default as IconConeFilled } from './cone-filled.svelte';
|
|
5338
|
+
export { default as IconConfettiFilled } from './confetti-filled.svelte';
|
|
5339
|
+
export { default as IconContainerFilled } from './container-filled.svelte';
|
|
5334
5340
|
export { default as IconContrast2Filled } from './contrast-2-filled.svelte';
|
|
5335
5341
|
export { default as IconContrastFilled } from './contrast-filled.svelte';
|
|
5336
5342
|
export { default as IconCookieManFilled } from './cookie-man-filled.svelte';
|
|
@@ -5574,6 +5580,8 @@ export { default as IconLayoutAlignLeftFilled } from './layout-align-left-filled
|
|
|
5574
5580
|
export { default as IconLayoutAlignMiddleFilled } from './layout-align-middle-filled.svelte';
|
|
5575
5581
|
export { default as IconLayoutAlignRightFilled } from './layout-align-right-filled.svelte';
|
|
5576
5582
|
export { default as IconLayoutAlignTopFilled } from './layout-align-top-filled.svelte';
|
|
5583
|
+
export { default as IconLayoutBoardSplitFilled } from './layout-board-split-filled.svelte';
|
|
5584
|
+
export { default as IconLayoutBoardFilled } from './layout-board-filled.svelte';
|
|
5577
5585
|
export { default as IconLayoutBottombarCollapseFilled } from './layout-bottombar-collapse-filled.svelte';
|
|
5578
5586
|
export { default as IconLayoutBottombarExpandFilled } from './layout-bottombar-expand-filled.svelte';
|
|
5579
5587
|
export { default as IconLayoutBottombarFilled } from './layout-bottombar-filled.svelte';
|
|
@@ -5596,6 +5604,8 @@ export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svel
|
|
|
5596
5604
|
export { default as IconLayoutFilled } from './layout-filled.svelte';
|
|
5597
5605
|
export { default as IconLegoFilled } from './lego-filled.svelte';
|
|
5598
5606
|
export { default as IconLemon2Filled } from './lemon-2-filled.svelte';
|
|
5607
|
+
export { default as IconLibraryPlusFilled } from './library-plus-filled.svelte';
|
|
5608
|
+
export { default as IconLibraryFilled } from './library-filled.svelte';
|
|
5599
5609
|
export { default as IconLifebuoyFilled } from './lifebuoy-filled.svelte';
|
|
5600
5610
|
export { default as IconLivePhotoFilled } from './live-photo-filled.svelte';
|
|
5601
5611
|
export { default as IconLiveViewFilled } from './live-view-filled.svelte';
|
|
@@ -5644,6 +5654,8 @@ export { default as IconMugFilled } from './mug-filled.svelte';
|
|
|
5644
5654
|
export { default as IconMushroomFilled } from './mushroom-filled.svelte';
|
|
5645
5655
|
export { default as IconNavigationFilled } from './navigation-filled.svelte';
|
|
5646
5656
|
export { default as IconNurseFilled } from './nurse-filled.svelte';
|
|
5657
|
+
export { default as IconOctagonMinusFilled } from './octagon-minus-filled.svelte';
|
|
5658
|
+
export { default as IconOctagonPlusFilled } from './octagon-plus-filled.svelte';
|
|
5647
5659
|
export { default as IconOctagonFilled } from './octagon-filled.svelte';
|
|
5648
5660
|
export { default as IconOvalVerticalFilled } from './oval-vertical-filled.svelte';
|
|
5649
5661
|
export { default as IconOvalFilled } from './oval-filled.svelte';
|
|
@@ -5699,6 +5711,12 @@ export { default as IconPuzzleFilled } from './puzzle-filled.svelte';
|
|
|
5699
5711
|
export { default as IconQuoteFilled } from './quote-filled.svelte';
|
|
5700
5712
|
export { default as IconRadarFilled } from './radar-filled.svelte';
|
|
5701
5713
|
export { default as IconRadioactiveFilled } from './radioactive-filled.svelte';
|
|
5714
|
+
export { default as IconReceiptDollarFilled } from './receipt-dollar-filled.svelte';
|
|
5715
|
+
export { default as IconReceiptEuroFilled } from './receipt-euro-filled.svelte';
|
|
5716
|
+
export { default as IconReceiptPoundFilled } from './receipt-pound-filled.svelte';
|
|
5717
|
+
export { default as IconReceiptRupeeFilled } from './receipt-rupee-filled.svelte';
|
|
5718
|
+
export { default as IconReceiptYenFilled } from './receipt-yen-filled.svelte';
|
|
5719
|
+
export { default as IconReceiptYuanFilled } from './receipt-yuan-filled.svelte';
|
|
5702
5720
|
export { default as IconReceiptFilled } from './receipt-filled.svelte';
|
|
5703
5721
|
export { default as IconRectangleVerticalFilled } from './rectangle-vertical-filled.svelte';
|
|
5704
5722
|
export { default as IconRectangleFilled } from './rectangle-filled.svelte';
|
|
@@ -5875,6 +5893,7 @@ export { default as IconTagFilled } from './tag-filled.svelte';
|
|
|
5875
5893
|
export { default as IconTagsFilled } from './tags-filled.svelte';
|
|
5876
5894
|
export { default as IconTemperatureMinusFilled } from './temperature-minus-filled.svelte';
|
|
5877
5895
|
export { default as IconTemperaturePlusFilled } from './temperature-plus-filled.svelte';
|
|
5896
|
+
export { default as IconTemplateFilled } from './template-filled.svelte';
|
|
5878
5897
|
export { default as IconTestPipe2Filled } from './test-pipe-2-filled.svelte';
|
|
5879
5898
|
export { default as IconThumbDownFilled } from './thumb-down-filled.svelte';
|
|
5880
5899
|
export { default as IconThumbUpFilled } from './thumb-up-filled.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -5165,6 +5165,7 @@ export { default as IconBrightnessFilled } from './brightness-filled.svelte';
|
|
|
5165
5165
|
export { default as IconBubbleTextFilled } from './bubble-text-filled.svelte';
|
|
5166
5166
|
export { default as IconBubbleFilled } from './bubble-filled.svelte';
|
|
5167
5167
|
export { default as IconBugFilled } from './bug-filled.svelte';
|
|
5168
|
+
export { default as IconBuildingBridge2Filled } from './building-bridge-2-filled.svelte';
|
|
5168
5169
|
export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
|
|
5169
5170
|
export { default as IconBulbFilled } from './bulb-filled.svelte';
|
|
5170
5171
|
export { default as IconBusFilled } from './bus-filled.svelte';
|
|
@@ -5328,9 +5329,14 @@ export { default as IconCoinTakaFilled } from './coin-taka-filled.svelte';
|
|
|
5328
5329
|
export { default as IconCoinYenFilled } from './coin-yen-filled.svelte';
|
|
5329
5330
|
export { default as IconCoinYuanFilled } from './coin-yuan-filled.svelte';
|
|
5330
5331
|
export { default as IconCoinFilled } from './coin-filled.svelte';
|
|
5332
|
+
export { default as IconColumns1Filled } from './columns-1-filled.svelte';
|
|
5333
|
+
export { default as IconColumns2Filled } from './columns-2-filled.svelte';
|
|
5334
|
+
export { default as IconColumns3Filled } from './columns-3-filled.svelte';
|
|
5331
5335
|
export { default as IconCompassFilled } from './compass-filled.svelte';
|
|
5332
5336
|
export { default as IconCone2Filled } from './cone-2-filled.svelte';
|
|
5333
5337
|
export { default as IconConeFilled } from './cone-filled.svelte';
|
|
5338
|
+
export { default as IconConfettiFilled } from './confetti-filled.svelte';
|
|
5339
|
+
export { default as IconContainerFilled } from './container-filled.svelte';
|
|
5334
5340
|
export { default as IconContrast2Filled } from './contrast-2-filled.svelte';
|
|
5335
5341
|
export { default as IconContrastFilled } from './contrast-filled.svelte';
|
|
5336
5342
|
export { default as IconCookieManFilled } from './cookie-man-filled.svelte';
|
|
@@ -5574,6 +5580,8 @@ export { default as IconLayoutAlignLeftFilled } from './layout-align-left-filled
|
|
|
5574
5580
|
export { default as IconLayoutAlignMiddleFilled } from './layout-align-middle-filled.svelte';
|
|
5575
5581
|
export { default as IconLayoutAlignRightFilled } from './layout-align-right-filled.svelte';
|
|
5576
5582
|
export { default as IconLayoutAlignTopFilled } from './layout-align-top-filled.svelte';
|
|
5583
|
+
export { default as IconLayoutBoardSplitFilled } from './layout-board-split-filled.svelte';
|
|
5584
|
+
export { default as IconLayoutBoardFilled } from './layout-board-filled.svelte';
|
|
5577
5585
|
export { default as IconLayoutBottombarCollapseFilled } from './layout-bottombar-collapse-filled.svelte';
|
|
5578
5586
|
export { default as IconLayoutBottombarExpandFilled } from './layout-bottombar-expand-filled.svelte';
|
|
5579
5587
|
export { default as IconLayoutBottombarFilled } from './layout-bottombar-filled.svelte';
|
|
@@ -5596,6 +5604,8 @@ export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svel
|
|
|
5596
5604
|
export { default as IconLayoutFilled } from './layout-filled.svelte';
|
|
5597
5605
|
export { default as IconLegoFilled } from './lego-filled.svelte';
|
|
5598
5606
|
export { default as IconLemon2Filled } from './lemon-2-filled.svelte';
|
|
5607
|
+
export { default as IconLibraryPlusFilled } from './library-plus-filled.svelte';
|
|
5608
|
+
export { default as IconLibraryFilled } from './library-filled.svelte';
|
|
5599
5609
|
export { default as IconLifebuoyFilled } from './lifebuoy-filled.svelte';
|
|
5600
5610
|
export { default as IconLivePhotoFilled } from './live-photo-filled.svelte';
|
|
5601
5611
|
export { default as IconLiveViewFilled } from './live-view-filled.svelte';
|
|
@@ -5644,6 +5654,8 @@ export { default as IconMugFilled } from './mug-filled.svelte';
|
|
|
5644
5654
|
export { default as IconMushroomFilled } from './mushroom-filled.svelte';
|
|
5645
5655
|
export { default as IconNavigationFilled } from './navigation-filled.svelte';
|
|
5646
5656
|
export { default as IconNurseFilled } from './nurse-filled.svelte';
|
|
5657
|
+
export { default as IconOctagonMinusFilled } from './octagon-minus-filled.svelte';
|
|
5658
|
+
export { default as IconOctagonPlusFilled } from './octagon-plus-filled.svelte';
|
|
5647
5659
|
export { default as IconOctagonFilled } from './octagon-filled.svelte';
|
|
5648
5660
|
export { default as IconOvalVerticalFilled } from './oval-vertical-filled.svelte';
|
|
5649
5661
|
export { default as IconOvalFilled } from './oval-filled.svelte';
|
|
@@ -5699,6 +5711,12 @@ export { default as IconPuzzleFilled } from './puzzle-filled.svelte';
|
|
|
5699
5711
|
export { default as IconQuoteFilled } from './quote-filled.svelte';
|
|
5700
5712
|
export { default as IconRadarFilled } from './radar-filled.svelte';
|
|
5701
5713
|
export { default as IconRadioactiveFilled } from './radioactive-filled.svelte';
|
|
5714
|
+
export { default as IconReceiptDollarFilled } from './receipt-dollar-filled.svelte';
|
|
5715
|
+
export { default as IconReceiptEuroFilled } from './receipt-euro-filled.svelte';
|
|
5716
|
+
export { default as IconReceiptPoundFilled } from './receipt-pound-filled.svelte';
|
|
5717
|
+
export { default as IconReceiptRupeeFilled } from './receipt-rupee-filled.svelte';
|
|
5718
|
+
export { default as IconReceiptYenFilled } from './receipt-yen-filled.svelte';
|
|
5719
|
+
export { default as IconReceiptYuanFilled } from './receipt-yuan-filled.svelte';
|
|
5702
5720
|
export { default as IconReceiptFilled } from './receipt-filled.svelte';
|
|
5703
5721
|
export { default as IconRectangleVerticalFilled } from './rectangle-vertical-filled.svelte';
|
|
5704
5722
|
export { default as IconRectangleFilled } from './rectangle-filled.svelte';
|
|
@@ -5875,6 +5893,7 @@ export { default as IconTagFilled } from './tag-filled.svelte';
|
|
|
5875
5893
|
export { default as IconTagsFilled } from './tags-filled.svelte';
|
|
5876
5894
|
export { default as IconTemperatureMinusFilled } from './temperature-minus-filled.svelte';
|
|
5877
5895
|
export { default as IconTemperaturePlusFilled } from './temperature-plus-filled.svelte';
|
|
5896
|
+
export { default as IconTemplateFilled } from './template-filled.svelte';
|
|
5878
5897
|
export { default as IconTestPipe2Filled } from './test-pipe-2-filled.svelte';
|
|
5879
5898
|
export { default as IconThumbDownFilled } from './thumb-down-filled.svelte';
|
|
5880
5899
|
export { default as IconThumbUpFilled } from './thumb-up-filled.svelte';
|
|
@@ -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 {};
|
package/dist/icons-list.js
CHANGED
|
@@ -5166,6 +5166,7 @@ export default [
|
|
|
5166
5166
|
"bubble-text-filled",
|
|
5167
5167
|
"bubble-filled",
|
|
5168
5168
|
"bug-filled",
|
|
5169
|
+
"building-bridge-2-filled",
|
|
5169
5170
|
"building-broadcast-tower-filled",
|
|
5170
5171
|
"bulb-filled",
|
|
5171
5172
|
"bus-filled",
|
|
@@ -5329,9 +5330,14 @@ export default [
|
|
|
5329
5330
|
"coin-yen-filled",
|
|
5330
5331
|
"coin-yuan-filled",
|
|
5331
5332
|
"coin-filled",
|
|
5333
|
+
"columns-1-filled",
|
|
5334
|
+
"columns-2-filled",
|
|
5335
|
+
"columns-3-filled",
|
|
5332
5336
|
"compass-filled",
|
|
5333
5337
|
"cone-2-filled",
|
|
5334
5338
|
"cone-filled",
|
|
5339
|
+
"confetti-filled",
|
|
5340
|
+
"container-filled",
|
|
5335
5341
|
"contrast-2-filled",
|
|
5336
5342
|
"contrast-filled",
|
|
5337
5343
|
"cookie-man-filled",
|
|
@@ -5575,6 +5581,8 @@ export default [
|
|
|
5575
5581
|
"layout-align-middle-filled",
|
|
5576
5582
|
"layout-align-right-filled",
|
|
5577
5583
|
"layout-align-top-filled",
|
|
5584
|
+
"layout-board-split-filled",
|
|
5585
|
+
"layout-board-filled",
|
|
5578
5586
|
"layout-bottombar-collapse-filled",
|
|
5579
5587
|
"layout-bottombar-expand-filled",
|
|
5580
5588
|
"layout-bottombar-filled",
|
|
@@ -5597,6 +5605,8 @@ export default [
|
|
|
5597
5605
|
"layout-filled",
|
|
5598
5606
|
"lego-filled",
|
|
5599
5607
|
"lemon-2-filled",
|
|
5608
|
+
"library-plus-filled",
|
|
5609
|
+
"library-filled",
|
|
5600
5610
|
"lifebuoy-filled",
|
|
5601
5611
|
"live-photo-filled",
|
|
5602
5612
|
"live-view-filled",
|
|
@@ -5645,6 +5655,8 @@ export default [
|
|
|
5645
5655
|
"mushroom-filled",
|
|
5646
5656
|
"navigation-filled",
|
|
5647
5657
|
"nurse-filled",
|
|
5658
|
+
"octagon-minus-filled",
|
|
5659
|
+
"octagon-plus-filled",
|
|
5648
5660
|
"octagon-filled",
|
|
5649
5661
|
"oval-vertical-filled",
|
|
5650
5662
|
"oval-filled",
|
|
@@ -5700,6 +5712,12 @@ export default [
|
|
|
5700
5712
|
"quote-filled",
|
|
5701
5713
|
"radar-filled",
|
|
5702
5714
|
"radioactive-filled",
|
|
5715
|
+
"receipt-dollar-filled",
|
|
5716
|
+
"receipt-euro-filled",
|
|
5717
|
+
"receipt-pound-filled",
|
|
5718
|
+
"receipt-rupee-filled",
|
|
5719
|
+
"receipt-yen-filled",
|
|
5720
|
+
"receipt-yuan-filled",
|
|
5703
5721
|
"receipt-filled",
|
|
5704
5722
|
"rectangle-vertical-filled",
|
|
5705
5723
|
"rectangle-filled",
|
|
@@ -5876,6 +5894,7 @@ export default [
|
|
|
5876
5894
|
"tags-filled",
|
|
5877
5895
|
"temperature-minus-filled",
|
|
5878
5896
|
"temperature-plus-filled",
|
|
5897
|
+
"template-filled",
|
|
5879
5898
|
"test-pipe-2-filled",
|
|
5880
5899
|
"thumb-down-filled",
|
|
5881
5900
|
"thumb-up-filled",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.34.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.
|
|
52
|
+
"@tabler/icons": "3.34.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@sveltejs/package": "^2.2.7",
|