@tabler/icons-svelte 3.19.0 → 3.20.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/ferry.svelte +6 -0
- package/dist/icons/ferry.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +18 -0
- package/dist/icons/index.js +18 -0
- package/dist/icons/math-x-floor-divide-y.svelte +6 -0
- package/dist/icons/math-x-floor-divide-y.svelte.d.ts +17 -0
- package/dist/icons/play-card-1-filled.svelte +6 -0
- package/dist/icons/play-card-1-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-10-filled.svelte +6 -0
- package/dist/icons/play-card-10-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-2-filled.svelte +6 -0
- package/dist/icons/play-card-2-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-3-filled.svelte +6 -0
- package/dist/icons/play-card-3-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-4-filled.svelte +6 -0
- package/dist/icons/play-card-4-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-5-filled.svelte +6 -0
- package/dist/icons/play-card-5-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-6-filled.svelte +6 -0
- package/dist/icons/play-card-6-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-7-filled.svelte +6 -0
- package/dist/icons/play-card-7-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-8-filled.svelte +6 -0
- package/dist/icons/play-card-8-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-9-filled.svelte +6 -0
- package/dist/icons/play-card-9-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-a-filled.svelte +6 -0
- package/dist/icons/play-card-a-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-j-filled.svelte +6 -0
- package/dist/icons/play-card-j-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-k-filled.svelte +6 -0
- package/dist/icons/play-card-k-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-q-filled.svelte +6 -0
- package/dist/icons/play-card-q-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-star-filled.svelte +6 -0
- package/dist/icons/play-card-star-filled.svelte.d.ts +17 -0
- package/dist/icons/x-power-y.svelte +6 -0
- package/dist/icons/x-power-y.svelte.d.ts +17 -0
- package/dist/icons-list.js +18 -0
- package/package.json +2 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 17h14.08a3 3 0 0 0 2.5 -1.34l2.141 -2.66h-17.221z" }], ["path", { "d": "M14.556 7.959l-.382 -1.415" }], ["path", { "d": "M6.107 12.675l1.384 -4.675h8l2.675 4.598" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="ferry" {...$$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 FerryProps = typeof __propDef.props;
|
|
13
|
+
export type FerryEvents = typeof __propDef.events;
|
|
14
|
+
export type FerrySlots = typeof __propDef.slots;
|
|
15
|
+
export default class Ferry extends SvelteComponentTyped<FerryProps, FerryEvents, FerrySlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -2147,6 +2147,7 @@ export { default as IconFeatherOff } from './feather-off.svelte';
|
|
|
2147
2147
|
export { default as IconFeather } from './feather.svelte';
|
|
2148
2148
|
export { default as IconFenceOff } from './fence-off.svelte';
|
|
2149
2149
|
export { default as IconFence } from './fence.svelte';
|
|
2150
|
+
export { default as IconFerry } from './ferry.svelte';
|
|
2150
2151
|
export { default as IconFidgetSpinner } from './fidget-spinner.svelte';
|
|
2151
2152
|
export { default as IconFile3d } from './file-3d.svelte';
|
|
2152
2153
|
export { default as IconFileAi } from './file-ai.svelte';
|
|
@@ -3101,6 +3102,7 @@ export { default as IconMathTg } from './math-tg.svelte';
|
|
|
3101
3102
|
export { default as IconMathXDivide2 } from './math-x-divide-2.svelte';
|
|
3102
3103
|
export { default as IconMathXDivideY2 } from './math-x-divide-y-2.svelte';
|
|
3103
3104
|
export { default as IconMathXDivideY } from './math-x-divide-y.svelte';
|
|
3105
|
+
export { default as IconMathXFloorDivideY } from './math-x-floor-divide-y.svelte';
|
|
3104
3106
|
export { default as IconMathXMinusX } from './math-x-minus-x.svelte';
|
|
3105
3107
|
export { default as IconMathXMinusY } from './math-x-minus-y.svelte';
|
|
3106
3108
|
export { default as IconMathXPlusX } from './math-x-plus-x.svelte';
|
|
@@ -4836,6 +4838,7 @@ export { default as IconWritingOff } from './writing-off.svelte';
|
|
|
4836
4838
|
export { default as IconWritingSignOff } from './writing-sign-off.svelte';
|
|
4837
4839
|
export { default as IconWritingSign } from './writing-sign.svelte';
|
|
4838
4840
|
export { default as IconWriting } from './writing.svelte';
|
|
4841
|
+
export { default as IconXPowerY } from './x-power-y.svelte';
|
|
4839
4842
|
export { default as IconX } from './x.svelte';
|
|
4840
4843
|
export { default as IconXboxA } from './xbox-a.svelte';
|
|
4841
4844
|
export { default as IconXboxB } from './xbox-b.svelte';
|
|
@@ -5436,6 +5439,21 @@ export { default as IconPillFilled } from './pill-filled.svelte';
|
|
|
5436
5439
|
export { default as IconPinFilled } from './pin-filled.svelte';
|
|
5437
5440
|
export { default as IconPinnedFilled } from './pinned-filled.svelte';
|
|
5438
5441
|
export { default as IconPizzaFilled } from './pizza-filled.svelte';
|
|
5442
|
+
export { default as IconPlayCard1Filled } from './play-card-1-filled.svelte';
|
|
5443
|
+
export { default as IconPlayCard10Filled } from './play-card-10-filled.svelte';
|
|
5444
|
+
export { default as IconPlayCard2Filled } from './play-card-2-filled.svelte';
|
|
5445
|
+
export { default as IconPlayCard3Filled } from './play-card-3-filled.svelte';
|
|
5446
|
+
export { default as IconPlayCard4Filled } from './play-card-4-filled.svelte';
|
|
5447
|
+
export { default as IconPlayCard5Filled } from './play-card-5-filled.svelte';
|
|
5448
|
+
export { default as IconPlayCard6Filled } from './play-card-6-filled.svelte';
|
|
5449
|
+
export { default as IconPlayCard7Filled } from './play-card-7-filled.svelte';
|
|
5450
|
+
export { default as IconPlayCard8Filled } from './play-card-8-filled.svelte';
|
|
5451
|
+
export { default as IconPlayCard9Filled } from './play-card-9-filled.svelte';
|
|
5452
|
+
export { default as IconPlayCardAFilled } from './play-card-a-filled.svelte';
|
|
5453
|
+
export { default as IconPlayCardJFilled } from './play-card-j-filled.svelte';
|
|
5454
|
+
export { default as IconPlayCardKFilled } from './play-card-k-filled.svelte';
|
|
5455
|
+
export { default as IconPlayCardQFilled } from './play-card-q-filled.svelte';
|
|
5456
|
+
export { default as IconPlayCardStarFilled } from './play-card-star-filled.svelte';
|
|
5439
5457
|
export { default as IconPlayerEjectFilled } from './player-eject-filled.svelte';
|
|
5440
5458
|
export { default as IconPlayerPauseFilled } from './player-pause-filled.svelte';
|
|
5441
5459
|
export { default as IconPlayerPlayFilled } from './player-play-filled.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -2147,6 +2147,7 @@ export { default as IconFeatherOff } from './feather-off.svelte';
|
|
|
2147
2147
|
export { default as IconFeather } from './feather.svelte';
|
|
2148
2148
|
export { default as IconFenceOff } from './fence-off.svelte';
|
|
2149
2149
|
export { default as IconFence } from './fence.svelte';
|
|
2150
|
+
export { default as IconFerry } from './ferry.svelte';
|
|
2150
2151
|
export { default as IconFidgetSpinner } from './fidget-spinner.svelte';
|
|
2151
2152
|
export { default as IconFile3d } from './file-3d.svelte';
|
|
2152
2153
|
export { default as IconFileAi } from './file-ai.svelte';
|
|
@@ -3101,6 +3102,7 @@ export { default as IconMathTg } from './math-tg.svelte';
|
|
|
3101
3102
|
export { default as IconMathXDivide2 } from './math-x-divide-2.svelte';
|
|
3102
3103
|
export { default as IconMathXDivideY2 } from './math-x-divide-y-2.svelte';
|
|
3103
3104
|
export { default as IconMathXDivideY } from './math-x-divide-y.svelte';
|
|
3105
|
+
export { default as IconMathXFloorDivideY } from './math-x-floor-divide-y.svelte';
|
|
3104
3106
|
export { default as IconMathXMinusX } from './math-x-minus-x.svelte';
|
|
3105
3107
|
export { default as IconMathXMinusY } from './math-x-minus-y.svelte';
|
|
3106
3108
|
export { default as IconMathXPlusX } from './math-x-plus-x.svelte';
|
|
@@ -4836,6 +4838,7 @@ export { default as IconWritingOff } from './writing-off.svelte';
|
|
|
4836
4838
|
export { default as IconWritingSignOff } from './writing-sign-off.svelte';
|
|
4837
4839
|
export { default as IconWritingSign } from './writing-sign.svelte';
|
|
4838
4840
|
export { default as IconWriting } from './writing.svelte';
|
|
4841
|
+
export { default as IconXPowerY } from './x-power-y.svelte';
|
|
4839
4842
|
export { default as IconX } from './x.svelte';
|
|
4840
4843
|
export { default as IconXboxA } from './xbox-a.svelte';
|
|
4841
4844
|
export { default as IconXboxB } from './xbox-b.svelte';
|
|
@@ -5436,6 +5439,21 @@ export { default as IconPillFilled } from './pill-filled.svelte';
|
|
|
5436
5439
|
export { default as IconPinFilled } from './pin-filled.svelte';
|
|
5437
5440
|
export { default as IconPinnedFilled } from './pinned-filled.svelte';
|
|
5438
5441
|
export { default as IconPizzaFilled } from './pizza-filled.svelte';
|
|
5442
|
+
export { default as IconPlayCard1Filled } from './play-card-1-filled.svelte';
|
|
5443
|
+
export { default as IconPlayCard10Filled } from './play-card-10-filled.svelte';
|
|
5444
|
+
export { default as IconPlayCard2Filled } from './play-card-2-filled.svelte';
|
|
5445
|
+
export { default as IconPlayCard3Filled } from './play-card-3-filled.svelte';
|
|
5446
|
+
export { default as IconPlayCard4Filled } from './play-card-4-filled.svelte';
|
|
5447
|
+
export { default as IconPlayCard5Filled } from './play-card-5-filled.svelte';
|
|
5448
|
+
export { default as IconPlayCard6Filled } from './play-card-6-filled.svelte';
|
|
5449
|
+
export { default as IconPlayCard7Filled } from './play-card-7-filled.svelte';
|
|
5450
|
+
export { default as IconPlayCard8Filled } from './play-card-8-filled.svelte';
|
|
5451
|
+
export { default as IconPlayCard9Filled } from './play-card-9-filled.svelte';
|
|
5452
|
+
export { default as IconPlayCardAFilled } from './play-card-a-filled.svelte';
|
|
5453
|
+
export { default as IconPlayCardJFilled } from './play-card-j-filled.svelte';
|
|
5454
|
+
export { default as IconPlayCardKFilled } from './play-card-k-filled.svelte';
|
|
5455
|
+
export { default as IconPlayCardQFilled } from './play-card-q-filled.svelte';
|
|
5456
|
+
export { default as IconPlayCardStarFilled } from './play-card-star-filled.svelte';
|
|
5439
5457
|
export { default as IconPlayerEjectFilled } from './player-eject-filled.svelte';
|
|
5440
5458
|
export { default as IconPlayerPauseFilled } from './player-pause-filled.svelte';
|
|
5441
5459
|
export { default as IconPlayerPlayFilled } from './player-play-filled.svelte';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M1.5 19l18 -18" }], ["path", { "d": "M4.5 22l18 -18" }], ["path", { "d": "M18 15l3 4" }], ["path", { "d": "M23 15l-4.5 8" }], ["path", { "d": "M1 1l6 6" }], ["path", { "d": "M1 7l6 -6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="math-x-floor-divide-y" {...$$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 MathXFloorDivideYProps = typeof __propDef.props;
|
|
13
|
+
export type MathXFloorDivideYEvents = typeof __propDef.events;
|
|
14
|
+
export type MathXFloorDivideYSlots = typeof __propDef.slots;
|
|
15
|
+
export default class MathXFloorDivideY extends SvelteComponentTyped<MathXFloorDivideYProps, MathXFloorDivideYEvents, MathXFloorDivideYSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-5.01 -10a1 1 0 0 0 -1 1v6a1 1 0 0 0 2 0v-6a1 1 0 0 0 -1 -1m-4.99 -4h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-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 PlayCard_1FilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCard_1FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCard_1FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCard_1Filled extends SvelteComponentTyped<PlayCard_1FilledProps, PlayCard_1FilledEvents, PlayCard_1FilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-8.01 -10a1 1 0 0 0 -1 1v6a1 1 0 0 0 2 0v-6a1 1 0 0 0 -1 -1m4.5 0c-1.453 0 -2.5 1.395 -2.5 3v2c0 1.605 1.047 3 2.5 3s2.5 -1.395 2.5 -3v-2c0 -1.605 -1.047 -3 -2.5 -3m0 2c.203 0 .5 .395 .5 1v2c0 .605 -.297 1 -.5 1s-.5 -.395 -.5 -1v-2c0 -.605 .297 -1 .5 -1m-6.49 -6h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-10-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 PlayCard_10FilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCard_10FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCard_10FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCard_10Filled extends SvelteComponentTyped<PlayCard_10FilledProps, PlayCard_10FilledEvents, PlayCard_10FilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2m-4.01 -10h-3a1 1 0 1 0 0 2h3v1h-2a2 2 0 0 0 -2 2v1a2 2 0 0 0 2 2h3a1 1 0 0 0 0 -2h-3v-1h2a2 2 0 0 0 2 -2v-1a2 2 0 0 0 -2 -2m-5.99 -4h-.01a1 1 0 1 0 0 2h.01a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-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 PlayCard_2FilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCard_2FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCard_2FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCard_2Filled extends SvelteComponentTyped<PlayCard_2FilledProps, PlayCard_2FilledEvents, PlayCard_2FilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-4.51 -10h-2.5a1 1 0 1 0 0 2h2.5a.5 .5 0 0 1 .09 .992l-.09 .008h-1.5c-1.287 0 -1.332 1.864 -.133 1.993l.133 .007h1.5a.5 .5 0 1 1 0 1h-2.5a1 1 0 0 0 0 2h2.5a2.5 2.5 0 0 0 2.5 -2.5l-.005 -.164a2.5 2.5 0 0 0 -.477 -1.312l-.019 -.024l.019 -.024a2.5 2.5 0 0 0 -2.018 -3.976m-5.49 -4h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-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 PlayCard_3FilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCard_3FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCard_3FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCard_3Filled extends SvelteComponentTyped<PlayCard_3FilledProps, PlayCard_3FilledEvents, PlayCard_3FilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-3.01 -10a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -2 0v2a2 2 0 0 0 2 2h2v2a1 1 0 0 0 .883 .993l.117 .007a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1m-6.99 -4h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-4-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 PlayCard_4FilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCard_4FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCard_4FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCard_4Filled extends SvelteComponentTyped<PlayCard_4FilledProps, PlayCard_4FilledEvents, PlayCard_4FilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2m-3.01 -10h-4a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1h3v1h-3a1 1 0 0 0 0 2h3a2 2 0 0 0 2 -2v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85h-2v-1h3a1 1 0 0 0 0 -2m-6.99 -4h-.01a1 1 0 1 0 0 2h.01a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-5-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 PlayCard_5FilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCard_5FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCard_5FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCard_5Filled extends SvelteComponentTyped<PlayCard_5FilledProps, PlayCard_5FilledEvents, PlayCard_5FilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-3.01 -10h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85h-2v-1h3a1 1 0 0 0 0 -2m-1 5v1h-2v-1zm-5.99 -9h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-6-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 PlayCard_6FilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCard_6FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCard_6FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCard_6Filled extends SvelteComponentTyped<PlayCard_6FilledProps, PlayCard_6FilledEvents, PlayCard_6FilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2m-3.01 -10h-4a1 1 0 0 0 -1 1l.007 .117a1 1 0 0 0 .993 .883h2.612l-1.56 4.684a1 1 0 1 0 1.897 .632l2 -6a1 1 0 0 0 -.949 -1.316m-6.99 -4h-.01a1 1 0 1 0 0 2h.01a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-7-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 PlayCard_7FilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCard_7FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCard_7FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCard_7Filled extends SvelteComponentTyped<PlayCard_7FilledProps, PlayCard_7FilledEvents, PlayCard_7FilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-4.01 -10h-2a2 2 0 0 0 -2 2v1c0 .365 .098 .707 .268 1.001c-.17 .293 -.268 .635 -.268 .999v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-1a2 2 0 0 0 -.268 -1c.17 -.293 .268 -.635 .268 -1v-1a2 2 0 0 0 -2 -2m0 5v1h-2v-1zm0 -3v1h-2v-1zm-5.99 -6h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-8-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 PlayCard_8FilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCard_8FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCard_8FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCard_8Filled extends SvelteComponentTyped<PlayCard_8FilledProps, PlayCard_8FilledEvents, PlayCard_8FilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2m-4.01 -10h-2a2 2 0 0 0 -2 2v1l.005 .15a2 2 0 0 0 1.995 1.85h2v1h-3a1 1 0 0 0 0 2h3a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2m0 2v1h-2v-1zm-5.99 -6h-.01a1 1 0 1 0 0 2h.01a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-9-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 PlayCard_9FilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCard_9FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCard_9FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCard_9Filled extends SvelteComponentTyped<PlayCard_9FilledProps, PlayCard_9FilledEvents, PlayCard_9FilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-5.01 -10a3 3 0 0 0 -3 3v4a1 1 0 0 0 2 0v-1h2v1a1 1 0 0 0 .883 .993l.117 .007a1 1 0 0 0 1 -1v-4a3 3 0 0 0 -3 -3m0 2a1 1 0 0 1 1 1v1h-2v-1a1 1 0 0 1 .883 -.993zm-4.99 -6h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-a-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 PlayCardAFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCardAFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCardAFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCardAFilled extends SvelteComponentTyped<PlayCardAFilledProps, PlayCardAFilledEvents, PlayCardAFilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2m-3.01 -10h-4a1 1 0 0 0 -1 1l.007 .117a1 1 0 0 0 .993 .883h3v3a1 1 0 0 1 -2 0a1 1 0 0 0 -2 0a3 3 0 0 0 6 0v-4a1 1 0 0 0 -1 -1m-6.99 -4h-.01a1 1 0 1 0 0 2h.01a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-j-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 PlayCardJFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCardJFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCardJFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCardJFilled extends SvelteComponentTyped<PlayCardJFilledProps, PlayCardJFilledEvents, PlayCardJFilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-7.01 -10a1 1 0 0 0 -1 1v6a1 1 0 0 0 2 0v-1.585l2.293 2.292a1 1 0 0 0 1.32 .083l.094 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293a1 1 0 1 0 -1.414 -1.414l-2.293 2.291v-1.584a1 1 0 0 0 -.883 -.993zm-2.99 -4h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-k-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 PlayCardKFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCardKFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCardKFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCardKFilled extends SvelteComponentTyped<PlayCardKFilledProps, PlayCardKFilledEvents, PlayCardKFilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-5.01 -10a3 3 0 0 0 -3 3v2a3 3 0 0 0 4.293 2.708l.5 .5a1 1 0 0 0 1.414 -1.415l-.499 -.5c.187 -.392 .292 -.83 .292 -1.293v-2a3 3 0 0 0 -3 -3m0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -2 0v-2a1 1 0 0 1 1 -1m-4.99 -6h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-q-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 PlayCardQFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCardQFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCardQFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCardQFilled extends SvelteComponentTyped<PlayCardQFilledProps, PlayCardQFilledEvents, PlayCardQFilledSlots> {
|
|
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 3v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm.01 16h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-4.98 -9.5l-.115 .005c-.384 .04 -.724 .273 -.898 .623l-.51 1.027l-1.138 .166c-.423 .059 -.78 .357 -.914 .768l-.033 .125a1.13 1.13 0 0 0 .322 1.039l.82 .797l-.194 1.127c-.07 .432 .107 .857 .454 1.108l.107 .068a1.13 1.13 0 0 0 1.078 .018l1.022 -.536l1.019 .535c.377 .2 .84 .168 1.19 -.086l.1 -.08c.281 -.259 .416 -.645 .35 -1.028l-.194 -1.126l.823 -.799c.31 -.302 .42 -.752 .287 -1.161l-.042 -.11a1.13 1.13 0 0 0 -.873 -.659l-1.138 -.166l-.508 -1.026a1.13 1.13 0 0 0 -1.014 -.63m-5.021 -4.499h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-star-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type PlayCardStarFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCardStarFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCardStarFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCardStarFilled extends SvelteComponentTyped<PlayCardStarFilledProps, PlayCardStarFilledEvents, PlayCardStarFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M15 3l3 5.063" }], ["path", { "d": "M5 12l6 6" }], ["path", { "d": "M5 18l6 -6" }], ["path", { "d": "M21 3l-4.8 9" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="x-power-y" {...$$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 XPowerYProps = typeof __propDef.props;
|
|
13
|
+
export type XPowerYEvents = typeof __propDef.events;
|
|
14
|
+
export type XPowerYSlots = typeof __propDef.slots;
|
|
15
|
+
export default class XPowerY extends SvelteComponentTyped<XPowerYProps, XPowerYEvents, XPowerYSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -2148,6 +2148,7 @@ export default [
|
|
|
2148
2148
|
"feather",
|
|
2149
2149
|
"fence-off",
|
|
2150
2150
|
"fence",
|
|
2151
|
+
"ferry",
|
|
2151
2152
|
"fidget-spinner",
|
|
2152
2153
|
"file-3d",
|
|
2153
2154
|
"file-ai",
|
|
@@ -3102,6 +3103,7 @@ export default [
|
|
|
3102
3103
|
"math-x-divide-2",
|
|
3103
3104
|
"math-x-divide-y-2",
|
|
3104
3105
|
"math-x-divide-y",
|
|
3106
|
+
"math-x-floor-divide-y",
|
|
3105
3107
|
"math-x-minus-x",
|
|
3106
3108
|
"math-x-minus-y",
|
|
3107
3109
|
"math-x-plus-x",
|
|
@@ -4837,6 +4839,7 @@ export default [
|
|
|
4837
4839
|
"writing-sign-off",
|
|
4838
4840
|
"writing-sign",
|
|
4839
4841
|
"writing",
|
|
4842
|
+
"x-power-y",
|
|
4840
4843
|
"x",
|
|
4841
4844
|
"xbox-a",
|
|
4842
4845
|
"xbox-b",
|
|
@@ -5437,6 +5440,21 @@ export default [
|
|
|
5437
5440
|
"pin-filled",
|
|
5438
5441
|
"pinned-filled",
|
|
5439
5442
|
"pizza-filled",
|
|
5443
|
+
"play-card-1-filled",
|
|
5444
|
+
"play-card-10-filled",
|
|
5445
|
+
"play-card-2-filled",
|
|
5446
|
+
"play-card-3-filled",
|
|
5447
|
+
"play-card-4-filled",
|
|
5448
|
+
"play-card-5-filled",
|
|
5449
|
+
"play-card-6-filled",
|
|
5450
|
+
"play-card-7-filled",
|
|
5451
|
+
"play-card-8-filled",
|
|
5452
|
+
"play-card-9-filled",
|
|
5453
|
+
"play-card-a-filled",
|
|
5454
|
+
"play-card-j-filled",
|
|
5455
|
+
"play-card-k-filled",
|
|
5456
|
+
"play-card-q-filled",
|
|
5457
|
+
"play-card-star-filled",
|
|
5440
5458
|
"player-eject-filled",
|
|
5441
5459
|
"player-pause-filled",
|
|
5442
5460
|
"player-play-filled",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.20.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.20.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@sveltejs/package": "^2.2.7",
|