@tabler/icons-svelte 3.1.0 → 3.2.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/brand-google-fit.svelte +1 -1
- package/dist/icons/bubble-filled.svelte +6 -0
- package/dist/icons/bubble-filled.svelte.d.ts +17 -0
- package/dist/icons/bubble-minus.svelte +6 -0
- package/dist/icons/bubble-minus.svelte.d.ts +17 -0
- package/dist/icons/bubble-plus.svelte +6 -0
- package/dist/icons/bubble-plus.svelte.d.ts +17 -0
- package/dist/icons/bubble-text.svelte +6 -0
- package/dist/icons/bubble-text.svelte.d.ts +17 -0
- package/dist/icons/bubble-x.svelte +6 -0
- package/dist/icons/bubble-x.svelte.d.ts +17 -0
- package/dist/icons/bubble.svelte +6 -0
- package/dist/icons/bubble.svelte.d.ts +17 -0
- package/dist/icons/carambola.svelte +6 -0
- package/dist/icons/carambola.svelte.d.ts +17 -0
- package/dist/icons/circle-dashed-check.svelte +6 -0
- package/dist/icons/circle-dashed-check.svelte.d.ts +17 -0
- package/dist/icons/circle-dashed-minus.svelte +6 -0
- package/dist/icons/circle-dashed-minus.svelte.d.ts +17 -0
- package/dist/icons/circle-dashed-plus.svelte +6 -0
- package/dist/icons/circle-dashed-plus.svelte.d.ts +17 -0
- package/dist/icons/dumpling.svelte +6 -0
- package/dist/icons/dumpling.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +18 -0
- package/dist/icons/index.js +18 -0
- package/dist/icons/message-dots.svelte +1 -1
- package/dist/icons/monkeybar.svelte +6 -0
- package/dist/icons/monkeybar.svelte.d.ts +17 -0
- package/dist/icons/pentagon-minus.svelte +6 -0
- package/dist/icons/pentagon-minus.svelte.d.ts +17 -0
- package/dist/icons/picture-in-picture-filled.svelte +6 -0
- package/dist/icons/picture-in-picture-filled.svelte.d.ts +17 -0
- package/dist/icons/picture-in-picture-top-filled.svelte +6 -0
- package/dist/icons/picture-in-picture-top-filled.svelte.d.ts +17 -0
- package/dist/icons/text-wrap-column.svelte +6 -0
- package/dist/icons/text-wrap-column.svelte.d.ts +17 -0
- package/dist/icons/toggle-left-filled.svelte +6 -0
- package/dist/icons/toggle-left-filled.svelte.d.ts +17 -0
- package/dist/icons/toggle-right-filled.svelte +6 -0
- package/dist/icons/toggle-right-filled.svelte.d.ts +17 -0
- package/dist/icons-list.js +18 -0
- package/package.json +74 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M12
|
|
2
|
+
const iconNode = [["path", { "d": "M12 8.866l-2.733 -2.734a3.866 3.866 0 0 0 -5.467 5.467l2.733 2.734l5.467 5.467l8.202 -8.201a3.866 3.866 0 0 0 -5.469 -5.466l-8.201 8.2" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="brand-google-fit" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.4 2a6.33 6.33 0 0 1 5.491 3.176l.09 .162l.126 .027a6.335 6.335 0 0 1 4.889 5.934l.004 .234a6.333 6.333 0 0 1 -6.333 6.334l-.035 -.002l-.035 .05a5.26 5.26 0 0 1 -3.958 2.08l-.239 .005q -.722 0 -1.404 -.19l-.047 -.014l-3.434 2.061a1 1 0 0 1 -1.509 -.743l-.006 -.114v-2.434l-.121 -.06a3.67 3.67 0 0 1 -1.94 -3.042l-.006 -.197q 0 -.365 .07 -.717l.013 -.058l-.113 -.09a5.8 5.8 0 0 1 -2.098 -4.218l-.005 -.25a5.8 5.8 0 0 1 5.8 -5.8l.058 .001l.15 -.163a6.32 6.32 0 0 1 4.328 -1.967z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="bubble-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 BubbleFilledProps = typeof __propDef.props;
|
|
13
|
+
export type BubbleFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type BubbleFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BubbleFilled extends SvelteComponentTyped<BubbleFilledProps, BubbleFilledEvents, BubbleFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.4 19a4.2 4.2 0 0 1 -1.57 -.298l-3.83 2.298v-3.134a2.668 2.668 0 0 1 -1.795 -3.773a4.8 4.8 0 0 1 2.908 -8.933a5.335 5.335 0 0 1 9.194 1.078a5.333 5.333 0 0 1 3.404 8.771" }], ["path", { "d": "M16 19h6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="bubble-minus" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type BubbleMinusProps = typeof __propDef.props;
|
|
13
|
+
export type BubbleMinusEvents = typeof __propDef.events;
|
|
14
|
+
export type BubbleMinusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BubbleMinus extends SvelteComponentTyped<BubbleMinusProps, BubbleMinusEvents, BubbleMinusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.4 19a4.2 4.2 0 0 1 -1.57 -.298l-3.83 2.298v-3.134a2.668 2.668 0 0 1 -1.795 -3.773a4.8 4.8 0 0 1 2.908 -8.933a5.335 5.335 0 0 1 9.194 1.078a5.333 5.333 0 0 1 4.45 6.89" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16v6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="bubble-plus" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type BubblePlusProps = typeof __propDef.props;
|
|
13
|
+
export type BubblePlusEvents = typeof __propDef.events;
|
|
14
|
+
export type BubblePlusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BubblePlus extends SvelteComponentTyped<BubblePlusProps, BubblePlusEvents, BubblePlusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M7 10h10" }], ["path", { "d": "M9 14h5" }], ["path", { "d": "M12.4 3a5.34 5.34 0 0 1 4.906 3.239a5.333 5.333 0 0 1 -1.195 10.6a4.26 4.26 0 0 1 -5.28 1.863l-3.831 2.298v-3.134a2.668 2.668 0 0 1 -1.795 -3.773a4.8 4.8 0 0 1 2.908 -8.933a5.33 5.33 0 0 1 4.287 -2.16" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="bubble-text" {...$$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 BubbleTextProps = typeof __propDef.props;
|
|
13
|
+
export type BubbleTextEvents = typeof __propDef.events;
|
|
14
|
+
export type BubbleTextSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BubbleText extends SvelteComponentTyped<BubbleTextProps, BubbleTextEvents, BubbleTextSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M13.5 18.75c-.345 .09 -.727 .25 -1.1 .25a4.3 4.3 0 0 1 -1.57 -.298l-3.83 2.298v-3.134a2.668 2.668 0 0 1 -1.795 -3.773a4.8 4.8 0 0 1 2.908 -8.933a5.335 5.335 0 0 1 9.194 1.078a5.333 5.333 0 0 1 4.484 6.778" }], ["path", { "d": "M22 22l-5 -5" }], ["path", { "d": "M17 22l5 -5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="bubble-x" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type BubbleXProps = typeof __propDef.props;
|
|
13
|
+
export type BubbleXEvents = typeof __propDef.events;
|
|
14
|
+
export type BubbleXSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BubbleX extends SvelteComponentTyped<BubbleXProps, BubbleXEvents, BubbleXSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.4 3a5.34 5.34 0 0 1 4.906 3.239a5.333 5.333 0 0 1 -1.195 10.6a4.26 4.26 0 0 1 -5.28 1.863l-3.831 2.298v-3.134a2.668 2.668 0 0 1 -1.795 -3.773a4.8 4.8 0 0 1 2.908 -8.933a5.33 5.33 0 0 1 4.287 -2.16" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="bubble" {...$$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 BubbleProps = typeof __propDef.props;
|
|
13
|
+
export type BubbleEvents = typeof __propDef.events;
|
|
14
|
+
export type BubbleSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Bubble extends SvelteComponentTyped<BubbleProps, BubbleEvents, BubbleSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17.286 21.09q -1.69 .001 -5.288 -2.615q -3.596 2.617 -5.288 2.616q -2.726 0 -.495 -6.8q -9.389 -6.775 2.135 -6.775h.076q 1.785 -5.516 3.574 -5.516q 1.785 0 3.574 5.516h.076q 11.525 0 2.133 6.774q 2.23 6.802 -.497 6.8" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="carambola" {...$$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 CarambolaProps = typeof __propDef.props;
|
|
13
|
+
export type CarambolaEvents = typeof __propDef.events;
|
|
14
|
+
export type CarambolaSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Carambola extends SvelteComponentTyped<CarambolaProps, CarambolaEvents, CarambolaSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8.56 3.69a9 9 0 0 0 -2.92 1.95" }], ["path", { "d": "M3.69 8.56a9 9 0 0 0 -.69 3.44" }], ["path", { "d": "M3.69 15.44a9 9 0 0 0 1.95 2.92" }], ["path", { "d": "M8.56 20.31a9 9 0 0 0 3.44 .69" }], ["path", { "d": "M15.44 20.31a9 9 0 0 0 2.92 -1.95" }], ["path", { "d": "M20.31 15.44a9 9 0 0 0 .69 -3.44" }], ["path", { "d": "M20.31 8.56a9 9 0 0 0 -1.95 -2.92" }], ["path", { "d": "M15.44 3.69a9 9 0 0 0 -3.44 -.69" }], ["path", { "d": "M9 12l2 2l4 -4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="circle-dashed-check" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type CircleDashedCheckProps = typeof __propDef.props;
|
|
13
|
+
export type CircleDashedCheckEvents = typeof __propDef.events;
|
|
14
|
+
export type CircleDashedCheckSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CircleDashedCheck extends SvelteComponentTyped<CircleDashedCheckProps, CircleDashedCheckEvents, CircleDashedCheckSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8.56 3.69a9 9 0 0 0 -2.92 1.95" }], ["path", { "d": "M3.69 8.56a9 9 0 0 0 -.69 3.44" }], ["path", { "d": "M3.69 15.44a9 9 0 0 0 1.95 2.92" }], ["path", { "d": "M8.56 20.31a9 9 0 0 0 3.44 .69" }], ["path", { "d": "M15.44 20.31a9 9 0 0 0 2.92 -1.95" }], ["path", { "d": "M20.31 15.44a9 9 0 0 0 .69 -3.44" }], ["path", { "d": "M20.31 8.56a9 9 0 0 0 -1.95 -2.92" }], ["path", { "d": "M15.44 3.69a9 9 0 0 0 -3.44 -.69" }], ["path", { "d": "M9 12h6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="circle-dashed-minus" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type CircleDashedMinusProps = typeof __propDef.props;
|
|
13
|
+
export type CircleDashedMinusEvents = typeof __propDef.events;
|
|
14
|
+
export type CircleDashedMinusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CircleDashedMinus extends SvelteComponentTyped<CircleDashedMinusProps, CircleDashedMinusEvents, CircleDashedMinusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8.56 3.69a9 9 0 0 0 -2.92 1.95" }], ["path", { "d": "M3.69 8.56a9 9 0 0 0 -.69 3.44" }], ["path", { "d": "M3.69 15.44a9 9 0 0 0 1.95 2.92" }], ["path", { "d": "M8.56 20.31a9 9 0 0 0 3.44 .69" }], ["path", { "d": "M15.44 20.31a9 9 0 0 0 2.92 -1.95" }], ["path", { "d": "M20.31 15.44a9 9 0 0 0 .69 -3.44" }], ["path", { "d": "M20.31 8.56a9 9 0 0 0 -1.95 -2.92" }], ["path", { "d": "M15.44 3.69a9 9 0 0 0 -3.44 -.69" }], ["path", { "d": "M9 12h6" }], ["path", { "d": "M12 9v6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="circle-dashed-plus" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type CircleDashedPlusProps = typeof __propDef.props;
|
|
13
|
+
export type CircleDashedPlusEvents = typeof __propDef.events;
|
|
14
|
+
export type CircleDashedPlusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CircleDashedPlus extends SvelteComponentTyped<CircleDashedPlusProps, CircleDashedPlusEvents, CircleDashedPlusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5.532 5.532a2.53 2.53 0 0 1 2.56 -.623a2.532 2.532 0 0 1 4.604 -.717q .146 -.24 .356 -.45a2.532 2.532 0 0 1 4.318 1.637a2.53 2.53 0 0 1 2.844 .511l.358 .358c1.384 1.385 -.7 5.713 -4.655 9.669c-3.956 3.955 -8.284 6.04 -9.669 4.655l-.358 -.358l-.114 -.122a2.53 2.53 0 0 1 -.398 -2.724a2.532 2.532 0 0 1 -1.186 -4.675a2.532 2.532 0 0 1 .718 -4.603a2.53 2.53 0 0 1 .622 -2.558" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="dumpling" {...$$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 DumplingProps = typeof __propDef.props;
|
|
13
|
+
export type DumplingEvents = typeof __propDef.events;
|
|
14
|
+
export type DumplingSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Dumpling extends SvelteComponentTyped<DumplingProps, DumplingEvents, DumplingSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -947,6 +947,11 @@ export { default as IconBrowserX } from './browser-x.svelte';
|
|
|
947
947
|
export { default as IconBrowser } from './browser.svelte';
|
|
948
948
|
export { default as IconBrushOff } from './brush-off.svelte';
|
|
949
949
|
export { default as IconBrush } from './brush.svelte';
|
|
950
|
+
export { default as IconBubbleMinus } from './bubble-minus.svelte';
|
|
951
|
+
export { default as IconBubblePlus } from './bubble-plus.svelte';
|
|
952
|
+
export { default as IconBubbleText } from './bubble-text.svelte';
|
|
953
|
+
export { default as IconBubbleX } from './bubble-x.svelte';
|
|
954
|
+
export { default as IconBubble } from './bubble.svelte';
|
|
950
955
|
export { default as IconBucketDroplet } from './bucket-droplet.svelte';
|
|
951
956
|
export { default as IconBucketOff } from './bucket-off.svelte';
|
|
952
957
|
export { default as IconBucket } from './bucket.svelte';
|
|
@@ -1074,6 +1079,7 @@ export { default as IconCarOff } from './car-off.svelte';
|
|
|
1074
1079
|
export { default as IconCarSuv } from './car-suv.svelte';
|
|
1075
1080
|
export { default as IconCarTurbine } from './car-turbine.svelte';
|
|
1076
1081
|
export { default as IconCar } from './car.svelte';
|
|
1082
|
+
export { default as IconCarambola } from './carambola.svelte';
|
|
1077
1083
|
export { default as IconCaravan } from './caravan.svelte';
|
|
1078
1084
|
export { default as IconCardboardsOff } from './cardboards-off.svelte';
|
|
1079
1085
|
export { default as IconCardboards } from './cardboards.svelte';
|
|
@@ -1211,6 +1217,8 @@ export { default as IconCircleChevronsDown } from './circle-chevrons-down.svelte
|
|
|
1211
1217
|
export { default as IconCircleChevronsLeft } from './circle-chevrons-left.svelte';
|
|
1212
1218
|
export { default as IconCircleChevronsRight } from './circle-chevrons-right.svelte';
|
|
1213
1219
|
export { default as IconCircleChevronsUp } from './circle-chevrons-up.svelte';
|
|
1220
|
+
export { default as IconCircleDashedCheck } from './circle-dashed-check.svelte';
|
|
1221
|
+
export { default as IconCircleDashedMinus } from './circle-dashed-minus.svelte';
|
|
1214
1222
|
export { default as IconCircleDashedNumber0 } from './circle-dashed-number-0.svelte';
|
|
1215
1223
|
export { default as IconCircleDashedNumber1 } from './circle-dashed-number-1.svelte';
|
|
1216
1224
|
export { default as IconCircleDashedNumber2 } from './circle-dashed-number-2.svelte';
|
|
@@ -1222,6 +1230,7 @@ export { default as IconCircleDashedNumber7 } from './circle-dashed-number-7.sve
|
|
|
1222
1230
|
export { default as IconCircleDashedNumber8 } from './circle-dashed-number-8.svelte';
|
|
1223
1231
|
export { default as IconCircleDashedNumber9 } from './circle-dashed-number-9.svelte';
|
|
1224
1232
|
export { default as IconCircleDashedPercentage } from './circle-dashed-percentage.svelte';
|
|
1233
|
+
export { default as IconCircleDashedPlus } from './circle-dashed-plus.svelte';
|
|
1225
1234
|
export { default as IconCircleDashedX } from './circle-dashed-x.svelte';
|
|
1226
1235
|
export { default as IconCircleDashed } from './circle-dashed.svelte';
|
|
1227
1236
|
export { default as IconCircleDot } from './circle-dot.svelte';
|
|
@@ -1917,6 +1926,7 @@ export { default as IconDropletX } from './droplet-x.svelte';
|
|
|
1917
1926
|
export { default as IconDroplet } from './droplet.svelte';
|
|
1918
1927
|
export { default as IconDroplets } from './droplets.svelte';
|
|
1919
1928
|
export { default as IconDualScreen } from './dual-screen.svelte';
|
|
1929
|
+
export { default as IconDumpling } from './dumpling.svelte';
|
|
1920
1930
|
export { default as IconEPassport } from './e-passport.svelte';
|
|
1921
1931
|
export { default as IconEarOff } from './ear-off.svelte';
|
|
1922
1932
|
export { default as IconEarScan } from './ear-scan.svelte';
|
|
@@ -3052,6 +3062,7 @@ export { default as IconMist } from './mist.svelte';
|
|
|
3052
3062
|
export { default as IconMobiledataOff } from './mobiledata-off.svelte';
|
|
3053
3063
|
export { default as IconMobiledata } from './mobiledata.svelte';
|
|
3054
3064
|
export { default as IconMoneybag } from './moneybag.svelte';
|
|
3065
|
+
export { default as IconMonkeybar } from './monkeybar.svelte';
|
|
3055
3066
|
export { default as IconMoodAngry } from './mood-angry.svelte';
|
|
3056
3067
|
export { default as IconMoodAnnoyed2 } from './mood-annoyed-2.svelte';
|
|
3057
3068
|
export { default as IconMoodAnnoyed } from './mood-annoyed.svelte';
|
|
@@ -3317,6 +3328,7 @@ export { default as IconPencil } from './pencil.svelte';
|
|
|
3317
3328
|
export { default as IconPennant2 } from './pennant-2.svelte';
|
|
3318
3329
|
export { default as IconPennantOff } from './pennant-off.svelte';
|
|
3319
3330
|
export { default as IconPennant } from './pennant.svelte';
|
|
3331
|
+
export { default as IconPentagonMinus } from './pentagon-minus.svelte';
|
|
3320
3332
|
export { default as IconPentagonNumber0 } from './pentagon-number-0.svelte';
|
|
3321
3333
|
export { default as IconPentagonNumber1 } from './pentagon-number-1.svelte';
|
|
3322
3334
|
export { default as IconPentagonNumber2 } from './pentagon-number-2.svelte';
|
|
@@ -4195,6 +4207,7 @@ export { default as IconTextResize } from './text-resize.svelte';
|
|
|
4195
4207
|
export { default as IconTextScan2 } from './text-scan-2.svelte';
|
|
4196
4208
|
export { default as IconTextSize } from './text-size.svelte';
|
|
4197
4209
|
export { default as IconTextSpellcheck } from './text-spellcheck.svelte';
|
|
4210
|
+
export { default as IconTextWrapColumn } from './text-wrap-column.svelte';
|
|
4198
4211
|
export { default as IconTextWrapDisabled } from './text-wrap-disabled.svelte';
|
|
4199
4212
|
export { default as IconTextWrap } from './text-wrap.svelte';
|
|
4200
4213
|
export { default as IconTexture } from './texture.svelte';
|
|
@@ -4701,6 +4714,7 @@ export { default as IconBrightnessAutoFilled } from './brightness-auto-filled.sv
|
|
|
4701
4714
|
export { default as IconBrightnessDownFilled } from './brightness-down-filled.svelte';
|
|
4702
4715
|
export { default as IconBrightnessUpFilled } from './brightness-up-filled.svelte';
|
|
4703
4716
|
export { default as IconBrightnessFilled } from './brightness-filled.svelte';
|
|
4717
|
+
export { default as IconBubbleFilled } from './bubble-filled.svelte';
|
|
4704
4718
|
export { default as IconBugFilled } from './bug-filled.svelte';
|
|
4705
4719
|
export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
|
|
4706
4720
|
export { default as IconBulbFilled } from './bulb-filled.svelte';
|
|
@@ -5014,6 +5028,8 @@ export { default as IconPennantFilled } from './pennant-filled.svelte';
|
|
|
5014
5028
|
export { default as IconPentagonFilled } from './pentagon-filled.svelte';
|
|
5015
5029
|
export { default as IconPhoneFilled } from './phone-filled.svelte';
|
|
5016
5030
|
export { default as IconPhotoFilled } from './photo-filled.svelte';
|
|
5031
|
+
export { default as IconPictureInPictureTopFilled } from './picture-in-picture-top-filled.svelte';
|
|
5032
|
+
export { default as IconPictureInPictureFilled } from './picture-in-picture-filled.svelte';
|
|
5017
5033
|
export { default as IconPinFilled } from './pin-filled.svelte';
|
|
5018
5034
|
export { default as IconPinnedFilled } from './pinned-filled.svelte';
|
|
5019
5035
|
export { default as IconPlayerEjectFilled } from './player-eject-filled.svelte';
|
|
@@ -5182,6 +5198,8 @@ export { default as IconTableFilled } from './table-filled.svelte';
|
|
|
5182
5198
|
export { default as IconThumbDownFilled } from './thumb-down-filled.svelte';
|
|
5183
5199
|
export { default as IconThumbUpFilled } from './thumb-up-filled.svelte';
|
|
5184
5200
|
export { default as IconTimelineEventFilled } from './timeline-event-filled.svelte';
|
|
5201
|
+
export { default as IconToggleLeftFilled } from './toggle-left-filled.svelte';
|
|
5202
|
+
export { default as IconToggleRightFilled } from './toggle-right-filled.svelte';
|
|
5185
5203
|
export { default as IconTransformFilled } from './transform-filled.svelte';
|
|
5186
5204
|
export { default as IconTransitionBottomFilled } from './transition-bottom-filled.svelte';
|
|
5187
5205
|
export { default as IconTransitionLeftFilled } from './transition-left-filled.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -947,6 +947,11 @@ export { default as IconBrowserX } from './browser-x.svelte';
|
|
|
947
947
|
export { default as IconBrowser } from './browser.svelte';
|
|
948
948
|
export { default as IconBrushOff } from './brush-off.svelte';
|
|
949
949
|
export { default as IconBrush } from './brush.svelte';
|
|
950
|
+
export { default as IconBubbleMinus } from './bubble-minus.svelte';
|
|
951
|
+
export { default as IconBubblePlus } from './bubble-plus.svelte';
|
|
952
|
+
export { default as IconBubbleText } from './bubble-text.svelte';
|
|
953
|
+
export { default as IconBubbleX } from './bubble-x.svelte';
|
|
954
|
+
export { default as IconBubble } from './bubble.svelte';
|
|
950
955
|
export { default as IconBucketDroplet } from './bucket-droplet.svelte';
|
|
951
956
|
export { default as IconBucketOff } from './bucket-off.svelte';
|
|
952
957
|
export { default as IconBucket } from './bucket.svelte';
|
|
@@ -1074,6 +1079,7 @@ export { default as IconCarOff } from './car-off.svelte';
|
|
|
1074
1079
|
export { default as IconCarSuv } from './car-suv.svelte';
|
|
1075
1080
|
export { default as IconCarTurbine } from './car-turbine.svelte';
|
|
1076
1081
|
export { default as IconCar } from './car.svelte';
|
|
1082
|
+
export { default as IconCarambola } from './carambola.svelte';
|
|
1077
1083
|
export { default as IconCaravan } from './caravan.svelte';
|
|
1078
1084
|
export { default as IconCardboardsOff } from './cardboards-off.svelte';
|
|
1079
1085
|
export { default as IconCardboards } from './cardboards.svelte';
|
|
@@ -1211,6 +1217,8 @@ export { default as IconCircleChevronsDown } from './circle-chevrons-down.svelte
|
|
|
1211
1217
|
export { default as IconCircleChevronsLeft } from './circle-chevrons-left.svelte';
|
|
1212
1218
|
export { default as IconCircleChevronsRight } from './circle-chevrons-right.svelte';
|
|
1213
1219
|
export { default as IconCircleChevronsUp } from './circle-chevrons-up.svelte';
|
|
1220
|
+
export { default as IconCircleDashedCheck } from './circle-dashed-check.svelte';
|
|
1221
|
+
export { default as IconCircleDashedMinus } from './circle-dashed-minus.svelte';
|
|
1214
1222
|
export { default as IconCircleDashedNumber0 } from './circle-dashed-number-0.svelte';
|
|
1215
1223
|
export { default as IconCircleDashedNumber1 } from './circle-dashed-number-1.svelte';
|
|
1216
1224
|
export { default as IconCircleDashedNumber2 } from './circle-dashed-number-2.svelte';
|
|
@@ -1222,6 +1230,7 @@ export { default as IconCircleDashedNumber7 } from './circle-dashed-number-7.sve
|
|
|
1222
1230
|
export { default as IconCircleDashedNumber8 } from './circle-dashed-number-8.svelte';
|
|
1223
1231
|
export { default as IconCircleDashedNumber9 } from './circle-dashed-number-9.svelte';
|
|
1224
1232
|
export { default as IconCircleDashedPercentage } from './circle-dashed-percentage.svelte';
|
|
1233
|
+
export { default as IconCircleDashedPlus } from './circle-dashed-plus.svelte';
|
|
1225
1234
|
export { default as IconCircleDashedX } from './circle-dashed-x.svelte';
|
|
1226
1235
|
export { default as IconCircleDashed } from './circle-dashed.svelte';
|
|
1227
1236
|
export { default as IconCircleDot } from './circle-dot.svelte';
|
|
@@ -1917,6 +1926,7 @@ export { default as IconDropletX } from './droplet-x.svelte';
|
|
|
1917
1926
|
export { default as IconDroplet } from './droplet.svelte';
|
|
1918
1927
|
export { default as IconDroplets } from './droplets.svelte';
|
|
1919
1928
|
export { default as IconDualScreen } from './dual-screen.svelte';
|
|
1929
|
+
export { default as IconDumpling } from './dumpling.svelte';
|
|
1920
1930
|
export { default as IconEPassport } from './e-passport.svelte';
|
|
1921
1931
|
export { default as IconEarOff } from './ear-off.svelte';
|
|
1922
1932
|
export { default as IconEarScan } from './ear-scan.svelte';
|
|
@@ -3052,6 +3062,7 @@ export { default as IconMist } from './mist.svelte';
|
|
|
3052
3062
|
export { default as IconMobiledataOff } from './mobiledata-off.svelte';
|
|
3053
3063
|
export { default as IconMobiledata } from './mobiledata.svelte';
|
|
3054
3064
|
export { default as IconMoneybag } from './moneybag.svelte';
|
|
3065
|
+
export { default as IconMonkeybar } from './monkeybar.svelte';
|
|
3055
3066
|
export { default as IconMoodAngry } from './mood-angry.svelte';
|
|
3056
3067
|
export { default as IconMoodAnnoyed2 } from './mood-annoyed-2.svelte';
|
|
3057
3068
|
export { default as IconMoodAnnoyed } from './mood-annoyed.svelte';
|
|
@@ -3317,6 +3328,7 @@ export { default as IconPencil } from './pencil.svelte';
|
|
|
3317
3328
|
export { default as IconPennant2 } from './pennant-2.svelte';
|
|
3318
3329
|
export { default as IconPennantOff } from './pennant-off.svelte';
|
|
3319
3330
|
export { default as IconPennant } from './pennant.svelte';
|
|
3331
|
+
export { default as IconPentagonMinus } from './pentagon-minus.svelte';
|
|
3320
3332
|
export { default as IconPentagonNumber0 } from './pentagon-number-0.svelte';
|
|
3321
3333
|
export { default as IconPentagonNumber1 } from './pentagon-number-1.svelte';
|
|
3322
3334
|
export { default as IconPentagonNumber2 } from './pentagon-number-2.svelte';
|
|
@@ -4195,6 +4207,7 @@ export { default as IconTextResize } from './text-resize.svelte';
|
|
|
4195
4207
|
export { default as IconTextScan2 } from './text-scan-2.svelte';
|
|
4196
4208
|
export { default as IconTextSize } from './text-size.svelte';
|
|
4197
4209
|
export { default as IconTextSpellcheck } from './text-spellcheck.svelte';
|
|
4210
|
+
export { default as IconTextWrapColumn } from './text-wrap-column.svelte';
|
|
4198
4211
|
export { default as IconTextWrapDisabled } from './text-wrap-disabled.svelte';
|
|
4199
4212
|
export { default as IconTextWrap } from './text-wrap.svelte';
|
|
4200
4213
|
export { default as IconTexture } from './texture.svelte';
|
|
@@ -4701,6 +4714,7 @@ export { default as IconBrightnessAutoFilled } from './brightness-auto-filled.sv
|
|
|
4701
4714
|
export { default as IconBrightnessDownFilled } from './brightness-down-filled.svelte';
|
|
4702
4715
|
export { default as IconBrightnessUpFilled } from './brightness-up-filled.svelte';
|
|
4703
4716
|
export { default as IconBrightnessFilled } from './brightness-filled.svelte';
|
|
4717
|
+
export { default as IconBubbleFilled } from './bubble-filled.svelte';
|
|
4704
4718
|
export { default as IconBugFilled } from './bug-filled.svelte';
|
|
4705
4719
|
export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
|
|
4706
4720
|
export { default as IconBulbFilled } from './bulb-filled.svelte';
|
|
@@ -5014,6 +5028,8 @@ export { default as IconPennantFilled } from './pennant-filled.svelte';
|
|
|
5014
5028
|
export { default as IconPentagonFilled } from './pentagon-filled.svelte';
|
|
5015
5029
|
export { default as IconPhoneFilled } from './phone-filled.svelte';
|
|
5016
5030
|
export { default as IconPhotoFilled } from './photo-filled.svelte';
|
|
5031
|
+
export { default as IconPictureInPictureTopFilled } from './picture-in-picture-top-filled.svelte';
|
|
5032
|
+
export { default as IconPictureInPictureFilled } from './picture-in-picture-filled.svelte';
|
|
5017
5033
|
export { default as IconPinFilled } from './pin-filled.svelte';
|
|
5018
5034
|
export { default as IconPinnedFilled } from './pinned-filled.svelte';
|
|
5019
5035
|
export { default as IconPlayerEjectFilled } from './player-eject-filled.svelte';
|
|
@@ -5182,6 +5198,8 @@ export { default as IconTableFilled } from './table-filled.svelte';
|
|
|
5182
5198
|
export { default as IconThumbDownFilled } from './thumb-down-filled.svelte';
|
|
5183
5199
|
export { default as IconThumbUpFilled } from './thumb-up-filled.svelte';
|
|
5184
5200
|
export { default as IconTimelineEventFilled } from './timeline-event-filled.svelte';
|
|
5201
|
+
export { default as IconToggleLeftFilled } from './toggle-left-filled.svelte';
|
|
5202
|
+
export { default as IconToggleRightFilled } from './toggle-right-filled.svelte';
|
|
5185
5203
|
export { default as IconTransformFilled } from './transform-filled.svelte';
|
|
5186
5204
|
export { default as IconTransitionBottomFilled } from './transition-bottom-filled.svelte';
|
|
5187
5205
|
export { default as IconTransitionLeftFilled } from './transition-left-filled.svelte';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "
|
|
2
|
+
const iconNode = [["path", { "d": "M12 11v.01" }], ["path", { "d": "M8 11v.01" }], ["path", { "d": "M16 11v.01" }], ["path", { "d": "M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3z" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="message-dots" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 21v-15l5 -3l5 3v15" }], ["path", { "d": "M8 21v-7" }], ["path", { "d": "M3 14h10" }], ["path", { "d": "M6 10a2 2 0 1 1 4 0" }], ["path", { "d": "M13 13c6 0 3 8 8 8" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="monkeybar" {...$$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 MonkeybarProps = typeof __propDef.props;
|
|
13
|
+
export type MonkeybarEvents = typeof __propDef.events;
|
|
14
|
+
export type MonkeybarSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Monkeybar extends SvelteComponentTyped<MonkeybarProps, MonkeybarEvents, MonkeybarSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.5 21q -1.82 0 -5.458 .005a1.98 1.98 0 0 1 -1.881 -1.367l-3.064 -9.43a1.98 1.98 0 0 1 .719 -2.212l8.021 -5.828a1.98 1.98 0 0 1 2.326 0l8.021 5.828c.694 .504 .984 1.397 .719 2.212l-1.559 4.792" }], ["path", { "d": "M16 19h6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="pentagon-minus" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type PentagonMinusProps = typeof __propDef.props;
|
|
13
|
+
export type PentagonMinusEvents = typeof __propDef.events;
|
|
14
|
+
export type PentagonMinusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PentagonMinus extends SvelteComponentTyped<PentagonMinusProps, PentagonMinusEvents, PentagonMinusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M19 4a3 3 0 0 1 3 3v4a1 1 0 0 1 -2 0v-4a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v10a1 1 0 0 0 1 1h6a1 1 0 0 1 0 2h-6a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3z" }], ["path", { "d": "M20 13a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-5a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="picture-in-picture-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 PictureInPictureFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PictureInPictureFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PictureInPictureFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PictureInPictureFilled extends SvelteComponentTyped<PictureInPictureFilledProps, PictureInPictureFilledEvents, PictureInPictureFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M11 4a1 1 0 0 1 0 2h-6a1 1 0 0 0 -1 1v10a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-4a1 1 0 0 1 2 0v4a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3z" }], ["path", { "d": "M20 4a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-5a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="picture-in-picture-top-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 PictureInPictureTopFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PictureInPictureTopFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PictureInPictureTopFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PictureInPictureTopFilled extends SvelteComponentTyped<PictureInPictureTopFilledProps, PictureInPictureTopFilledEvents, PictureInPictureTopFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M7 9h7a3 3 0 0 1 0 6h-4l2 -2" }], ["path", { "d": "M12 17l-2 -2" }], ["path", { "d": "M3 3v18" }], ["path", { "d": "M21 3v18" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="text-wrap-column" {...$$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 TextWrapColumnProps = typeof __propDef.props;
|
|
13
|
+
export type TextWrapColumnEvents = typeof __propDef.events;
|
|
14
|
+
export type TextWrapColumnSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TextWrapColumn extends SvelteComponentTyped<TextWrapColumnProps, TextWrapColumnEvents, TextWrapColumnSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8 9a3 3 0 1 1 -3 3l.005 -.176a3 3 0 0 1 2.995 -2.824" }], ["path", { "d": "M16 5a7 7 0 0 1 0 14h-8a7 7 0 0 1 0 -14zm0 2h-8a5 5 0 1 0 0 10h8a5 5 0 0 0 0 -10" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="toggle-left-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 ToggleLeftFilledProps = typeof __propDef.props;
|
|
13
|
+
export type ToggleLeftFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type ToggleLeftFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ToggleLeftFilled extends SvelteComponentTyped<ToggleLeftFilledProps, ToggleLeftFilledEvents, ToggleLeftFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M16 9a3 3 0 1 1 -3 3l.005 -.176a3 3 0 0 1 2.995 -2.824" }], ["path", { "d": "M16 5a7 7 0 0 1 0 14h-8a7 7 0 0 1 0 -14zm0 2h-8a5 5 0 1 0 0 10h8a5 5 0 0 0 0 -10" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="toggle-right-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 ToggleRightFilledProps = typeof __propDef.props;
|
|
13
|
+
export type ToggleRightFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type ToggleRightFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ToggleRightFilled extends SvelteComponentTyped<ToggleRightFilledProps, ToggleRightFilledEvents, ToggleRightFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -948,6 +948,11 @@ export default [
|
|
|
948
948
|
"browser",
|
|
949
949
|
"brush-off",
|
|
950
950
|
"brush",
|
|
951
|
+
"bubble-minus",
|
|
952
|
+
"bubble-plus",
|
|
953
|
+
"bubble-text",
|
|
954
|
+
"bubble-x",
|
|
955
|
+
"bubble",
|
|
951
956
|
"bucket-droplet",
|
|
952
957
|
"bucket-off",
|
|
953
958
|
"bucket",
|
|
@@ -1075,6 +1080,7 @@ export default [
|
|
|
1075
1080
|
"car-suv",
|
|
1076
1081
|
"car-turbine",
|
|
1077
1082
|
"car",
|
|
1083
|
+
"carambola",
|
|
1078
1084
|
"caravan",
|
|
1079
1085
|
"cardboards-off",
|
|
1080
1086
|
"cardboards",
|
|
@@ -1212,6 +1218,8 @@ export default [
|
|
|
1212
1218
|
"circle-chevrons-left",
|
|
1213
1219
|
"circle-chevrons-right",
|
|
1214
1220
|
"circle-chevrons-up",
|
|
1221
|
+
"circle-dashed-check",
|
|
1222
|
+
"circle-dashed-minus",
|
|
1215
1223
|
"circle-dashed-number-0",
|
|
1216
1224
|
"circle-dashed-number-1",
|
|
1217
1225
|
"circle-dashed-number-2",
|
|
@@ -1223,6 +1231,7 @@ export default [
|
|
|
1223
1231
|
"circle-dashed-number-8",
|
|
1224
1232
|
"circle-dashed-number-9",
|
|
1225
1233
|
"circle-dashed-percentage",
|
|
1234
|
+
"circle-dashed-plus",
|
|
1226
1235
|
"circle-dashed-x",
|
|
1227
1236
|
"circle-dashed",
|
|
1228
1237
|
"circle-dot",
|
|
@@ -1918,6 +1927,7 @@ export default [
|
|
|
1918
1927
|
"droplet",
|
|
1919
1928
|
"droplets",
|
|
1920
1929
|
"dual-screen",
|
|
1930
|
+
"dumpling",
|
|
1921
1931
|
"e-passport",
|
|
1922
1932
|
"ear-off",
|
|
1923
1933
|
"ear-scan",
|
|
@@ -3053,6 +3063,7 @@ export default [
|
|
|
3053
3063
|
"mobiledata-off",
|
|
3054
3064
|
"mobiledata",
|
|
3055
3065
|
"moneybag",
|
|
3066
|
+
"monkeybar",
|
|
3056
3067
|
"mood-angry",
|
|
3057
3068
|
"mood-annoyed-2",
|
|
3058
3069
|
"mood-annoyed",
|
|
@@ -3318,6 +3329,7 @@ export default [
|
|
|
3318
3329
|
"pennant-2",
|
|
3319
3330
|
"pennant-off",
|
|
3320
3331
|
"pennant",
|
|
3332
|
+
"pentagon-minus",
|
|
3321
3333
|
"pentagon-number-0",
|
|
3322
3334
|
"pentagon-number-1",
|
|
3323
3335
|
"pentagon-number-2",
|
|
@@ -4196,6 +4208,7 @@ export default [
|
|
|
4196
4208
|
"text-scan-2",
|
|
4197
4209
|
"text-size",
|
|
4198
4210
|
"text-spellcheck",
|
|
4211
|
+
"text-wrap-column",
|
|
4199
4212
|
"text-wrap-disabled",
|
|
4200
4213
|
"text-wrap",
|
|
4201
4214
|
"texture",
|
|
@@ -4702,6 +4715,7 @@ export default [
|
|
|
4702
4715
|
"brightness-down-filled",
|
|
4703
4716
|
"brightness-up-filled",
|
|
4704
4717
|
"brightness-filled",
|
|
4718
|
+
"bubble-filled",
|
|
4705
4719
|
"bug-filled",
|
|
4706
4720
|
"building-broadcast-tower-filled",
|
|
4707
4721
|
"bulb-filled",
|
|
@@ -5015,6 +5029,8 @@ export default [
|
|
|
5015
5029
|
"pentagon-filled",
|
|
5016
5030
|
"phone-filled",
|
|
5017
5031
|
"photo-filled",
|
|
5032
|
+
"picture-in-picture-top-filled",
|
|
5033
|
+
"picture-in-picture-filled",
|
|
5018
5034
|
"pin-filled",
|
|
5019
5035
|
"pinned-filled",
|
|
5020
5036
|
"player-eject-filled",
|
|
@@ -5183,6 +5199,8 @@ export default [
|
|
|
5183
5199
|
"thumb-down-filled",
|
|
5184
5200
|
"thumb-up-filled",
|
|
5185
5201
|
"timeline-event-filled",
|
|
5202
|
+
"toggle-left-filled",
|
|
5203
|
+
"toggle-right-filled",
|
|
5186
5204
|
"transform-filled",
|
|
5187
5205
|
"transition-bottom-filled",
|
|
5188
5206
|
"transition-left-filled",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.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.",
|
|
@@ -3825,6 +3825,26 @@
|
|
|
3825
3825
|
"types": "./dist/icons/brush.svelte.d.ts",
|
|
3826
3826
|
"svelte": "./dist/icons/brush.svelte"
|
|
3827
3827
|
},
|
|
3828
|
+
"./IconBubbleMinus.svelte": {
|
|
3829
|
+
"types": "./dist/icons/bubble-minus.svelte.d.ts",
|
|
3830
|
+
"svelte": "./dist/icons/bubble-minus.svelte"
|
|
3831
|
+
},
|
|
3832
|
+
"./IconBubblePlus.svelte": {
|
|
3833
|
+
"types": "./dist/icons/bubble-plus.svelte.d.ts",
|
|
3834
|
+
"svelte": "./dist/icons/bubble-plus.svelte"
|
|
3835
|
+
},
|
|
3836
|
+
"./IconBubbleText.svelte": {
|
|
3837
|
+
"types": "./dist/icons/bubble-text.svelte.d.ts",
|
|
3838
|
+
"svelte": "./dist/icons/bubble-text.svelte"
|
|
3839
|
+
},
|
|
3840
|
+
"./IconBubbleX.svelte": {
|
|
3841
|
+
"types": "./dist/icons/bubble-x.svelte.d.ts",
|
|
3842
|
+
"svelte": "./dist/icons/bubble-x.svelte"
|
|
3843
|
+
},
|
|
3844
|
+
"./IconBubble.svelte": {
|
|
3845
|
+
"types": "./dist/icons/bubble.svelte.d.ts",
|
|
3846
|
+
"svelte": "./dist/icons/bubble.svelte"
|
|
3847
|
+
},
|
|
3828
3848
|
"./IconBucketDroplet.svelte": {
|
|
3829
3849
|
"types": "./dist/icons/bucket-droplet.svelte.d.ts",
|
|
3830
3850
|
"svelte": "./dist/icons/bucket-droplet.svelte"
|
|
@@ -4333,6 +4353,10 @@
|
|
|
4333
4353
|
"types": "./dist/icons/car.svelte.d.ts",
|
|
4334
4354
|
"svelte": "./dist/icons/car.svelte"
|
|
4335
4355
|
},
|
|
4356
|
+
"./IconCarambola.svelte": {
|
|
4357
|
+
"types": "./dist/icons/carambola.svelte.d.ts",
|
|
4358
|
+
"svelte": "./dist/icons/carambola.svelte"
|
|
4359
|
+
},
|
|
4336
4360
|
"./IconCaravan.svelte": {
|
|
4337
4361
|
"types": "./dist/icons/caravan.svelte.d.ts",
|
|
4338
4362
|
"svelte": "./dist/icons/caravan.svelte"
|
|
@@ -4881,6 +4905,14 @@
|
|
|
4881
4905
|
"types": "./dist/icons/circle-chevrons-up.svelte.d.ts",
|
|
4882
4906
|
"svelte": "./dist/icons/circle-chevrons-up.svelte"
|
|
4883
4907
|
},
|
|
4908
|
+
"./IconCircleDashedCheck.svelte": {
|
|
4909
|
+
"types": "./dist/icons/circle-dashed-check.svelte.d.ts",
|
|
4910
|
+
"svelte": "./dist/icons/circle-dashed-check.svelte"
|
|
4911
|
+
},
|
|
4912
|
+
"./IconCircleDashedMinus.svelte": {
|
|
4913
|
+
"types": "./dist/icons/circle-dashed-minus.svelte.d.ts",
|
|
4914
|
+
"svelte": "./dist/icons/circle-dashed-minus.svelte"
|
|
4915
|
+
},
|
|
4884
4916
|
"./IconCircleDashedNumber0.svelte": {
|
|
4885
4917
|
"types": "./dist/icons/circle-dashed-number-0.svelte.d.ts",
|
|
4886
4918
|
"svelte": "./dist/icons/circle-dashed-number-0.svelte"
|
|
@@ -4925,6 +4957,10 @@
|
|
|
4925
4957
|
"types": "./dist/icons/circle-dashed-percentage.svelte.d.ts",
|
|
4926
4958
|
"svelte": "./dist/icons/circle-dashed-percentage.svelte"
|
|
4927
4959
|
},
|
|
4960
|
+
"./IconCircleDashedPlus.svelte": {
|
|
4961
|
+
"types": "./dist/icons/circle-dashed-plus.svelte.d.ts",
|
|
4962
|
+
"svelte": "./dist/icons/circle-dashed-plus.svelte"
|
|
4963
|
+
},
|
|
4928
4964
|
"./IconCircleDashedX.svelte": {
|
|
4929
4965
|
"types": "./dist/icons/circle-dashed-x.svelte.d.ts",
|
|
4930
4966
|
"svelte": "./dist/icons/circle-dashed-x.svelte"
|
|
@@ -7705,6 +7741,10 @@
|
|
|
7705
7741
|
"types": "./dist/icons/dual-screen.svelte.d.ts",
|
|
7706
7742
|
"svelte": "./dist/icons/dual-screen.svelte"
|
|
7707
7743
|
},
|
|
7744
|
+
"./IconDumpling.svelte": {
|
|
7745
|
+
"types": "./dist/icons/dumpling.svelte.d.ts",
|
|
7746
|
+
"svelte": "./dist/icons/dumpling.svelte"
|
|
7747
|
+
},
|
|
7708
7748
|
"./IconEPassport.svelte": {
|
|
7709
7749
|
"types": "./dist/icons/e-passport.svelte.d.ts",
|
|
7710
7750
|
"svelte": "./dist/icons/e-passport.svelte"
|
|
@@ -12245,6 +12285,10 @@
|
|
|
12245
12285
|
"types": "./dist/icons/moneybag.svelte.d.ts",
|
|
12246
12286
|
"svelte": "./dist/icons/moneybag.svelte"
|
|
12247
12287
|
},
|
|
12288
|
+
"./IconMonkeybar.svelte": {
|
|
12289
|
+
"types": "./dist/icons/monkeybar.svelte.d.ts",
|
|
12290
|
+
"svelte": "./dist/icons/monkeybar.svelte"
|
|
12291
|
+
},
|
|
12248
12292
|
"./IconMoodAngry.svelte": {
|
|
12249
12293
|
"types": "./dist/icons/mood-angry.svelte.d.ts",
|
|
12250
12294
|
"svelte": "./dist/icons/mood-angry.svelte"
|
|
@@ -13305,6 +13349,10 @@
|
|
|
13305
13349
|
"types": "./dist/icons/pennant.svelte.d.ts",
|
|
13306
13350
|
"svelte": "./dist/icons/pennant.svelte"
|
|
13307
13351
|
},
|
|
13352
|
+
"./IconPentagonMinus.svelte": {
|
|
13353
|
+
"types": "./dist/icons/pentagon-minus.svelte.d.ts",
|
|
13354
|
+
"svelte": "./dist/icons/pentagon-minus.svelte"
|
|
13355
|
+
},
|
|
13308
13356
|
"./IconPentagonNumber0.svelte": {
|
|
13309
13357
|
"types": "./dist/icons/pentagon-number-0.svelte.d.ts",
|
|
13310
13358
|
"svelte": "./dist/icons/pentagon-number-0.svelte"
|
|
@@ -16817,6 +16865,10 @@
|
|
|
16817
16865
|
"types": "./dist/icons/text-spellcheck.svelte.d.ts",
|
|
16818
16866
|
"svelte": "./dist/icons/text-spellcheck.svelte"
|
|
16819
16867
|
},
|
|
16868
|
+
"./IconTextWrapColumn.svelte": {
|
|
16869
|
+
"types": "./dist/icons/text-wrap-column.svelte.d.ts",
|
|
16870
|
+
"svelte": "./dist/icons/text-wrap-column.svelte"
|
|
16871
|
+
},
|
|
16820
16872
|
"./IconTextWrapDisabled.svelte": {
|
|
16821
16873
|
"types": "./dist/icons/text-wrap-disabled.svelte.d.ts",
|
|
16822
16874
|
"svelte": "./dist/icons/text-wrap-disabled.svelte"
|
|
@@ -18841,6 +18893,10 @@
|
|
|
18841
18893
|
"types": "./dist/icons/brightness-filled.svelte.d.ts",
|
|
18842
18894
|
"svelte": "./dist/icons/brightness-filled.svelte"
|
|
18843
18895
|
},
|
|
18896
|
+
"./IconBubbleFilled.svelte": {
|
|
18897
|
+
"types": "./dist/icons/bubble-filled.svelte.d.ts",
|
|
18898
|
+
"svelte": "./dist/icons/bubble-filled.svelte"
|
|
18899
|
+
},
|
|
18844
18900
|
"./IconBugFilled.svelte": {
|
|
18845
18901
|
"types": "./dist/icons/bug-filled.svelte.d.ts",
|
|
18846
18902
|
"svelte": "./dist/icons/bug-filled.svelte"
|
|
@@ -20093,6 +20149,14 @@
|
|
|
20093
20149
|
"types": "./dist/icons/photo-filled.svelte.d.ts",
|
|
20094
20150
|
"svelte": "./dist/icons/photo-filled.svelte"
|
|
20095
20151
|
},
|
|
20152
|
+
"./IconPictureInPictureTopFilled.svelte": {
|
|
20153
|
+
"types": "./dist/icons/picture-in-picture-top-filled.svelte.d.ts",
|
|
20154
|
+
"svelte": "./dist/icons/picture-in-picture-top-filled.svelte"
|
|
20155
|
+
},
|
|
20156
|
+
"./IconPictureInPictureFilled.svelte": {
|
|
20157
|
+
"types": "./dist/icons/picture-in-picture-filled.svelte.d.ts",
|
|
20158
|
+
"svelte": "./dist/icons/picture-in-picture-filled.svelte"
|
|
20159
|
+
},
|
|
20096
20160
|
"./IconPinFilled.svelte": {
|
|
20097
20161
|
"types": "./dist/icons/pin-filled.svelte.d.ts",
|
|
20098
20162
|
"svelte": "./dist/icons/pin-filled.svelte"
|
|
@@ -20765,6 +20829,14 @@
|
|
|
20765
20829
|
"types": "./dist/icons/timeline-event-filled.svelte.d.ts",
|
|
20766
20830
|
"svelte": "./dist/icons/timeline-event-filled.svelte"
|
|
20767
20831
|
},
|
|
20832
|
+
"./IconToggleLeftFilled.svelte": {
|
|
20833
|
+
"types": "./dist/icons/toggle-left-filled.svelte.d.ts",
|
|
20834
|
+
"svelte": "./dist/icons/toggle-left-filled.svelte"
|
|
20835
|
+
},
|
|
20836
|
+
"./IconToggleRightFilled.svelte": {
|
|
20837
|
+
"types": "./dist/icons/toggle-right-filled.svelte.d.ts",
|
|
20838
|
+
"svelte": "./dist/icons/toggle-right-filled.svelte"
|
|
20839
|
+
},
|
|
20768
20840
|
"./IconTransformFilled.svelte": {
|
|
20769
20841
|
"types": "./dist/icons/transform-filled.svelte.d.ts",
|
|
20770
20842
|
"svelte": "./dist/icons/transform-filled.svelte"
|
|
@@ -20920,7 +20992,7 @@
|
|
|
20920
20992
|
"imports-check": "attw $(npm pack)"
|
|
20921
20993
|
},
|
|
20922
20994
|
"dependencies": {
|
|
20923
|
-
"@tabler/icons": "3.
|
|
20995
|
+
"@tabler/icons": "3.2.0"
|
|
20924
20996
|
},
|
|
20925
20997
|
"devDependencies": {
|
|
20926
20998
|
"@sveltejs/package": "^2.2.7",
|