@tabler/icons-svelte 3.5.0 → 3.6.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/align-left-2.svelte +6 -0
- package/dist/icons/align-left-2.svelte.d.ts +17 -0
- package/dist/icons/align-right-2.svelte +6 -0
- package/dist/icons/align-right-2.svelte.d.ts +17 -0
- package/dist/icons/binoculars-filled.svelte +6 -0
- package/dist/icons/binoculars-filled.svelte.d.ts +17 -0
- package/dist/icons/binoculars.svelte +6 -0
- package/dist/icons/binoculars.svelte.d.ts +17 -0
- package/dist/icons/building-off.svelte +6 -0
- package/dist/icons/building-off.svelte.d.ts +17 -0
- package/dist/icons/cliff-jumping.svelte +6 -0
- package/dist/icons/cliff-jumping.svelte.d.ts +17 -0
- package/dist/icons/contract.svelte +6 -0
- package/dist/icons/contract.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +18 -0
- package/dist/icons/index.js +18 -0
- package/dist/icons/mood-angry-filled.svelte +6 -0
- package/dist/icons/mood-angry-filled.svelte.d.ts +17 -0
- package/dist/icons/mood-crazy-happy-filled.svelte +6 -0
- package/dist/icons/mood-crazy-happy-filled.svelte.d.ts +17 -0
- package/dist/icons/mood-wrrr-filled.svelte +6 -0
- package/dist/icons/mood-wrrr-filled.svelte.d.ts +17 -0
- package/dist/icons/pill-filled.svelte +6 -0
- package/dist/icons/pill-filled.svelte.d.ts +17 -0
- package/dist/icons/receipt-filled.svelte +6 -0
- package/dist/icons/receipt-filled.svelte.d.ts +17 -0
- package/dist/icons/rosette-discount-filled.svelte +6 -0
- package/dist/icons/rosette-discount-filled.svelte.d.ts +17 -0
- package/dist/icons/scuba-diving-tank-filled.svelte +6 -0
- package/dist/icons/scuba-diving-tank-filled.svelte.d.ts +17 -0
- package/dist/icons/scuba-diving-tank.svelte +6 -0
- package/dist/icons/scuba-diving-tank.svelte.d.ts +17 -0
- package/dist/icons/steering-wheel-filled.svelte +6 -0
- package/dist/icons/steering-wheel-filled.svelte.d.ts +17 -0
- package/dist/icons/tag-filled.svelte +6 -0
- package/dist/icons/tag-filled.svelte.d.ts +17 -0
- package/dist/icons/tags-filled.svelte +6 -0
- package/dist/icons/tags-filled.svelte.d.ts +17 -0
- package/dist/icons-list.js +18 -0
- package/package.json +74 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 4v16" }], ["path", { "d": "M8 6h12" }], ["path", { "d": "M8 12h6" }], ["path", { "d": "M8 18h10" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="align-left-2" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type AlignLeft_2Props = typeof __propDef.props;
|
|
13
|
+
export type AlignLeft_2Events = typeof __propDef.events;
|
|
14
|
+
export type AlignLeft_2Slots = typeof __propDef.slots;
|
|
15
|
+
export default class AlignLeft_2 extends SvelteComponentTyped<AlignLeft_2Props, AlignLeft_2Events, AlignLeft_2Slots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M20 4v16" }], ["path", { "d": "M4 6h12" }], ["path", { "d": "M10 12h6" }], ["path", { "d": "M6 18h10" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="align-right-2" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type AlignRight_2Props = typeof __propDef.props;
|
|
13
|
+
export type AlignRight_2Events = typeof __propDef.events;
|
|
14
|
+
export type AlignRight_2Slots = typeof __propDef.slots;
|
|
15
|
+
export default class AlignRight_2 extends SvelteComponentTyped<AlignRight_2Props, AlignRight_2Events, AlignRight_2Slots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8.887 6.748c-.163 0 -.337 .016 -.506 .057c-.172 .041 -.582 .165 -.838 .562l-.014 .02l-.607 1.05c-.307 .205 -.534 .46 -.693 .717l-.014 .02l-2.572 4.65a4.009 4.009 0 0 0 -.274 .494l-.006 .01a3.99 3.99 0 0 0 -.363 1.672a4 4 0 0 0 8 0v-1h2v1a4 4 0 1 0 7.635 -1.67l-.004 -.012a4.008 4.008 0 0 0 -.274 -.494l-2.572 -4.65l-.014 -.02a2.337 2.337 0 0 0 -.693 -.716l-.607 -1.051l-.014 -.02c-.256 -.397 -.667 -.52 -.838 -.562a2.225 2.225 0 0 0 -.664 -.051a2.06 2.06 0 0 0 -.68 .156c-.184 .081 -.638 .327 -.754 .889l-.007 .037l-.14 1.1c-.22 .283 -.374 .64 -.374 1.064v1h-2v-1c0 -.424 -.154 -.781 -.373 -1.064l-.14 -1.1l-.008 -.037c-.116 -.562 -.57 -.808 -.754 -.889a2.06 2.06 0 0 0 -.68 -.156a2.374 2.374 0 0 0 -.158 -.006zm-1.887 7.252a2 2 0 1 1 -1.838 1.209l.19 -.342c.36 -.523 .964 -.867 1.648 -.867zm10 0c.684 0 1.288 .344 1.648 .867l.19 .342a2 2 0 1 1 -1.838 -1.209z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="binoculars-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 BinocularsFilledProps = typeof __propDef.props;
|
|
13
|
+
export type BinocularsFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type BinocularsFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BinocularsFilled extends SvelteComponentTyped<BinocularsFilledProps, BinocularsFilledEvents, BinocularsFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" }], ["path", { "d": "M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" }], ["path", { "d": "M16.346 9.17l-.729 -1.261c-.16 -.248 -1.056 -.203 -1.117 .091l-.177 1.38" }], ["path", { "d": "M19.761 14.813l-2.84 -5.133c-.189 -.31 -.592 -.68 -1.421 -.68c-.828 0 -1.5 .448 -1.5 1v6" }], ["path", { "d": "M7.654 9.17l.729 -1.261c.16 -.249 1.056 -.203 1.117 .091l.177 1.38" }], ["path", { "d": "M4.239 14.813l2.84 -5.133c.189 -.31 .592 -.68 1.421 -.68c.828 0 1.5 .448 1.5 1v6" }], ["rect", { "width": "4", "height": "2", "x": "10", "y": "12" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="binoculars" {...$$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 BinocularsProps = typeof __propDef.props;
|
|
13
|
+
export type BinocularsEvents = typeof __propDef.events;
|
|
14
|
+
export type BinocularsSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Binoculars extends SvelteComponentTyped<BinocularsProps, BinocularsEvents, BinocularsSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 21h18" }], ["path", { "d": "M9 12h1" }], ["path", { "d": "M9 16h1" }], ["path", { "d": "M14 8h1" }], ["path", { "d": "M14 16h1" }], ["path", { "d": "M5 21v-16" }], ["path", { "d": "M7 3h10c1 0 2 1 2 2v10" }], ["path", { "d": "M19 19v2" }], ["path", { "d": "M3 3l18 18" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="building-off" {...$$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 BuildingOffProps = typeof __propDef.props;
|
|
13
|
+
export type BuildingOffEvents = typeof __propDef.events;
|
|
14
|
+
export type BuildingOffSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BuildingOff extends SvelteComponentTyped<BuildingOffProps, BuildingOffEvents, BuildingOffSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M14 7a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }], ["path", { "d": "M10.5 18l2.5 2l2 -2" }], ["path", { "d": "M18 21l3 -3l-4 -2l-1 -5" }], ["path", { "d": "M10.5 7.5l2 3l3.5 .5l3 -2l.5 -3" }], ["path", { "d": "M4 21v-1l2 -3l.5 -2.5l1.5 -2.5l-1 -5l1 -3l-1 -1l-2 .5l-2 -.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="cliff-jumping" {...$$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 CliffJumpingProps = typeof __propDef.props;
|
|
13
|
+
export type CliffJumpingEvents = typeof __propDef.events;
|
|
14
|
+
export type CliffJumpingSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CliffJumping extends SvelteComponentTyped<CliffJumpingProps, CliffJumpingEvents, CliffJumpingSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8 21h-2a3 3 0 0 1 -3 -3v-1h5.5" }], ["path", { "d": "M17 8.5v-3.5a2 2 0 1 1 2 2h-2" }], ["path", { "d": "M19 3h-11a3 3 0 0 0 -3 3v11" }], ["path", { "d": "M9 7h4" }], ["path", { "d": "M9 11h4" }], ["path", { "d": "M18.42 12.61a2.1 2.1 0 0 1 2.97 2.97l-6.39 6.42h-3v-3z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="contract" {...$$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 ContractProps = typeof __propDef.props;
|
|
13
|
+
export type ContractEvents = typeof __propDef.events;
|
|
14
|
+
export type ContractSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Contract extends SvelteComponentTyped<ContractProps, ContractEvents, ContractSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -88,7 +88,9 @@ export { default as IconAlignBoxTopLeft } from './align-box-top-left.svelte';
|
|
|
88
88
|
export { default as IconAlignBoxTopRight } from './align-box-top-right.svelte';
|
|
89
89
|
export { default as IconAlignCenter } from './align-center.svelte';
|
|
90
90
|
export { default as IconAlignJustified } from './align-justified.svelte';
|
|
91
|
+
export { default as IconAlignLeft2 } from './align-left-2.svelte';
|
|
91
92
|
export { default as IconAlignLeft } from './align-left.svelte';
|
|
93
|
+
export { default as IconAlignRight2 } from './align-right-2.svelte';
|
|
92
94
|
export { default as IconAlignRight } from './align-right.svelte';
|
|
93
95
|
export { default as IconAlpha } from './alpha.svelte';
|
|
94
96
|
export { default as IconAlphabetCyrillic } from './alphabet-cyrillic.svelte';
|
|
@@ -458,6 +460,7 @@ export { default as IconBinaryOff } from './binary-off.svelte';
|
|
|
458
460
|
export { default as IconBinaryTree2 } from './binary-tree-2.svelte';
|
|
459
461
|
export { default as IconBinaryTree } from './binary-tree.svelte';
|
|
460
462
|
export { default as IconBinary } from './binary.svelte';
|
|
463
|
+
export { default as IconBinoculars } from './binoculars.svelte';
|
|
461
464
|
export { default as IconBiohazardOff } from './biohazard-off.svelte';
|
|
462
465
|
export { default as IconBiohazard } from './biohazard.svelte';
|
|
463
466
|
export { default as IconBlade } from './blade.svelte';
|
|
@@ -978,6 +981,7 @@ export { default as IconBuildingHospital } from './building-hospital.svelte';
|
|
|
978
981
|
export { default as IconBuildingLighthouse } from './building-lighthouse.svelte';
|
|
979
982
|
export { default as IconBuildingMonument } from './building-monument.svelte';
|
|
980
983
|
export { default as IconBuildingMosque } from './building-mosque.svelte';
|
|
984
|
+
export { default as IconBuildingOff } from './building-off.svelte';
|
|
981
985
|
export { default as IconBuildingPavilion } from './building-pavilion.svelte';
|
|
982
986
|
export { default as IconBuildingSkyscraper } from './building-skyscraper.svelte';
|
|
983
987
|
export { default as IconBuildingStadium } from './building-stadium.svelte';
|
|
@@ -1317,6 +1321,7 @@ export { default as IconCircuitVoltmeter } from './circuit-voltmeter.svelte';
|
|
|
1317
1321
|
export { default as IconClearAll } from './clear-all.svelte';
|
|
1318
1322
|
export { default as IconClearFormatting } from './clear-formatting.svelte';
|
|
1319
1323
|
export { default as IconClick } from './click.svelte';
|
|
1324
|
+
export { default as IconCliffJumping } from './cliff-jumping.svelte';
|
|
1320
1325
|
export { default as IconClipboardCheck } from './clipboard-check.svelte';
|
|
1321
1326
|
export { default as IconClipboardCopy } from './clipboard-copy.svelte';
|
|
1322
1327
|
export { default as IconClipboardData } from './clipboard-data.svelte';
|
|
@@ -1458,6 +1463,7 @@ export { default as IconConfetti } from './confetti.svelte';
|
|
|
1458
1463
|
export { default as IconConfucius } from './confucius.svelte';
|
|
1459
1464
|
export { default as IconContainerOff } from './container-off.svelte';
|
|
1460
1465
|
export { default as IconContainer } from './container.svelte';
|
|
1466
|
+
export { default as IconContract } from './contract.svelte';
|
|
1461
1467
|
export { default as IconContrast2Off } from './contrast-2-off.svelte';
|
|
1462
1468
|
export { default as IconContrast2 } from './contrast-2.svelte';
|
|
1463
1469
|
export { default as IconContrastOff } from './contrast-off.svelte';
|
|
@@ -3753,6 +3759,7 @@ export { default as IconScriptMinus } from './script-minus.svelte';
|
|
|
3753
3759
|
export { default as IconScriptPlus } from './script-plus.svelte';
|
|
3754
3760
|
export { default as IconScriptX } from './script-x.svelte';
|
|
3755
3761
|
export { default as IconScript } from './script.svelte';
|
|
3762
|
+
export { default as IconScubaDivingTank } from './scuba-diving-tank.svelte';
|
|
3756
3763
|
export { default as IconScubaDiving } from './scuba-diving.svelte';
|
|
3757
3764
|
export { default as IconScubaMaskOff } from './scuba-mask-off.svelte';
|
|
3758
3765
|
export { default as IconScubaMask } from './scuba-mask.svelte';
|
|
@@ -4707,6 +4714,7 @@ export { default as IconBellRingingFilled } from './bell-ringing-filled.svelte';
|
|
|
4707
4714
|
export { default as IconBellXFilled } from './bell-x-filled.svelte';
|
|
4708
4715
|
export { default as IconBellZFilled } from './bell-z-filled.svelte';
|
|
4709
4716
|
export { default as IconBellFilled } from './bell-filled.svelte';
|
|
4717
|
+
export { default as IconBinocularsFilled } from './binoculars-filled.svelte';
|
|
4710
4718
|
export { default as IconBiohazardFilled } from './biohazard-filled.svelte';
|
|
4711
4719
|
export { default as IconBladeFilled } from './blade-filled.svelte';
|
|
4712
4720
|
export { default as IconBlobFilled } from './blob-filled.svelte';
|
|
@@ -5053,13 +5061,16 @@ export { default as IconMessageFilled } from './message-filled.svelte';
|
|
|
5053
5061
|
export { default as IconMickeyFilled } from './mickey-filled.svelte';
|
|
5054
5062
|
export { default as IconMicrophoneFilled } from './microphone-filled.svelte';
|
|
5055
5063
|
export { default as IconMicrowaveFilled } from './microwave-filled.svelte';
|
|
5064
|
+
export { default as IconMoodAngryFilled } from './mood-angry-filled.svelte';
|
|
5056
5065
|
export { default as IconMoodConfuzedFilled } from './mood-confuzed-filled.svelte';
|
|
5066
|
+
export { default as IconMoodCrazyHappyFilled } from './mood-crazy-happy-filled.svelte';
|
|
5057
5067
|
export { default as IconMoodEmptyFilled } from './mood-empty-filled.svelte';
|
|
5058
5068
|
export { default as IconMoodHappyFilled } from './mood-happy-filled.svelte';
|
|
5059
5069
|
export { default as IconMoodKidFilled } from './mood-kid-filled.svelte';
|
|
5060
5070
|
export { default as IconMoodNeutralFilled } from './mood-neutral-filled.svelte';
|
|
5061
5071
|
export { default as IconMoodSadFilled } from './mood-sad-filled.svelte';
|
|
5062
5072
|
export { default as IconMoodSmileFilled } from './mood-smile-filled.svelte';
|
|
5073
|
+
export { default as IconMoodWrrrFilled } from './mood-wrrr-filled.svelte';
|
|
5063
5074
|
export { default as IconMoonFilled } from './moon-filled.svelte';
|
|
5064
5075
|
export { default as IconMouseFilled } from './mouse-filled.svelte';
|
|
5065
5076
|
export { default as IconMushroomFilled } from './mushroom-filled.svelte';
|
|
@@ -5079,6 +5090,7 @@ export { default as IconPhoneFilled } from './phone-filled.svelte';
|
|
|
5079
5090
|
export { default as IconPhotoFilled } from './photo-filled.svelte';
|
|
5080
5091
|
export { default as IconPictureInPictureTopFilled } from './picture-in-picture-top-filled.svelte';
|
|
5081
5092
|
export { default as IconPictureInPictureFilled } from './picture-in-picture-filled.svelte';
|
|
5093
|
+
export { default as IconPillFilled } from './pill-filled.svelte';
|
|
5082
5094
|
export { default as IconPinFilled } from './pin-filled.svelte';
|
|
5083
5095
|
export { default as IconPinnedFilled } from './pinned-filled.svelte';
|
|
5084
5096
|
export { default as IconPlayerEjectFilled } from './player-eject-filled.svelte';
|
|
@@ -5097,6 +5109,7 @@ export { default as IconPooFilled } from './poo-filled.svelte';
|
|
|
5097
5109
|
export { default as IconPuzzleFilled } from './puzzle-filled.svelte';
|
|
5098
5110
|
export { default as IconRadarFilled } from './radar-filled.svelte';
|
|
5099
5111
|
export { default as IconRadioactiveFilled } from './radioactive-filled.svelte';
|
|
5112
|
+
export { default as IconReceiptFilled } from './receipt-filled.svelte';
|
|
5100
5113
|
export { default as IconRectangleVerticalFilled } from './rectangle-vertical-filled.svelte';
|
|
5101
5114
|
export { default as IconRectangleFilled } from './rectangle-filled.svelte';
|
|
5102
5115
|
export { default as IconRelationManyToManyFilled } from './relation-many-to-many-filled.svelte';
|
|
@@ -5104,7 +5117,9 @@ export { default as IconRelationOneToManyFilled } from './relation-one-to-many-f
|
|
|
5104
5117
|
export { default as IconRelationOneToOneFilled } from './relation-one-to-one-filled.svelte';
|
|
5105
5118
|
export { default as IconReplaceFilled } from './replace-filled.svelte';
|
|
5106
5119
|
export { default as IconRosetteDiscountCheckFilled } from './rosette-discount-check-filled.svelte';
|
|
5120
|
+
export { default as IconRosetteDiscountFilled } from './rosette-discount-filled.svelte';
|
|
5107
5121
|
export { default as IconRosetteFilled } from './rosette-filled.svelte';
|
|
5122
|
+
export { default as IconScubaDivingTankFilled } from './scuba-diving-tank-filled.svelte';
|
|
5108
5123
|
export { default as IconSectionFilled } from './section-filled.svelte';
|
|
5109
5124
|
export { default as IconSettingsFilled } from './settings-filled.svelte';
|
|
5110
5125
|
export { default as IconShieldCheckFilled } from './shield-check-filled.svelte';
|
|
@@ -5243,9 +5258,12 @@ export { default as IconStackFilled } from './stack-filled.svelte';
|
|
|
5243
5258
|
export { default as IconStarHalfFilled } from './star-half-filled.svelte';
|
|
5244
5259
|
export { default as IconStarFilled } from './star-filled.svelte';
|
|
5245
5260
|
export { default as IconStarsFilled } from './stars-filled.svelte';
|
|
5261
|
+
export { default as IconSteeringWheelFilled } from './steering-wheel-filled.svelte';
|
|
5246
5262
|
export { default as IconSunFilled } from './sun-filled.svelte';
|
|
5247
5263
|
export { default as IconSunglassesFilled } from './sunglasses-filled.svelte';
|
|
5248
5264
|
export { default as IconTableFilled } from './table-filled.svelte';
|
|
5265
|
+
export { default as IconTagFilled } from './tag-filled.svelte';
|
|
5266
|
+
export { default as IconTagsFilled } from './tags-filled.svelte';
|
|
5249
5267
|
export { default as IconThumbDownFilled } from './thumb-down-filled.svelte';
|
|
5250
5268
|
export { default as IconThumbUpFilled } from './thumb-up-filled.svelte';
|
|
5251
5269
|
export { default as IconTiltShiftFilled } from './tilt-shift-filled.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -88,7 +88,9 @@ export { default as IconAlignBoxTopLeft } from './align-box-top-left.svelte';
|
|
|
88
88
|
export { default as IconAlignBoxTopRight } from './align-box-top-right.svelte';
|
|
89
89
|
export { default as IconAlignCenter } from './align-center.svelte';
|
|
90
90
|
export { default as IconAlignJustified } from './align-justified.svelte';
|
|
91
|
+
export { default as IconAlignLeft2 } from './align-left-2.svelte';
|
|
91
92
|
export { default as IconAlignLeft } from './align-left.svelte';
|
|
93
|
+
export { default as IconAlignRight2 } from './align-right-2.svelte';
|
|
92
94
|
export { default as IconAlignRight } from './align-right.svelte';
|
|
93
95
|
export { default as IconAlpha } from './alpha.svelte';
|
|
94
96
|
export { default as IconAlphabetCyrillic } from './alphabet-cyrillic.svelte';
|
|
@@ -458,6 +460,7 @@ export { default as IconBinaryOff } from './binary-off.svelte';
|
|
|
458
460
|
export { default as IconBinaryTree2 } from './binary-tree-2.svelte';
|
|
459
461
|
export { default as IconBinaryTree } from './binary-tree.svelte';
|
|
460
462
|
export { default as IconBinary } from './binary.svelte';
|
|
463
|
+
export { default as IconBinoculars } from './binoculars.svelte';
|
|
461
464
|
export { default as IconBiohazardOff } from './biohazard-off.svelte';
|
|
462
465
|
export { default as IconBiohazard } from './biohazard.svelte';
|
|
463
466
|
export { default as IconBlade } from './blade.svelte';
|
|
@@ -978,6 +981,7 @@ export { default as IconBuildingHospital } from './building-hospital.svelte';
|
|
|
978
981
|
export { default as IconBuildingLighthouse } from './building-lighthouse.svelte';
|
|
979
982
|
export { default as IconBuildingMonument } from './building-monument.svelte';
|
|
980
983
|
export { default as IconBuildingMosque } from './building-mosque.svelte';
|
|
984
|
+
export { default as IconBuildingOff } from './building-off.svelte';
|
|
981
985
|
export { default as IconBuildingPavilion } from './building-pavilion.svelte';
|
|
982
986
|
export { default as IconBuildingSkyscraper } from './building-skyscraper.svelte';
|
|
983
987
|
export { default as IconBuildingStadium } from './building-stadium.svelte';
|
|
@@ -1317,6 +1321,7 @@ export { default as IconCircuitVoltmeter } from './circuit-voltmeter.svelte';
|
|
|
1317
1321
|
export { default as IconClearAll } from './clear-all.svelte';
|
|
1318
1322
|
export { default as IconClearFormatting } from './clear-formatting.svelte';
|
|
1319
1323
|
export { default as IconClick } from './click.svelte';
|
|
1324
|
+
export { default as IconCliffJumping } from './cliff-jumping.svelte';
|
|
1320
1325
|
export { default as IconClipboardCheck } from './clipboard-check.svelte';
|
|
1321
1326
|
export { default as IconClipboardCopy } from './clipboard-copy.svelte';
|
|
1322
1327
|
export { default as IconClipboardData } from './clipboard-data.svelte';
|
|
@@ -1458,6 +1463,7 @@ export { default as IconConfetti } from './confetti.svelte';
|
|
|
1458
1463
|
export { default as IconConfucius } from './confucius.svelte';
|
|
1459
1464
|
export { default as IconContainerOff } from './container-off.svelte';
|
|
1460
1465
|
export { default as IconContainer } from './container.svelte';
|
|
1466
|
+
export { default as IconContract } from './contract.svelte';
|
|
1461
1467
|
export { default as IconContrast2Off } from './contrast-2-off.svelte';
|
|
1462
1468
|
export { default as IconContrast2 } from './contrast-2.svelte';
|
|
1463
1469
|
export { default as IconContrastOff } from './contrast-off.svelte';
|
|
@@ -3753,6 +3759,7 @@ export { default as IconScriptMinus } from './script-minus.svelte';
|
|
|
3753
3759
|
export { default as IconScriptPlus } from './script-plus.svelte';
|
|
3754
3760
|
export { default as IconScriptX } from './script-x.svelte';
|
|
3755
3761
|
export { default as IconScript } from './script.svelte';
|
|
3762
|
+
export { default as IconScubaDivingTank } from './scuba-diving-tank.svelte';
|
|
3756
3763
|
export { default as IconScubaDiving } from './scuba-diving.svelte';
|
|
3757
3764
|
export { default as IconScubaMaskOff } from './scuba-mask-off.svelte';
|
|
3758
3765
|
export { default as IconScubaMask } from './scuba-mask.svelte';
|
|
@@ -4707,6 +4714,7 @@ export { default as IconBellRingingFilled } from './bell-ringing-filled.svelte';
|
|
|
4707
4714
|
export { default as IconBellXFilled } from './bell-x-filled.svelte';
|
|
4708
4715
|
export { default as IconBellZFilled } from './bell-z-filled.svelte';
|
|
4709
4716
|
export { default as IconBellFilled } from './bell-filled.svelte';
|
|
4717
|
+
export { default as IconBinocularsFilled } from './binoculars-filled.svelte';
|
|
4710
4718
|
export { default as IconBiohazardFilled } from './biohazard-filled.svelte';
|
|
4711
4719
|
export { default as IconBladeFilled } from './blade-filled.svelte';
|
|
4712
4720
|
export { default as IconBlobFilled } from './blob-filled.svelte';
|
|
@@ -5053,13 +5061,16 @@ export { default as IconMessageFilled } from './message-filled.svelte';
|
|
|
5053
5061
|
export { default as IconMickeyFilled } from './mickey-filled.svelte';
|
|
5054
5062
|
export { default as IconMicrophoneFilled } from './microphone-filled.svelte';
|
|
5055
5063
|
export { default as IconMicrowaveFilled } from './microwave-filled.svelte';
|
|
5064
|
+
export { default as IconMoodAngryFilled } from './mood-angry-filled.svelte';
|
|
5056
5065
|
export { default as IconMoodConfuzedFilled } from './mood-confuzed-filled.svelte';
|
|
5066
|
+
export { default as IconMoodCrazyHappyFilled } from './mood-crazy-happy-filled.svelte';
|
|
5057
5067
|
export { default as IconMoodEmptyFilled } from './mood-empty-filled.svelte';
|
|
5058
5068
|
export { default as IconMoodHappyFilled } from './mood-happy-filled.svelte';
|
|
5059
5069
|
export { default as IconMoodKidFilled } from './mood-kid-filled.svelte';
|
|
5060
5070
|
export { default as IconMoodNeutralFilled } from './mood-neutral-filled.svelte';
|
|
5061
5071
|
export { default as IconMoodSadFilled } from './mood-sad-filled.svelte';
|
|
5062
5072
|
export { default as IconMoodSmileFilled } from './mood-smile-filled.svelte';
|
|
5073
|
+
export { default as IconMoodWrrrFilled } from './mood-wrrr-filled.svelte';
|
|
5063
5074
|
export { default as IconMoonFilled } from './moon-filled.svelte';
|
|
5064
5075
|
export { default as IconMouseFilled } from './mouse-filled.svelte';
|
|
5065
5076
|
export { default as IconMushroomFilled } from './mushroom-filled.svelte';
|
|
@@ -5079,6 +5090,7 @@ export { default as IconPhoneFilled } from './phone-filled.svelte';
|
|
|
5079
5090
|
export { default as IconPhotoFilled } from './photo-filled.svelte';
|
|
5080
5091
|
export { default as IconPictureInPictureTopFilled } from './picture-in-picture-top-filled.svelte';
|
|
5081
5092
|
export { default as IconPictureInPictureFilled } from './picture-in-picture-filled.svelte';
|
|
5093
|
+
export { default as IconPillFilled } from './pill-filled.svelte';
|
|
5082
5094
|
export { default as IconPinFilled } from './pin-filled.svelte';
|
|
5083
5095
|
export { default as IconPinnedFilled } from './pinned-filled.svelte';
|
|
5084
5096
|
export { default as IconPlayerEjectFilled } from './player-eject-filled.svelte';
|
|
@@ -5097,6 +5109,7 @@ export { default as IconPooFilled } from './poo-filled.svelte';
|
|
|
5097
5109
|
export { default as IconPuzzleFilled } from './puzzle-filled.svelte';
|
|
5098
5110
|
export { default as IconRadarFilled } from './radar-filled.svelte';
|
|
5099
5111
|
export { default as IconRadioactiveFilled } from './radioactive-filled.svelte';
|
|
5112
|
+
export { default as IconReceiptFilled } from './receipt-filled.svelte';
|
|
5100
5113
|
export { default as IconRectangleVerticalFilled } from './rectangle-vertical-filled.svelte';
|
|
5101
5114
|
export { default as IconRectangleFilled } from './rectangle-filled.svelte';
|
|
5102
5115
|
export { default as IconRelationManyToManyFilled } from './relation-many-to-many-filled.svelte';
|
|
@@ -5104,7 +5117,9 @@ export { default as IconRelationOneToManyFilled } from './relation-one-to-many-f
|
|
|
5104
5117
|
export { default as IconRelationOneToOneFilled } from './relation-one-to-one-filled.svelte';
|
|
5105
5118
|
export { default as IconReplaceFilled } from './replace-filled.svelte';
|
|
5106
5119
|
export { default as IconRosetteDiscountCheckFilled } from './rosette-discount-check-filled.svelte';
|
|
5120
|
+
export { default as IconRosetteDiscountFilled } from './rosette-discount-filled.svelte';
|
|
5107
5121
|
export { default as IconRosetteFilled } from './rosette-filled.svelte';
|
|
5122
|
+
export { default as IconScubaDivingTankFilled } from './scuba-diving-tank-filled.svelte';
|
|
5108
5123
|
export { default as IconSectionFilled } from './section-filled.svelte';
|
|
5109
5124
|
export { default as IconSettingsFilled } from './settings-filled.svelte';
|
|
5110
5125
|
export { default as IconShieldCheckFilled } from './shield-check-filled.svelte';
|
|
@@ -5243,9 +5258,12 @@ export { default as IconStackFilled } from './stack-filled.svelte';
|
|
|
5243
5258
|
export { default as IconStarHalfFilled } from './star-half-filled.svelte';
|
|
5244
5259
|
export { default as IconStarFilled } from './star-filled.svelte';
|
|
5245
5260
|
export { default as IconStarsFilled } from './stars-filled.svelte';
|
|
5261
|
+
export { default as IconSteeringWheelFilled } from './steering-wheel-filled.svelte';
|
|
5246
5262
|
export { default as IconSunFilled } from './sun-filled.svelte';
|
|
5247
5263
|
export { default as IconSunglassesFilled } from './sunglasses-filled.svelte';
|
|
5248
5264
|
export { default as IconTableFilled } from './table-filled.svelte';
|
|
5265
|
+
export { default as IconTagFilled } from './tag-filled.svelte';
|
|
5266
|
+
export { default as IconTagsFilled } from './tags-filled.svelte';
|
|
5249
5267
|
export { default as IconThumbDownFilled } from './thumb-down-filled.svelte';
|
|
5250
5268
|
export { default as IconThumbUpFilled } from './thumb-up-filled.svelte';
|
|
5251
5269
|
export { default as IconTiltShiftFilled } from './tilt-shift-filled.svelte';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10a10 10 0 1 1 0 -20m0 12a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35m-3.553 -5.895a1 1 0 0 0 -.894 1.788l2 1a1 1 0 0 0 .894 -1.788zm8.447 .447a1 1 0 0 0 -1.341 -.447l-2 1a1 1 0 0 0 .894 1.788l2 -1a1 1 0 0 0 .447 -1.341" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="mood-angry-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 MoodAngryFilledProps = typeof __propDef.props;
|
|
13
|
+
export type MoodAngryFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type MoodAngryFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class MoodAngryFilled extends SvelteComponentTyped<MoodAngryFilledProps, MoodAngryFilledEvents, MoodAngryFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17 3.34a10 10 0 1 1 -15 8.66l.005 -.324a10 10 0 0 1 14.995 -8.336m-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414m-7.493 -6.493a1 1 0 0 0 -1.414 1.414l.792 .793l-.792 .793a1 1 0 0 0 1.414 1.414l.793 -.792l.793 .792a1 1 0 1 0 1.414 -1.414l-.792 -.793l.792 -.793a1 1 0 1 0 -1.414 -1.414l-.793 .792zm7 0a1 1 0 0 0 -1.414 1.414l.792 .793l-.792 .793a1 1 0 0 0 1.414 1.414l.793 -.792l.793 .792a1 1 0 0 0 1.414 -1.414l-.792 -.793l.792 -.793a1 1 0 1 0 -1.414 -1.414l-.793 .792z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="mood-crazy-happy-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 MoodCrazyHappyFilledProps = typeof __propDef.props;
|
|
13
|
+
export type MoodCrazyHappyFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type MoodCrazyHappyFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class MoodCrazyHappyFilled extends SvelteComponentTyped<MoodCrazyHappyFilledProps, MoodCrazyHappyFilledEvents, MoodCrazyHappyFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10a10 10 0 1 1 0 -20m3.707 12.293a1 1 0 0 0 -1.262 -.125l-.945 .63l-.945 -.63l-.116 -.066a1 1 0 0 0 -.994 .066l-.945 .63l-.945 -.63a1 1 0 0 0 -1.262 .125l-1 1a1 1 0 0 0 0 1.414l.094 .083a1 1 0 0 0 1.32 -.083l.42 -.42l.818 .545l.116 .066a1 1 0 0 0 .994 -.066l.945 -.63l.945 .63l.116 .066a1 1 0 0 0 .994 -.066l.817 -.545l.42 .42a1 1 0 0 0 1.415 -1.414zm-6.5 -6.5a1 1 0 0 0 -1.414 0l-.083 .094a1 1 0 0 0 .083 1.32l.792 .793l-.792 .793a1 1 0 0 0 1.414 1.414l1.5 -1.5a1 1 0 0 0 0 -1.414zm7 0a1 1 0 0 0 -1.414 0l-1.5 1.5a1 1 0 0 0 0 1.414l1.5 1.5a1 1 0 0 0 1.414 0l.083 -.094a1 1 0 0 0 -.083 -1.32l-.792 -.793l.792 -.793a1 1 0 0 0 0 -1.414" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="mood-wrrr-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 MoodWrrrFilledProps = typeof __propDef.props;
|
|
13
|
+
export type MoodWrrrFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type MoodWrrrFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class MoodWrrrFilled extends SvelteComponentTyped<MoodWrrrFilledProps, MoodWrrrFilledEvents, MoodWrrrFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M20.207 3.793a5.95 5.95 0 0 1 0 8.414l-8 8a5.95 5.95 0 0 1 -8.414 -8.414l8 -8a5.95 5.95 0 0 1 8.414 0m-7 1.414l-4.294 4.293l5.586 5.586l4.294 -4.292a3.95 3.95 0 1 0 -5.586 -5.586" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="pill-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 PillFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PillFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PillFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PillFilled extends SvelteComponentTyped<PillFilledProps, PillFilledEvents, PillFilledSlots> {
|
|
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 12h-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0 -2m0 -4h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0 -2m0 -4h-6a1 1 0 1 0 0 2h6a1 1 0 0 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="receipt-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 ReceiptFilledProps = typeof __propDef.props;
|
|
13
|
+
export type ReceiptFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type ReceiptFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ReceiptFilled extends SvelteComponentTyped<ReceiptFilledProps, ReceiptFilledEvents, ReceiptFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.01 2.011c.852 0 1.668 .34 2.267 .942l.698 .698a1.2 1.2 0 0 0 .845 .349h1a3.2 3.2 0 0 1 3.2 3.2v1c0 .316 .126 .62 .347 .843l.698 .698a3.2 3.2 0 0 1 .002 4.536l-.698 .698a1.2 1.2 0 0 0 -.349 .845v1a3.2 3.2 0 0 1 -3.2 3.2h-1a1.2 1.2 0 0 0 -.843 .347l-.698 .698a3.2 3.2 0 0 1 -4.536 .002l-.698 -.698a1.2 1.2 0 0 0 -.845 -.349h-1a3.2 3.2 0 0 1 -3.2 -3.2v-1a1.2 1.2 0 0 0 -.347 -.843l-.698 -.698a3.2 3.2 0 0 1 -.002 -4.536l.698 -.698a1.2 1.2 0 0 0 .349 -.845v-1l.005 -.182a3.2 3.2 0 0 1 3.195 -3.018h1a1.2 1.2 0 0 0 .843 -.347l.698 -.698a3.2 3.2 0 0 1 2.269 -.944m2.49 10.989a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3m1.207 -4.707a1 1 0 0 0 -1.414 0l-6 6a1 1 0 0 0 1.414 1.414l6 -6a1 1 0 0 0 0 -1.414m-6.207 -.293a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="rosette-discount-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 RosetteDiscountFilledProps = typeof __propDef.props;
|
|
13
|
+
export type RosetteDiscountFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type RosetteDiscountFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class RosetteDiscountFilled extends SvelteComponentTyped<RosetteDiscountFilledProps, RosetteDiscountFilledEvents, RosetteDiscountFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17 17v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3v-2z" }], ["path", { "d": "M8 2a2 2 0 0 1 1.732 1h1.15a1.496 1.496 0 0 1 2.236 0h1.882a1 1 0 0 1 0 2l-1.883 .001a2 2 0 0 1 -.115 .116v.983a5 5 0 0 1 3.998 4.9v4h-10v-4a5 5 0 0 1 4 -4.9v-.983a2 2 0 0 1 -.117 -.116h-1.151a2 2 0 1 1 -1.732 -3.001" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="scuba-diving-tank-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 ScubaDivingTankFilledProps = typeof __propDef.props;
|
|
13
|
+
export type ScubaDivingTankFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type ScubaDivingTankFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ScubaDivingTankFilled extends SvelteComponentTyped<ScubaDivingTankFilledProps, ScubaDivingTankFilledEvents, ScubaDivingTankFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8 11a4 4 0 1 1 8 0v5h-8z" }], ["path", { "d": "M8 16v3a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-3" }], ["path", { "d": "M9 4h6" }], ["path", { "d": "M12 7v-3" }], ["path", { "d": "M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }], ["circle", { "cx": "12", "cy": "4", "r": ".5", "fill": "currentColor" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="scuba-diving-tank" {...$$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 ScubaDivingTankProps = typeof __propDef.props;
|
|
13
|
+
export type ScubaDivingTankEvents = typeof __propDef.events;
|
|
14
|
+
export type ScubaDivingTankSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ScubaDivingTank extends SvelteComponentTyped<ScubaDivingTankProps, ScubaDivingTankEvents, ScubaDivingTankSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17 3.34a10 10 0 1 1 -15 8.66l.005 -.324a10 10 0 0 1 14.995 -8.336m-13 8.66a8 8 0 0 0 7 7.937v-5.107a3 3 0 0 1 -1.898 -2.05l-5.07 -1.504q -.031 .36 -.032 .725m15.967 -.725l-5.069 1.503a3 3 0 0 1 -1.897 2.051v5.108a8 8 0 0 0 6.985 -8.422zm-11.967 -6.204a8 8 0 0 0 -3.536 4.244l4.812 1.426a3 3 0 0 1 5.448 0l4.812 -1.426a8 8 0 0 0 -11.536 -4.244" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="steering-wheel-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 SteeringWheelFilledProps = typeof __propDef.props;
|
|
13
|
+
export type SteeringWheelFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type SteeringWheelFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class SteeringWheelFilled extends SvelteComponentTyped<SteeringWheelFilledProps, SteeringWheelFilledEvents, SteeringWheelFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M11.172 2a3 3 0 0 1 2.121 .879l7.71 7.71a3.41 3.41 0 0 1 0 4.822l-5.592 5.592a3.41 3.41 0 0 1 -4.822 0l-7.71 -7.71a3 3 0 0 1 -.879 -2.121v-5.172a4 4 0 0 1 4 -4zm-3.672 3.5a2 2 0 0 0 -1.995 1.85l-.005 .15a2 2 0 1 0 2 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="tag-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 TagFilledProps = typeof __propDef.props;
|
|
13
|
+
export type TagFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type TagFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TagFilled extends SvelteComponentTyped<TagFilledProps, TagFilledEvents, TagFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M9.172 5a3 3 0 0 1 2.121 .879l5.71 5.71a3.41 3.41 0 0 1 0 4.822l-3.592 3.592a3.41 3.41 0 0 1 -4.822 0l-5.71 -5.71a3 3 0 0 1 -.879 -2.121v-4.172a3 3 0 0 1 3 -3zm-2.172 4h-.01a1 1 0 1 0 .01 2a1 1 0 0 0 0 -2" }], ["path", { "d": "M14.293 5.293a1 1 0 0 1 1.414 0l4.593 4.592a5.82 5.82 0 0 1 0 8.23l-1.592 1.592a1 1 0 0 1 -1.414 -1.414l1.592 -1.592a3.82 3.82 0 0 0 0 -5.402l-4.592 -4.592a1 1 0 0 1 0 -1.414" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="tags-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 TagsFilledProps = typeof __propDef.props;
|
|
13
|
+
export type TagsFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type TagsFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TagsFilled extends SvelteComponentTyped<TagsFilledProps, TagsFilledEvents, TagsFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -89,7 +89,9 @@ export default [
|
|
|
89
89
|
"align-box-top-right",
|
|
90
90
|
"align-center",
|
|
91
91
|
"align-justified",
|
|
92
|
+
"align-left-2",
|
|
92
93
|
"align-left",
|
|
94
|
+
"align-right-2",
|
|
93
95
|
"align-right",
|
|
94
96
|
"alpha",
|
|
95
97
|
"alphabet-cyrillic",
|
|
@@ -459,6 +461,7 @@ export default [
|
|
|
459
461
|
"binary-tree-2",
|
|
460
462
|
"binary-tree",
|
|
461
463
|
"binary",
|
|
464
|
+
"binoculars",
|
|
462
465
|
"biohazard-off",
|
|
463
466
|
"biohazard",
|
|
464
467
|
"blade",
|
|
@@ -979,6 +982,7 @@ export default [
|
|
|
979
982
|
"building-lighthouse",
|
|
980
983
|
"building-monument",
|
|
981
984
|
"building-mosque",
|
|
985
|
+
"building-off",
|
|
982
986
|
"building-pavilion",
|
|
983
987
|
"building-skyscraper",
|
|
984
988
|
"building-stadium",
|
|
@@ -1318,6 +1322,7 @@ export default [
|
|
|
1318
1322
|
"clear-all",
|
|
1319
1323
|
"clear-formatting",
|
|
1320
1324
|
"click",
|
|
1325
|
+
"cliff-jumping",
|
|
1321
1326
|
"clipboard-check",
|
|
1322
1327
|
"clipboard-copy",
|
|
1323
1328
|
"clipboard-data",
|
|
@@ -1459,6 +1464,7 @@ export default [
|
|
|
1459
1464
|
"confucius",
|
|
1460
1465
|
"container-off",
|
|
1461
1466
|
"container",
|
|
1467
|
+
"contract",
|
|
1462
1468
|
"contrast-2-off",
|
|
1463
1469
|
"contrast-2",
|
|
1464
1470
|
"contrast-off",
|
|
@@ -3754,6 +3760,7 @@ export default [
|
|
|
3754
3760
|
"script-plus",
|
|
3755
3761
|
"script-x",
|
|
3756
3762
|
"script",
|
|
3763
|
+
"scuba-diving-tank",
|
|
3757
3764
|
"scuba-diving",
|
|
3758
3765
|
"scuba-mask-off",
|
|
3759
3766
|
"scuba-mask",
|
|
@@ -4708,6 +4715,7 @@ export default [
|
|
|
4708
4715
|
"bell-x-filled",
|
|
4709
4716
|
"bell-z-filled",
|
|
4710
4717
|
"bell-filled",
|
|
4718
|
+
"binoculars-filled",
|
|
4711
4719
|
"biohazard-filled",
|
|
4712
4720
|
"blade-filled",
|
|
4713
4721
|
"blob-filled",
|
|
@@ -5054,13 +5062,16 @@ export default [
|
|
|
5054
5062
|
"mickey-filled",
|
|
5055
5063
|
"microphone-filled",
|
|
5056
5064
|
"microwave-filled",
|
|
5065
|
+
"mood-angry-filled",
|
|
5057
5066
|
"mood-confuzed-filled",
|
|
5067
|
+
"mood-crazy-happy-filled",
|
|
5058
5068
|
"mood-empty-filled",
|
|
5059
5069
|
"mood-happy-filled",
|
|
5060
5070
|
"mood-kid-filled",
|
|
5061
5071
|
"mood-neutral-filled",
|
|
5062
5072
|
"mood-sad-filled",
|
|
5063
5073
|
"mood-smile-filled",
|
|
5074
|
+
"mood-wrrr-filled",
|
|
5064
5075
|
"moon-filled",
|
|
5065
5076
|
"mouse-filled",
|
|
5066
5077
|
"mushroom-filled",
|
|
@@ -5080,6 +5091,7 @@ export default [
|
|
|
5080
5091
|
"photo-filled",
|
|
5081
5092
|
"picture-in-picture-top-filled",
|
|
5082
5093
|
"picture-in-picture-filled",
|
|
5094
|
+
"pill-filled",
|
|
5083
5095
|
"pin-filled",
|
|
5084
5096
|
"pinned-filled",
|
|
5085
5097
|
"player-eject-filled",
|
|
@@ -5098,6 +5110,7 @@ export default [
|
|
|
5098
5110
|
"puzzle-filled",
|
|
5099
5111
|
"radar-filled",
|
|
5100
5112
|
"radioactive-filled",
|
|
5113
|
+
"receipt-filled",
|
|
5101
5114
|
"rectangle-vertical-filled",
|
|
5102
5115
|
"rectangle-filled",
|
|
5103
5116
|
"relation-many-to-many-filled",
|
|
@@ -5105,7 +5118,9 @@ export default [
|
|
|
5105
5118
|
"relation-one-to-one-filled",
|
|
5106
5119
|
"replace-filled",
|
|
5107
5120
|
"rosette-discount-check-filled",
|
|
5121
|
+
"rosette-discount-filled",
|
|
5108
5122
|
"rosette-filled",
|
|
5123
|
+
"scuba-diving-tank-filled",
|
|
5109
5124
|
"section-filled",
|
|
5110
5125
|
"settings-filled",
|
|
5111
5126
|
"shield-check-filled",
|
|
@@ -5244,9 +5259,12 @@ export default [
|
|
|
5244
5259
|
"star-half-filled",
|
|
5245
5260
|
"star-filled",
|
|
5246
5261
|
"stars-filled",
|
|
5262
|
+
"steering-wheel-filled",
|
|
5247
5263
|
"sun-filled",
|
|
5248
5264
|
"sunglasses-filled",
|
|
5249
5265
|
"table-filled",
|
|
5266
|
+
"tag-filled",
|
|
5267
|
+
"tags-filled",
|
|
5250
5268
|
"thumb-down-filled",
|
|
5251
5269
|
"thumb-up-filled",
|
|
5252
5270
|
"tilt-shift-filled",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.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.",
|
|
@@ -389,10 +389,18 @@
|
|
|
389
389
|
"types": "./dist/icons/align-justified.svelte.d.ts",
|
|
390
390
|
"svelte": "./dist/icons/align-justified.svelte"
|
|
391
391
|
},
|
|
392
|
+
"./IconAlignLeft2.svelte": {
|
|
393
|
+
"types": "./dist/icons/align-left-2.svelte.d.ts",
|
|
394
|
+
"svelte": "./dist/icons/align-left-2.svelte"
|
|
395
|
+
},
|
|
392
396
|
"./IconAlignLeft.svelte": {
|
|
393
397
|
"types": "./dist/icons/align-left.svelte.d.ts",
|
|
394
398
|
"svelte": "./dist/icons/align-left.svelte"
|
|
395
399
|
},
|
|
400
|
+
"./IconAlignRight2.svelte": {
|
|
401
|
+
"types": "./dist/icons/align-right-2.svelte.d.ts",
|
|
402
|
+
"svelte": "./dist/icons/align-right-2.svelte"
|
|
403
|
+
},
|
|
396
404
|
"./IconAlignRight.svelte": {
|
|
397
405
|
"types": "./dist/icons/align-right.svelte.d.ts",
|
|
398
406
|
"svelte": "./dist/icons/align-right.svelte"
|
|
@@ -1869,6 +1877,10 @@
|
|
|
1869
1877
|
"types": "./dist/icons/binary.svelte.d.ts",
|
|
1870
1878
|
"svelte": "./dist/icons/binary.svelte"
|
|
1871
1879
|
},
|
|
1880
|
+
"./IconBinoculars.svelte": {
|
|
1881
|
+
"types": "./dist/icons/binoculars.svelte.d.ts",
|
|
1882
|
+
"svelte": "./dist/icons/binoculars.svelte"
|
|
1883
|
+
},
|
|
1872
1884
|
"./IconBiohazardOff.svelte": {
|
|
1873
1885
|
"types": "./dist/icons/biohazard-off.svelte.d.ts",
|
|
1874
1886
|
"svelte": "./dist/icons/biohazard-off.svelte"
|
|
@@ -3949,6 +3961,10 @@
|
|
|
3949
3961
|
"types": "./dist/icons/building-mosque.svelte.d.ts",
|
|
3950
3962
|
"svelte": "./dist/icons/building-mosque.svelte"
|
|
3951
3963
|
},
|
|
3964
|
+
"./IconBuildingOff.svelte": {
|
|
3965
|
+
"types": "./dist/icons/building-off.svelte.d.ts",
|
|
3966
|
+
"svelte": "./dist/icons/building-off.svelte"
|
|
3967
|
+
},
|
|
3952
3968
|
"./IconBuildingPavilion.svelte": {
|
|
3953
3969
|
"types": "./dist/icons/building-pavilion.svelte.d.ts",
|
|
3954
3970
|
"svelte": "./dist/icons/building-pavilion.svelte"
|
|
@@ -5305,6 +5321,10 @@
|
|
|
5305
5321
|
"types": "./dist/icons/click.svelte.d.ts",
|
|
5306
5322
|
"svelte": "./dist/icons/click.svelte"
|
|
5307
5323
|
},
|
|
5324
|
+
"./IconCliffJumping.svelte": {
|
|
5325
|
+
"types": "./dist/icons/cliff-jumping.svelte.d.ts",
|
|
5326
|
+
"svelte": "./dist/icons/cliff-jumping.svelte"
|
|
5327
|
+
},
|
|
5308
5328
|
"./IconClipboardCheck.svelte": {
|
|
5309
5329
|
"types": "./dist/icons/clipboard-check.svelte.d.ts",
|
|
5310
5330
|
"svelte": "./dist/icons/clipboard-check.svelte"
|
|
@@ -5869,6 +5889,10 @@
|
|
|
5869
5889
|
"types": "./dist/icons/container.svelte.d.ts",
|
|
5870
5890
|
"svelte": "./dist/icons/container.svelte"
|
|
5871
5891
|
},
|
|
5892
|
+
"./IconContract.svelte": {
|
|
5893
|
+
"types": "./dist/icons/contract.svelte.d.ts",
|
|
5894
|
+
"svelte": "./dist/icons/contract.svelte"
|
|
5895
|
+
},
|
|
5872
5896
|
"./IconContrast2Off.svelte": {
|
|
5873
5897
|
"types": "./dist/icons/contrast-2-off.svelte.d.ts",
|
|
5874
5898
|
"svelte": "./dist/icons/contrast-2-off.svelte"
|
|
@@ -15049,6 +15073,10 @@
|
|
|
15049
15073
|
"types": "./dist/icons/script.svelte.d.ts",
|
|
15050
15074
|
"svelte": "./dist/icons/script.svelte"
|
|
15051
15075
|
},
|
|
15076
|
+
"./IconScubaDivingTank.svelte": {
|
|
15077
|
+
"types": "./dist/icons/scuba-diving-tank.svelte.d.ts",
|
|
15078
|
+
"svelte": "./dist/icons/scuba-diving-tank.svelte"
|
|
15079
|
+
},
|
|
15052
15080
|
"./IconScubaDiving.svelte": {
|
|
15053
15081
|
"types": "./dist/icons/scuba-diving.svelte.d.ts",
|
|
15054
15082
|
"svelte": "./dist/icons/scuba-diving.svelte"
|
|
@@ -18865,6 +18893,10 @@
|
|
|
18865
18893
|
"types": "./dist/icons/bell-filled.svelte.d.ts",
|
|
18866
18894
|
"svelte": "./dist/icons/bell-filled.svelte"
|
|
18867
18895
|
},
|
|
18896
|
+
"./IconBinocularsFilled.svelte": {
|
|
18897
|
+
"types": "./dist/icons/binoculars-filled.svelte.d.ts",
|
|
18898
|
+
"svelte": "./dist/icons/binoculars-filled.svelte"
|
|
18899
|
+
},
|
|
18868
18900
|
"./IconBiohazardFilled.svelte": {
|
|
18869
18901
|
"types": "./dist/icons/biohazard-filled.svelte.d.ts",
|
|
18870
18902
|
"svelte": "./dist/icons/biohazard-filled.svelte"
|
|
@@ -20249,10 +20281,18 @@
|
|
|
20249
20281
|
"types": "./dist/icons/microwave-filled.svelte.d.ts",
|
|
20250
20282
|
"svelte": "./dist/icons/microwave-filled.svelte"
|
|
20251
20283
|
},
|
|
20284
|
+
"./IconMoodAngryFilled.svelte": {
|
|
20285
|
+
"types": "./dist/icons/mood-angry-filled.svelte.d.ts",
|
|
20286
|
+
"svelte": "./dist/icons/mood-angry-filled.svelte"
|
|
20287
|
+
},
|
|
20252
20288
|
"./IconMoodConfuzedFilled.svelte": {
|
|
20253
20289
|
"types": "./dist/icons/mood-confuzed-filled.svelte.d.ts",
|
|
20254
20290
|
"svelte": "./dist/icons/mood-confuzed-filled.svelte"
|
|
20255
20291
|
},
|
|
20292
|
+
"./IconMoodCrazyHappyFilled.svelte": {
|
|
20293
|
+
"types": "./dist/icons/mood-crazy-happy-filled.svelte.d.ts",
|
|
20294
|
+
"svelte": "./dist/icons/mood-crazy-happy-filled.svelte"
|
|
20295
|
+
},
|
|
20256
20296
|
"./IconMoodEmptyFilled.svelte": {
|
|
20257
20297
|
"types": "./dist/icons/mood-empty-filled.svelte.d.ts",
|
|
20258
20298
|
"svelte": "./dist/icons/mood-empty-filled.svelte"
|
|
@@ -20277,6 +20317,10 @@
|
|
|
20277
20317
|
"types": "./dist/icons/mood-smile-filled.svelte.d.ts",
|
|
20278
20318
|
"svelte": "./dist/icons/mood-smile-filled.svelte"
|
|
20279
20319
|
},
|
|
20320
|
+
"./IconMoodWrrrFilled.svelte": {
|
|
20321
|
+
"types": "./dist/icons/mood-wrrr-filled.svelte.d.ts",
|
|
20322
|
+
"svelte": "./dist/icons/mood-wrrr-filled.svelte"
|
|
20323
|
+
},
|
|
20280
20324
|
"./IconMoonFilled.svelte": {
|
|
20281
20325
|
"types": "./dist/icons/moon-filled.svelte.d.ts",
|
|
20282
20326
|
"svelte": "./dist/icons/moon-filled.svelte"
|
|
@@ -20353,6 +20397,10 @@
|
|
|
20353
20397
|
"types": "./dist/icons/picture-in-picture-filled.svelte.d.ts",
|
|
20354
20398
|
"svelte": "./dist/icons/picture-in-picture-filled.svelte"
|
|
20355
20399
|
},
|
|
20400
|
+
"./IconPillFilled.svelte": {
|
|
20401
|
+
"types": "./dist/icons/pill-filled.svelte.d.ts",
|
|
20402
|
+
"svelte": "./dist/icons/pill-filled.svelte"
|
|
20403
|
+
},
|
|
20356
20404
|
"./IconPinFilled.svelte": {
|
|
20357
20405
|
"types": "./dist/icons/pin-filled.svelte.d.ts",
|
|
20358
20406
|
"svelte": "./dist/icons/pin-filled.svelte"
|
|
@@ -20425,6 +20473,10 @@
|
|
|
20425
20473
|
"types": "./dist/icons/radioactive-filled.svelte.d.ts",
|
|
20426
20474
|
"svelte": "./dist/icons/radioactive-filled.svelte"
|
|
20427
20475
|
},
|
|
20476
|
+
"./IconReceiptFilled.svelte": {
|
|
20477
|
+
"types": "./dist/icons/receipt-filled.svelte.d.ts",
|
|
20478
|
+
"svelte": "./dist/icons/receipt-filled.svelte"
|
|
20479
|
+
},
|
|
20428
20480
|
"./IconRectangleVerticalFilled.svelte": {
|
|
20429
20481
|
"types": "./dist/icons/rectangle-vertical-filled.svelte.d.ts",
|
|
20430
20482
|
"svelte": "./dist/icons/rectangle-vertical-filled.svelte"
|
|
@@ -20453,10 +20505,18 @@
|
|
|
20453
20505
|
"types": "./dist/icons/rosette-discount-check-filled.svelte.d.ts",
|
|
20454
20506
|
"svelte": "./dist/icons/rosette-discount-check-filled.svelte"
|
|
20455
20507
|
},
|
|
20508
|
+
"./IconRosetteDiscountFilled.svelte": {
|
|
20509
|
+
"types": "./dist/icons/rosette-discount-filled.svelte.d.ts",
|
|
20510
|
+
"svelte": "./dist/icons/rosette-discount-filled.svelte"
|
|
20511
|
+
},
|
|
20456
20512
|
"./IconRosetteFilled.svelte": {
|
|
20457
20513
|
"types": "./dist/icons/rosette-filled.svelte.d.ts",
|
|
20458
20514
|
"svelte": "./dist/icons/rosette-filled.svelte"
|
|
20459
20515
|
},
|
|
20516
|
+
"./IconScubaDivingTankFilled.svelte": {
|
|
20517
|
+
"types": "./dist/icons/scuba-diving-tank-filled.svelte.d.ts",
|
|
20518
|
+
"svelte": "./dist/icons/scuba-diving-tank-filled.svelte"
|
|
20519
|
+
},
|
|
20460
20520
|
"./IconSectionFilled.svelte": {
|
|
20461
20521
|
"types": "./dist/icons/section-filled.svelte.d.ts",
|
|
20462
20522
|
"svelte": "./dist/icons/section-filled.svelte"
|
|
@@ -21009,6 +21069,10 @@
|
|
|
21009
21069
|
"types": "./dist/icons/stars-filled.svelte.d.ts",
|
|
21010
21070
|
"svelte": "./dist/icons/stars-filled.svelte"
|
|
21011
21071
|
},
|
|
21072
|
+
"./IconSteeringWheelFilled.svelte": {
|
|
21073
|
+
"types": "./dist/icons/steering-wheel-filled.svelte.d.ts",
|
|
21074
|
+
"svelte": "./dist/icons/steering-wheel-filled.svelte"
|
|
21075
|
+
},
|
|
21012
21076
|
"./IconSunFilled.svelte": {
|
|
21013
21077
|
"types": "./dist/icons/sun-filled.svelte.d.ts",
|
|
21014
21078
|
"svelte": "./dist/icons/sun-filled.svelte"
|
|
@@ -21021,6 +21085,14 @@
|
|
|
21021
21085
|
"types": "./dist/icons/table-filled.svelte.d.ts",
|
|
21022
21086
|
"svelte": "./dist/icons/table-filled.svelte"
|
|
21023
21087
|
},
|
|
21088
|
+
"./IconTagFilled.svelte": {
|
|
21089
|
+
"types": "./dist/icons/tag-filled.svelte.d.ts",
|
|
21090
|
+
"svelte": "./dist/icons/tag-filled.svelte"
|
|
21091
|
+
},
|
|
21092
|
+
"./IconTagsFilled.svelte": {
|
|
21093
|
+
"types": "./dist/icons/tags-filled.svelte.d.ts",
|
|
21094
|
+
"svelte": "./dist/icons/tags-filled.svelte"
|
|
21095
|
+
},
|
|
21024
21096
|
"./IconThumbDownFilled.svelte": {
|
|
21025
21097
|
"types": "./dist/icons/thumb-down-filled.svelte.d.ts",
|
|
21026
21098
|
"svelte": "./dist/icons/thumb-down-filled.svelte"
|
|
@@ -21200,7 +21272,7 @@
|
|
|
21200
21272
|
"imports-check": "attw $(npm pack)"
|
|
21201
21273
|
},
|
|
21202
21274
|
"dependencies": {
|
|
21203
|
-
"@tabler/icons": "3.
|
|
21275
|
+
"@tabler/icons": "3.6.0"
|
|
21204
21276
|
},
|
|
21205
21277
|
"devDependencies": {
|
|
21206
21278
|
"@sveltejs/package": "^2.2.7",
|