@tabler/icons-svelte 3.45.0 → 3.47.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/README.md +33 -39
- package/dist/Icon.svelte +1 -1
- package/dist/icons/airpods-l.svelte +6 -0
- package/dist/icons/airpods-l.svelte.d.ts +17 -0
- package/dist/icons/airpods-r.svelte +6 -0
- package/dist/icons/airpods-r.svelte.d.ts +17 -0
- package/dist/icons/cash-coin.svelte +6 -0
- package/dist/icons/cash-coin.svelte.d.ts +17 -0
- package/dist/icons/edit-bulk.svelte +6 -0
- package/dist/icons/edit-bulk.svelte.d.ts +17 -0
- package/dist/icons/folder-stats.svelte +6 -0
- package/dist/icons/folder-stats.svelte.d.ts +17 -0
- package/dist/icons/folder-user.svelte +6 -0
- package/dist/icons/folder-user.svelte.d.ts +17 -0
- package/dist/icons/gpu-2.svelte +6 -0
- package/dist/icons/gpu-2.svelte.d.ts +17 -0
- package/dist/icons/gpu.svelte +6 -0
- package/dist/icons/gpu.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +36 -0
- package/dist/icons/index.js +36 -0
- package/dist/icons/map-pinned.svelte +6 -0
- package/dist/icons/map-pinned.svelte.d.ts +17 -0
- package/dist/icons/orbit-vertical.svelte +6 -0
- package/dist/icons/orbit-vertical.svelte.d.ts +17 -0
- package/dist/icons/orbit.svelte +6 -0
- package/dist/icons/orbit.svelte.d.ts +17 -0
- package/dist/icons/orbits.svelte +6 -0
- package/dist/icons/orbits.svelte.d.ts +17 -0
- package/dist/icons/play-bug.svelte +6 -0
- package/dist/icons/play-bug.svelte.d.ts +17 -0
- package/dist/icons/play-bugs.svelte +6 -0
- package/dist/icons/play-bugs.svelte.d.ts +17 -0
- package/dist/icons/reduce-motion.svelte +6 -0
- package/dist/icons/reduce-motion.svelte.d.ts +17 -0
- package/dist/icons/reference-image.svelte +6 -0
- package/dist/icons/reference-image.svelte.d.ts +17 -0
- package/dist/icons/remote-control.svelte +6 -0
- package/dist/icons/remote-control.svelte.d.ts +17 -0
- package/dist/icons/rocking-chair.svelte +6 -0
- package/dist/icons/rocking-chair.svelte.d.ts +17 -0
- package/dist/icons/run-sprint.svelte +6 -0
- package/dist/icons/run-sprint.svelte.d.ts +17 -0
- package/dist/icons/secret-phrases.svelte +6 -0
- package/dist/icons/secret-phrases.svelte.d.ts +17 -0
- package/dist/icons/server-bolt.svelte +1 -1
- package/dist/icons/server.svelte +1 -1
- package/dist/icons/sparkles-2-off.svelte +6 -0
- package/dist/icons/sparkles-2-off.svelte.d.ts +17 -0
- package/dist/icons/sparkles-2.svelte +1 -1
- package/dist/icons/sticker-smile.svelte +6 -0
- package/dist/icons/sticker-smile.svelte.d.ts +17 -0
- package/dist/icons/tabs.svelte +6 -0
- package/dist/icons/tabs.svelte.d.ts +17 -0
- package/dist/icons/tags-chevron-down.svelte +6 -0
- package/dist/icons/tags-chevron-down.svelte.d.ts +17 -0
- package/dist/icons/tags-chevron-left.svelte +6 -0
- package/dist/icons/tags-chevron-left.svelte.d.ts +17 -0
- package/dist/icons/tags-chevron-right.svelte +6 -0
- package/dist/icons/tags-chevron-right.svelte.d.ts +17 -0
- package/dist/icons/tags-chevron-up.svelte +6 -0
- package/dist/icons/tags-chevron-up.svelte.d.ts +17 -0
- package/dist/icons/thinking-high.svelte +6 -0
- package/dist/icons/thinking-high.svelte.d.ts +17 -0
- package/dist/icons/thinking-low.svelte +6 -0
- package/dist/icons/thinking-low.svelte.d.ts +17 -0
- package/dist/icons/thinking-medium.svelte +6 -0
- package/dist/icons/thinking-medium.svelte.d.ts +17 -0
- package/dist/icons/treasure-chest.svelte +6 -0
- package/dist/icons/treasure-chest.svelte.d.ts +17 -0
- package/dist/icons/twig.svelte +6 -0
- package/dist/icons/twig.svelte.d.ts +17 -0
- package/dist/icons/vault.svelte +6 -0
- package/dist/icons/vault.svelte.d.ts +17 -0
- package/dist/icons/voice-2.svelte +6 -0
- package/dist/icons/voice-2.svelte.d.ts +17 -0
- package/dist/icons/voice.svelte +6 -0
- package/dist/icons/voice.svelte.d.ts +17 -0
- package/dist/icons/yarn.svelte +6 -0
- package/dist/icons/yarn.svelte.d.ts +17 -0
- package/dist/icons-list.js +36 -0
- package/package.json +5 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 3v13.446c0 .345 .155 .665 .411 .848l6.125 4.375a.78 .78 0 0 0 .928 0l6.125 -4.375a1.04 1.04 0 0 0 .411 -.848v-13.446l-7 5l-7 -5" }], ["path", { "d": "M5 10l6.536 4.669a.78 .78 0 0 0 .928 0l6.536 -4.669" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="tags-chevron-down" {...$$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 TagsChevronDownProps = typeof __propDef.props;
|
|
13
|
+
export type TagsChevronDownEvents = typeof __propDef.events;
|
|
14
|
+
export type TagsChevronDownSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TagsChevronDown extends SvelteComponentTyped<TagsChevronDownProps, TagsChevronDownEvents, TagsChevronDownSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M20.59 19h-12.86a.98 .98 0 0 1 -.81 -.411l-4.185 -6.125a.81 .81 0 0 1 0 -.928l4.184 -6.125a.98 .98 0 0 1 .811 -.411h12.86l-4.782 7l4.782 7" }], ["path", { "d": "M13.895 19l-4.465 -6.536a.81 .81 0 0 1 0 -.928l4.465 -6.536" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="tags-chevron-left" {...$$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 TagsChevronLeftProps = typeof __propDef.props;
|
|
13
|
+
export type TagsChevronLeftEvents = typeof __propDef.events;
|
|
14
|
+
export type TagsChevronLeftSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TagsChevronLeft extends SvelteComponentTyped<TagsChevronLeftProps, TagsChevronLeftEvents, TagsChevronLeftSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 19h13.485a1 1 0 0 0 .814 -.419l4.286 -6a1 1 0 0 0 0 -1.162l-4.286 -6a1 1 0 0 0 -.814 -.419h-13.485l5 7l-5 7" }], ["path", { "d": "M10 19l4.585 -6.419a1 1 0 0 0 0 -1.162l-4.585 -6.419" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="tags-chevron-right" {...$$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 TagsChevronRightProps = typeof __propDef.props;
|
|
13
|
+
export type TagsChevronRightEvents = typeof __propDef.events;
|
|
14
|
+
export type TagsChevronRightSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TagsChevronRight extends SvelteComponentTyped<TagsChevronRightProps, TagsChevronRightEvents, TagsChevronRightSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 21v-13.446c0 -.345 .155 -.665 .411 -.848l6.125 -4.375a.78 .78 0 0 1 .928 0l6.125 4.375c.256 .183 .411 .503 .411 .848v13.446l-7 -5l-7 5" }], ["path", { "d": "M5 14l6.536 -4.669a.78 .78 0 0 1 .928 0l6.536 4.669" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="tags-chevron-up" {...$$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 TagsChevronUpProps = typeof __propDef.props;
|
|
13
|
+
export type TagsChevronUpEvents = typeof __propDef.events;
|
|
14
|
+
export type TagsChevronUpSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TagsChevronUp extends SvelteComponentTyped<TagsChevronUpProps, TagsChevronUpEvents, TagsChevronUpSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17 21v-1.25c0 -2.311 .778 -1.92 2.244 -3.749a8 8 0 1 0 -14.244 -5.001q 0 .25 -1.876 3.518a1 1 0 0 0 .876 1.482h2v3a2 2 0 0 0 2 2h3" }], ["path", { "d": "M9 11a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="thinking-high" {...$$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 ThinkingHighProps = typeof __propDef.props;
|
|
13
|
+
export type ThinkingHighEvents = typeof __propDef.events;
|
|
14
|
+
export type ThinkingHighSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ThinkingHigh extends SvelteComponentTyped<ThinkingHighProps, ThinkingHighEvents, ThinkingHighSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17 21v-1.25c0 -2.311 .778 -1.92 2.244 -3.749a8 8 0 1 0 -14.244 -5.001q 0 .25 -1.876 3.518a1 1 0 0 0 .876 1.482h2v3a2 2 0 0 0 2 2h3" }], ["path", { "d": "M12 11a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="thinking-low" {...$$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 ThinkingLowProps = typeof __propDef.props;
|
|
13
|
+
export type ThinkingLowEvents = typeof __propDef.events;
|
|
14
|
+
export type ThinkingLowSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ThinkingLow extends SvelteComponentTyped<ThinkingLowProps, ThinkingLowEvents, ThinkingLowSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17 21v-1.25c0 -2.311 .778 -1.92 2.244 -3.749a8 8 0 1 0 -14.244 -5.001q 0 .25 -1.876 3.518a1 1 0 0 0 .876 1.482h2v3a2 2 0 0 0 2 2h3" }], ["path", { "d": "M11 11a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="thinking-medium" {...$$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 ThinkingMediumProps = typeof __propDef.props;
|
|
13
|
+
export type ThinkingMediumEvents = typeof __propDef.events;
|
|
14
|
+
export type ThinkingMediumSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ThinkingMedium extends SvelteComponentTyped<ThinkingMediumProps, ThinkingMediumEvents, ThinkingMediumSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 19h16a1 1 0 0 0 1 -1v-9a4 4 0 0 0 -4 -4h-10a4 4 0 0 0 -4 4v9a1 1 0 0 0 1 1" }], ["path", { "d": "M3 11h18" }], ["path", { "d": "M16 5v14" }], ["path", { "d": "M8 5v14" }], ["path", { "d": "M12 11v2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="treasure-chest" {...$$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 TreasureChestProps = typeof __propDef.props;
|
|
13
|
+
export type TreasureChestEvents = typeof __propDef.events;
|
|
14
|
+
export type TreasureChestSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TreasureChest extends SvelteComponentTyped<TreasureChestProps, TreasureChestEvents, TreasureChestSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 21l5 -4l3 -5l5 -2l5 -7" }], ["path", { "d": "M16 10h5" }], ["path", { "d": "M11 12v-8" }], ["path", { "d": "M8 17h7" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="twig" {...$$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 TwigProps = typeof __propDef.props;
|
|
13
|
+
export type TwigEvents = typeof __propDef.events;
|
|
14
|
+
export type TwigSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Twig extends SvelteComponentTyped<TwigProps, TwigEvents, TwigSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12" }], ["path", { "d": "M9 12a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" }], ["path", { "d": "M9.75 9.75l-1.75 -1.75" }], ["path", { "d": "M14.25 9.75l1.75 -1.75" }], ["path", { "d": "M14.25 14.25l1.75 1.75" }], ["path", { "d": "M9.75 14.25l-1.75 1.75" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="vault" {...$$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 VaultProps = typeof __propDef.props;
|
|
13
|
+
export type VaultEvents = typeof __propDef.events;
|
|
14
|
+
export type VaultSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Vault extends SvelteComponentTyped<VaultProps, VaultEvents, VaultSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" }], ["path", { "d": "M3.429 14.571c9 -15.857 10.134 8.908 17.143 0" }], ["path", { "d": "M4.03 16.286c5.469 -3.939 8.68 3.635 13.541 2.79" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="voice-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 Voice2Props = typeof __propDef.props;
|
|
13
|
+
export type Voice2Events = typeof __propDef.events;
|
|
14
|
+
export type Voice2Slots = typeof __propDef.slots;
|
|
15
|
+
export default class Voice2 extends SvelteComponentTyped<Voice2Props, Voice2Events, Voice2Slots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" }], ["path", { "d": "M3 12c4 0 9.647 8.23 14.4 7.092" }], ["path", { "d": "M4.8 17.4c5.85 0 9.617 -7.2 15.3 -7.2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="voice" {...$$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 VoiceProps = typeof __propDef.props;
|
|
13
|
+
export type VoiceEvents = typeof __propDef.events;
|
|
14
|
+
export type VoiceSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Voice extends SvelteComponentTyped<VoiceProps, VoiceEvents, VoiceSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M7.5 19.794a9 9 0 1 0 9 -15.588a9 9 0 0 0 -9 15.588" }], ["path", { "d": "M20.997 12a9 9 0 0 0 -8.997 9" }], ["path", { "d": "M9.662 12.778a9 9 0 0 0 -6.643 -.27" }], ["path", { "d": "M19.527 7.078a14 14 0 0 0 -12.45 12.458" }], ["path", { "d": "M13.503 9.18a14 14 0 0 0 -9.033 -2.097" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="yarn" {...$$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 YarnProps = typeof __propDef.props;
|
|
13
|
+
export type YarnEvents = typeof __propDef.events;
|
|
14
|
+
export type YarnSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Yarn extends SvelteComponentTyped<YarnProps, YarnEvents, YarnSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -54,6 +54,8 @@ export default [
|
|
|
54
54
|
"air-conditioning-disabled",
|
|
55
55
|
"air-conditioning",
|
|
56
56
|
"air-traffic-control",
|
|
57
|
+
"airpods-l",
|
|
58
|
+
"airpods-r",
|
|
57
59
|
"alarm-average",
|
|
58
60
|
"alarm-minus",
|
|
59
61
|
"alarm-off",
|
|
@@ -1208,6 +1210,7 @@ export default [
|
|
|
1208
1210
|
"cash-banknote-off",
|
|
1209
1211
|
"cash-banknote-plus",
|
|
1210
1212
|
"cash-banknote",
|
|
1213
|
+
"cash-coin",
|
|
1211
1214
|
"cash-edit",
|
|
1212
1215
|
"cash-heart",
|
|
1213
1216
|
"cash-minus",
|
|
@@ -2154,6 +2157,7 @@ export default [
|
|
|
2154
2157
|
"ease-in",
|
|
2155
2158
|
"ease-out-control-point",
|
|
2156
2159
|
"ease-out",
|
|
2160
|
+
"edit-bulk",
|
|
2157
2161
|
"edit-circle-off",
|
|
2158
2162
|
"edit-circle",
|
|
2159
2163
|
"edit-off",
|
|
@@ -2474,8 +2478,10 @@ export default [
|
|
|
2474
2478
|
"folder-search",
|
|
2475
2479
|
"folder-share",
|
|
2476
2480
|
"folder-star",
|
|
2481
|
+
"folder-stats",
|
|
2477
2482
|
"folder-symlink",
|
|
2478
2483
|
"folder-up",
|
|
2484
|
+
"folder-user",
|
|
2479
2485
|
"folder-x",
|
|
2480
2486
|
"folder",
|
|
2481
2487
|
"folders-off",
|
|
@@ -2561,6 +2567,8 @@ export default [
|
|
|
2561
2567
|
"golf-off",
|
|
2562
2568
|
"golf",
|
|
2563
2569
|
"gps",
|
|
2570
|
+
"gpu-2",
|
|
2571
|
+
"gpu",
|
|
2564
2572
|
"gradienter",
|
|
2565
2573
|
"grain",
|
|
2566
2574
|
"grape",
|
|
@@ -3195,6 +3203,7 @@ export default [
|
|
|
3195
3203
|
"map-pin-up",
|
|
3196
3204
|
"map-pin-x",
|
|
3197
3205
|
"map-pin",
|
|
3206
|
+
"map-pinned",
|
|
3198
3207
|
"map-pins",
|
|
3199
3208
|
"map-plus",
|
|
3200
3209
|
"map-question",
|
|
@@ -3673,6 +3682,9 @@ export default [
|
|
|
3673
3682
|
"om",
|
|
3674
3683
|
"omega",
|
|
3675
3684
|
"option",
|
|
3685
|
+
"orbit-vertical",
|
|
3686
|
+
"orbit",
|
|
3687
|
+
"orbits",
|
|
3676
3688
|
"outbound",
|
|
3677
3689
|
"outlet",
|
|
3678
3690
|
"oval-vertical",
|
|
@@ -3869,6 +3881,8 @@ export default [
|
|
|
3869
3881
|
"plant-off",
|
|
3870
3882
|
"plant",
|
|
3871
3883
|
"play-basketball",
|
|
3884
|
+
"play-bug",
|
|
3885
|
+
"play-bugs",
|
|
3872
3886
|
"play-card-1",
|
|
3873
3887
|
"play-card-10",
|
|
3874
3888
|
"play-card-2",
|
|
@@ -4039,6 +4053,8 @@ export default [
|
|
|
4039
4053
|
"rectangular-prism",
|
|
4040
4054
|
"recycle-off",
|
|
4041
4055
|
"recycle",
|
|
4056
|
+
"reduce-motion",
|
|
4057
|
+
"reference-image",
|
|
4042
4058
|
"refresh-alert",
|
|
4043
4059
|
"refresh-dot",
|
|
4044
4060
|
"refresh-off",
|
|
@@ -4050,6 +4066,7 @@ export default [
|
|
|
4050
4066
|
"relation-one-to-many",
|
|
4051
4067
|
"relation-one-to-one",
|
|
4052
4068
|
"reload",
|
|
4069
|
+
"remote-control",
|
|
4053
4070
|
"reorder",
|
|
4054
4071
|
"repeat-off",
|
|
4055
4072
|
"repeat-once",
|
|
@@ -4096,6 +4113,7 @@ export default [
|
|
|
4096
4113
|
"robot",
|
|
4097
4114
|
"rocket-off",
|
|
4098
4115
|
"rocket",
|
|
4116
|
+
"rocking-chair",
|
|
4099
4117
|
"roller-skating",
|
|
4100
4118
|
"rollercoaster-off",
|
|
4101
4119
|
"rollercoaster",
|
|
@@ -4150,6 +4168,7 @@ export default [
|
|
|
4150
4168
|
"ruler-measure",
|
|
4151
4169
|
"ruler-off",
|
|
4152
4170
|
"ruler",
|
|
4171
|
+
"run-sprint",
|
|
4153
4172
|
"run",
|
|
4154
4173
|
"rv-truck",
|
|
4155
4174
|
"s-turn-down",
|
|
@@ -4202,6 +4221,7 @@ export default [
|
|
|
4202
4221
|
"sdk",
|
|
4203
4222
|
"search-off",
|
|
4204
4223
|
"search",
|
|
4224
|
+
"secret-phrases",
|
|
4205
4225
|
"section-sign",
|
|
4206
4226
|
"section",
|
|
4207
4227
|
"seedling-off",
|
|
@@ -4405,6 +4425,7 @@ export default [
|
|
|
4405
4425
|
"sparkle-2",
|
|
4406
4426
|
"sparkle-highlight",
|
|
4407
4427
|
"sparkle",
|
|
4428
|
+
"sparkles-2-off",
|
|
4408
4429
|
"sparkles-2",
|
|
4409
4430
|
"sparkles",
|
|
4410
4431
|
"speakerphone",
|
|
@@ -4591,6 +4612,7 @@ export default [
|
|
|
4591
4612
|
"stethoscope-off",
|
|
4592
4613
|
"stethoscope",
|
|
4593
4614
|
"sticker-2",
|
|
4615
|
+
"sticker-smile",
|
|
4594
4616
|
"sticker",
|
|
4595
4617
|
"stopwatch",
|
|
4596
4618
|
"storm-off",
|
|
@@ -4654,11 +4676,16 @@ export default [
|
|
|
4654
4676
|
"table-shortcut",
|
|
4655
4677
|
"table-spark",
|
|
4656
4678
|
"table",
|
|
4679
|
+
"tabs",
|
|
4657
4680
|
"tag-minus",
|
|
4658
4681
|
"tag-off",
|
|
4659
4682
|
"tag-plus",
|
|
4660
4683
|
"tag-starred",
|
|
4661
4684
|
"tag",
|
|
4685
|
+
"tags-chevron-down",
|
|
4686
|
+
"tags-chevron-left",
|
|
4687
|
+
"tags-chevron-right",
|
|
4688
|
+
"tags-chevron-up",
|
|
4662
4689
|
"tags-off",
|
|
4663
4690
|
"tags",
|
|
4664
4691
|
"taiwan-dollar",
|
|
@@ -4723,6 +4750,9 @@ export default [
|
|
|
4723
4750
|
"texture",
|
|
4724
4751
|
"theater",
|
|
4725
4752
|
"thermometer",
|
|
4753
|
+
"thinking-high",
|
|
4754
|
+
"thinking-low",
|
|
4755
|
+
"thinking-medium",
|
|
4726
4756
|
"thumb-down-off",
|
|
4727
4757
|
"thumb-down",
|
|
4728
4758
|
"thumb-up-off",
|
|
@@ -4820,6 +4850,7 @@ export default [
|
|
|
4820
4850
|
"trash-x",
|
|
4821
4851
|
"trash",
|
|
4822
4852
|
"treadmill",
|
|
4853
|
+
"treasure-chest",
|
|
4823
4854
|
"tree",
|
|
4824
4855
|
"trees",
|
|
4825
4856
|
"trekking",
|
|
@@ -4849,6 +4880,7 @@ export default [
|
|
|
4849
4880
|
"truck-off",
|
|
4850
4881
|
"truck-return",
|
|
4851
4882
|
"truck",
|
|
4883
|
+
"twig",
|
|
4852
4884
|
"txt",
|
|
4853
4885
|
"typeface",
|
|
4854
4886
|
"typography-off",
|
|
@@ -4918,6 +4950,7 @@ export default [
|
|
|
4918
4950
|
"variable-off",
|
|
4919
4951
|
"variable-plus",
|
|
4920
4952
|
"variable",
|
|
4953
|
+
"vault",
|
|
4921
4954
|
"vector-bezier-2",
|
|
4922
4955
|
"vector-bezier-arc",
|
|
4923
4956
|
"vector-bezier-circle",
|
|
@@ -4955,6 +4988,8 @@ export default [
|
|
|
4955
4988
|
"virus",
|
|
4956
4989
|
"vocabulary-off",
|
|
4957
4990
|
"vocabulary",
|
|
4991
|
+
"voice-2",
|
|
4992
|
+
"voice",
|
|
4958
4993
|
"volcano",
|
|
4959
4994
|
"volume-2",
|
|
4960
4995
|
"volume-3",
|
|
@@ -5076,6 +5111,7 @@ export default [
|
|
|
5076
5111
|
"xbox-y",
|
|
5077
5112
|
"xd",
|
|
5078
5113
|
"xxx",
|
|
5114
|
+
"yarn",
|
|
5079
5115
|
"yin-yang",
|
|
5080
5116
|
"yoga",
|
|
5081
5117
|
"zeppelin-off",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.47.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.",
|
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
"url": "git+https://github.com/tabler/tabler-icons.git",
|
|
18
18
|
"directory": "packages/icons-svelte"
|
|
19
19
|
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
20
23
|
"svelte": "./dist/tabler-icons-svelte.js",
|
|
21
24
|
"types": "./dist/tabler-icons-svelte.d.ts",
|
|
22
25
|
"type": "module",
|
|
@@ -41,7 +44,7 @@
|
|
|
41
44
|
"dist"
|
|
42
45
|
],
|
|
43
46
|
"dependencies": {
|
|
44
|
-
"@tabler/icons": "3.
|
|
47
|
+
"@tabler/icons": "3.47.0"
|
|
45
48
|
},
|
|
46
49
|
"devDependencies": {
|
|
47
50
|
"@sveltejs/package": "^2.2.7",
|