@tabler/icons-svelte 3.11.0 → 3.13.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/aliases.d.ts +1 -0
- package/dist/aliases.js +1 -0
- package/dist/icons/adjustments-spark.svelte +6 -0
- package/dist/icons/adjustments-spark.svelte.d.ts +17 -0
- package/dist/icons/arrows-transfer-up-down.svelte +6 -0
- package/dist/icons/arrows-transfer-up-down.svelte.d.ts +17 -0
- package/dist/icons/battery-spark.svelte +6 -0
- package/dist/icons/battery-spark.svelte.d.ts +17 -0
- package/dist/icons/brand-amie.svelte +6 -0
- package/dist/icons/brand-amie.svelte.d.ts +17 -0
- package/dist/icons/brand-bebo.svelte +6 -0
- package/dist/icons/brand-bebo.svelte.d.ts +17 -0
- package/dist/icons/building-airport.svelte +6 -0
- package/dist/icons/building-airport.svelte.d.ts +17 -0
- package/dist/icons/camera-ai.svelte +6 -0
- package/dist/icons/camera-ai.svelte.d.ts +17 -0
- package/dist/icons/camera-bitcoin.svelte +6 -0
- package/dist/icons/camera-bitcoin.svelte.d.ts +17 -0
- package/dist/icons/camera-moon.svelte +6 -0
- package/dist/icons/camera-moon.svelte.d.ts +17 -0
- package/dist/icons/camera-spark.svelte +6 -0
- package/dist/icons/camera-spark.svelte.d.ts +17 -0
- package/dist/icons/chart-column.svelte +6 -0
- package/dist/icons/chart-column.svelte.d.ts +17 -0
- package/dist/icons/chart-covariate.svelte +6 -0
- package/dist/icons/chart-covariate.svelte.d.ts +17 -0
- package/dist/icons/congruent-to.svelte +6 -0
- package/dist/icons/congruent-to.svelte.d.ts +17 -0
- package/dist/icons/cube-spark.svelte +6 -0
- package/dist/icons/cube-spark.svelte.d.ts +17 -0
- package/dist/icons/diaper.svelte +6 -0
- package/dist/icons/diaper.svelte.d.ts +17 -0
- package/dist/icons/eye-spark.svelte +6 -0
- package/dist/icons/eye-spark.svelte.d.ts +17 -0
- package/dist/icons/file-ai.svelte +6 -0
- package/dist/icons/file-ai.svelte.d.ts +17 -0
- package/dist/icons/file-bitcoin.svelte +6 -0
- package/dist/icons/file-bitcoin.svelte.d.ts +17 -0
- package/dist/icons/file-spark.svelte +6 -0
- package/dist/icons/file-spark.svelte.d.ts +17 -0
- package/dist/icons/file-text-spark.svelte +6 -0
- package/dist/icons/file-text-spark.svelte.d.ts +17 -0
- package/dist/icons/flag-spark.svelte +6 -0
- package/dist/icons/flag-spark.svelte.d.ts +17 -0
- package/dist/icons/heart-spark.svelte +6 -0
- package/dist/icons/heart-spark.svelte.d.ts +17 -0
- package/dist/icons/home-spark.svelte +6 -0
- package/dist/icons/home-spark.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +36 -1
- package/dist/icons/index.js +36 -1
- package/dist/icons/input-spark.svelte +6 -0
- package/dist/icons/input-spark.svelte.d.ts +17 -0
- package/dist/icons/lock-password.svelte +6 -0
- package/dist/icons/lock-password.svelte.d.ts +17 -0
- package/dist/icons/mail-spark.svelte +6 -0
- package/dist/icons/mail-spark.svelte.d.ts +17 -0
- package/dist/icons/mood-spark.svelte +6 -0
- package/dist/icons/mood-spark.svelte.d.ts +17 -0
- package/dist/icons/phone-done.svelte +6 -0
- package/dist/icons/phone-done.svelte.d.ts +17 -0
- package/dist/icons/phone-end.svelte +6 -0
- package/dist/icons/phone-end.svelte.d.ts +17 -0
- package/dist/icons/phone-outgoing.svelte +1 -1
- package/dist/icons/phone-pause.svelte +1 -1
- package/dist/icons/phone-ringing.svelte +6 -0
- package/dist/icons/phone-ringing.svelte.d.ts +17 -0
- package/dist/icons/phone-spark.svelte +6 -0
- package/dist/icons/phone-spark.svelte.d.ts +17 -0
- package/dist/icons/photo-spark.svelte +6 -0
- package/dist/icons/photo-spark.svelte.d.ts +17 -0
- package/dist/icons/server-spark.svelte +6 -0
- package/dist/icons/server-spark.svelte.d.ts +17 -0
- package/dist/icons/settings-spark.svelte +6 -0
- package/dist/icons/settings-spark.svelte.d.ts +17 -0
- package/dist/icons/stopwatch.svelte +6 -0
- package/dist/icons/stopwatch.svelte.d.ts +17 -0
- package/dist/icons/table-spark.svelte +6 -0
- package/dist/icons/table-spark.svelte.d.ts +17 -0
- package/dist/icons-list.js +36 -1
- package/package.json +3 -3
- package/dist/icons/circle-dashed-letter-letter-v.svelte +0 -6
- package/dist/icons/circle-dashed-letter-letter-v.svelte.d.ts +0 -17
|
@@ -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 MoodSparkProps = typeof __propDef.props;
|
|
13
|
+
export type MoodSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type MoodSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class MoodSpark extends SvelteComponentTyped<MoodSparkProps, MoodSparkEvents, MoodSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2c-8.072 -.49 -14.51 -6.928 -15 -15a2 2 0 0 1 2 -2" }], ["path", { "d": "M15 5l2 2l4 -4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="phone-done" {...$$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 PhoneDoneProps = typeof __propDef.props;
|
|
13
|
+
export type PhoneDoneEvents = typeof __propDef.events;
|
|
14
|
+
export type PhoneDoneSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhoneDone extends SvelteComponentTyped<PhoneDoneProps, PhoneDoneEvents, PhoneDoneSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2c-8.072 -.49 -14.51 -6.928 -15 -15a2 2 0 0 1 2 -2" }], ["path", { "d": "M17 3l4 4" }], ["path", { "d": "M21 3l-4 4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="phone-end" {...$$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 PhoneEndProps = typeof __propDef.props;
|
|
13
|
+
export type PhoneEndEvents = typeof __propDef.events;
|
|
14
|
+
export type PhoneEndSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhoneEnd extends SvelteComponentTyped<PhoneEndProps, PhoneEndEvents, PhoneEndSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2
|
|
2
|
+
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2c-8.072 -.49 -14.51 -6.928 -15 -15a2 2 0 0 1 2 -2" }], ["path", { "d": "M15 5h6" }], ["path", { "d": "M18.5 7.5l2.5 -2.5l-2.5 -2.5" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="phone-outgoing" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2
|
|
2
|
+
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2c-8.072 -.49 -14.51 -6.928 -15 -15a2 2 0 0 1 2 -2" }], ["path", { "d": "M17 3v5" }], ["path", { "d": "M21 3v5" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="phone-pause" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M20 4l-2 2" }], ["path", { "d": "M22 10.5l-2.5 -.5" }], ["path", { "d": "M13.5 2l.5 2.5" }], ["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2c-8.072 -.49 -14.51 -6.928 -15 -15a2 2 0 0 1 2 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="phone-ringing" {...$$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 PhoneRingingProps = typeof __propDef.props;
|
|
13
|
+
export type PhoneRingingEvents = typeof __propDef.events;
|
|
14
|
+
export type PhoneRingingSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhoneRinging extends SvelteComponentTyped<PhoneRingingProps, PhoneRingingEvents, PhoneRingingSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M11.584 19.225a16 16 0 0 1 -8.584 -13.225a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l.65 .26" }], ["path", { "d": "M19 22.5a4.75 4.75 0 0 1 3.5 -3.5a4.75 4.75 0 0 1 -3.5 -3.5a4.75 4.75 0 0 1 -3.5 3.5a4.75 4.75 0 0 1 3.5 3.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="phone-spark" {...$$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 PhoneSparkProps = typeof __propDef.props;
|
|
13
|
+
export type PhoneSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type PhoneSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhoneSpark extends SvelteComponentTyped<PhoneSparkProps, PhoneSparkEvents, PhoneSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M15 8h.01" }], ["path", { "d": "M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6" }], ["path", { "d": "M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.993 3.993" }], ["path", { "d": "M14 14l1 -1c.47 -.452 .995 -.675 1.52 -.67" }], ["path", { "d": "M19 22.5a4.75 4.75 0 0 1 3.5 -3.5a4.75 4.75 0 0 1 -3.5 -3.5a4.75 4.75 0 0 1 -3.5 3.5a4.75 4.75 0 0 1 3.5 3.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="photo-spark" {...$$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 PhotoSparkProps = typeof __propDef.props;
|
|
13
|
+
export type PhotoSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type PhotoSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhotoSpark extends SvelteComponentTyped<PhotoSparkProps, PhotoSparkEvents, PhotoSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M19 22.5a4.75 4.75 0 0 1 3.5 -3.5a4.75 4.75 0 0 1 -3.5 -3.5a4.75 4.75 0 0 1 -3.5 3.5a4.75 4.75 0 0 1 3.5 3.5" }], ["path", { "d": "M3 7a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z" }], ["path", { "d": "M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5" }], ["path", { "d": "M7 8v.01" }], ["path", { "d": "M7 16v.01" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="server-spark" {...$$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 ServerSparkProps = typeof __propDef.props;
|
|
13
|
+
export type ServerSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type ServerSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ServerSpark extends SvelteComponentTyped<ServerSparkProps, ServerSparkEvents, ServerSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M11.992 21c-.728 -.003 -1.455 -.442 -1.667 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.882 .214 1.32 .95 1.317 1.684" }], ["path", { "d": "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" }], ["path", { "d": "M19 22.5a4.75 4.75 0 0 1 3.5 -3.5a4.75 4.75 0 0 1 -3.5 -3.5a4.75 4.75 0 0 1 -3.5 3.5a4.75 4.75 0 0 1 3.5 3.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="settings-spark" {...$$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 SettingsSparkProps = typeof __propDef.props;
|
|
13
|
+
export type SettingsSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type SettingsSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class SettingsSpark extends SvelteComponentTyped<SettingsSparkProps, SettingsSparkEvents, SettingsSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 13a7 7 0 1 0 14 0a7 7 0 0 0 -14 0z" }], ["path", { "d": "M14.5 10.5l-2.5 2.5" }], ["path", { "d": "M17 8l1 -1" }], ["path", { "d": "M14 3h-4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="stopwatch" {...$$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 StopwatchProps = typeof __propDef.props;
|
|
13
|
+
export type StopwatchEvents = typeof __propDef.events;
|
|
14
|
+
export type StopwatchSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Stopwatch extends SvelteComponentTyped<StopwatchProps, StopwatchEvents, StopwatchSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M19 22.5a4.75 4.75 0 0 1 3.5 -3.5a4.75 4.75 0 0 1 -3.5 -3.5a4.75 4.75 0 0 1 -3.5 3.5a4.75 4.75 0 0 1 3.5 3.5" }], ["path", { "d": "M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7" }], ["path", { "d": "M3 10h18" }], ["path", { "d": "M10 3v18" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="table-spark" {...$$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 TableSparkProps = typeof __propDef.props;
|
|
13
|
+
export type TableSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type TableSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TableSpark extends SvelteComponentTyped<TableSparkProps, TableSparkEvents, TableSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -37,6 +37,7 @@ export default [
|
|
|
37
37
|
"adjustments-question",
|
|
38
38
|
"adjustments-search",
|
|
39
39
|
"adjustments-share",
|
|
40
|
+
"adjustments-spark",
|
|
40
41
|
"adjustments-star",
|
|
41
42
|
"adjustments-up",
|
|
42
43
|
"adjustments-x",
|
|
@@ -303,6 +304,7 @@ export default [
|
|
|
303
304
|
"arrows-split-2",
|
|
304
305
|
"arrows-split",
|
|
305
306
|
"arrows-transfer-down",
|
|
307
|
+
"arrows-transfer-up-down",
|
|
306
308
|
"arrows-transfer-up",
|
|
307
309
|
"arrows-up-down",
|
|
308
310
|
"arrows-up-left",
|
|
@@ -426,6 +428,7 @@ export default [
|
|
|
426
428
|
"battery-eco",
|
|
427
429
|
"battery-exclamation",
|
|
428
430
|
"battery-off",
|
|
431
|
+
"battery-spark",
|
|
429
432
|
"battery-vertical-1",
|
|
430
433
|
"battery-vertical-2",
|
|
431
434
|
"battery-vertical-3",
|
|
@@ -609,6 +612,7 @@ export default [
|
|
|
609
612
|
"brand-alpine-js",
|
|
610
613
|
"brand-amazon",
|
|
611
614
|
"brand-amd",
|
|
615
|
+
"brand-amie",
|
|
612
616
|
"brand-amigo",
|
|
613
617
|
"brand-among-us",
|
|
614
618
|
"brand-android",
|
|
@@ -633,6 +637,7 @@ export default [
|
|
|
633
637
|
"brand-bandcamp",
|
|
634
638
|
"brand-bandlab",
|
|
635
639
|
"brand-beats",
|
|
640
|
+
"brand-bebo",
|
|
636
641
|
"brand-behance",
|
|
637
642
|
"brand-bilibili",
|
|
638
643
|
"brand-binance",
|
|
@@ -990,6 +995,7 @@ export default [
|
|
|
990
995
|
"bucket",
|
|
991
996
|
"bug-off",
|
|
992
997
|
"bug",
|
|
998
|
+
"building-airport",
|
|
993
999
|
"building-arch",
|
|
994
1000
|
"building-bank",
|
|
995
1001
|
"building-bridge-2",
|
|
@@ -1068,6 +1074,8 @@ export default [
|
|
|
1068
1074
|
"calendar-week",
|
|
1069
1075
|
"calendar-x",
|
|
1070
1076
|
"calendar",
|
|
1077
|
+
"camera-ai",
|
|
1078
|
+
"camera-bitcoin",
|
|
1071
1079
|
"camera-bolt",
|
|
1072
1080
|
"camera-cancel",
|
|
1073
1081
|
"camera-check",
|
|
@@ -1078,6 +1086,7 @@ export default [
|
|
|
1078
1086
|
"camera-exclamation",
|
|
1079
1087
|
"camera-heart",
|
|
1080
1088
|
"camera-minus",
|
|
1089
|
+
"camera-moon",
|
|
1081
1090
|
"camera-off",
|
|
1082
1091
|
"camera-pause",
|
|
1083
1092
|
"camera-pin",
|
|
@@ -1087,6 +1096,7 @@ export default [
|
|
|
1087
1096
|
"camera-search",
|
|
1088
1097
|
"camera-selfie",
|
|
1089
1098
|
"camera-share",
|
|
1099
|
+
"camera-spark",
|
|
1090
1100
|
"camera-star",
|
|
1091
1101
|
"camera-up",
|
|
1092
1102
|
"camera-x",
|
|
@@ -1176,6 +1186,8 @@ export default [
|
|
|
1176
1186
|
"chart-candle",
|
|
1177
1187
|
"chart-circles",
|
|
1178
1188
|
"chart-cohort",
|
|
1189
|
+
"chart-column",
|
|
1190
|
+
"chart-covariate",
|
|
1179
1191
|
"chart-donut-2",
|
|
1180
1192
|
"chart-donut-3",
|
|
1181
1193
|
"chart-donut-4",
|
|
@@ -1274,7 +1286,6 @@ export default [
|
|
|
1274
1286
|
"circle-dashed-letter-j",
|
|
1275
1287
|
"circle-dashed-letter-k",
|
|
1276
1288
|
"circle-dashed-letter-l",
|
|
1277
|
-
"circle-dashed-letter-letter-v",
|
|
1278
1289
|
"circle-dashed-letter-m",
|
|
1279
1290
|
"circle-dashed-letter-n",
|
|
1280
1291
|
"circle-dashed-letter-o",
|
|
@@ -1550,6 +1561,7 @@ export default [
|
|
|
1550
1561
|
"confetti-off",
|
|
1551
1562
|
"confetti",
|
|
1552
1563
|
"confucius",
|
|
1564
|
+
"congruent-to",
|
|
1553
1565
|
"container-off",
|
|
1554
1566
|
"container",
|
|
1555
1567
|
"contract",
|
|
@@ -1626,6 +1638,7 @@ export default [
|
|
|
1626
1638
|
"cube-off",
|
|
1627
1639
|
"cube-plus",
|
|
1628
1640
|
"cube-send",
|
|
1641
|
+
"cube-spark",
|
|
1629
1642
|
"cube-unfolded",
|
|
1630
1643
|
"cube",
|
|
1631
1644
|
"cup-off",
|
|
@@ -1957,6 +1970,7 @@ export default [
|
|
|
1957
1970
|
"diamond-off",
|
|
1958
1971
|
"diamond",
|
|
1959
1972
|
"diamonds",
|
|
1973
|
+
"diaper",
|
|
1960
1974
|
"dice-1",
|
|
1961
1975
|
"dice-2",
|
|
1962
1976
|
"dice-3",
|
|
@@ -2104,6 +2118,7 @@ export default [
|
|
|
2104
2118
|
"eye-question",
|
|
2105
2119
|
"eye-search",
|
|
2106
2120
|
"eye-share",
|
|
2121
|
+
"eye-spark",
|
|
2107
2122
|
"eye-star",
|
|
2108
2123
|
"eye-table",
|
|
2109
2124
|
"eye-up",
|
|
@@ -2124,11 +2139,13 @@ export default [
|
|
|
2124
2139
|
"fence",
|
|
2125
2140
|
"fidget-spinner",
|
|
2126
2141
|
"file-3d",
|
|
2142
|
+
"file-ai",
|
|
2127
2143
|
"file-alert",
|
|
2128
2144
|
"file-analytics",
|
|
2129
2145
|
"file-arrow-left",
|
|
2130
2146
|
"file-arrow-right",
|
|
2131
2147
|
"file-barcode",
|
|
2148
|
+
"file-bitcoin",
|
|
2132
2149
|
"file-broken",
|
|
2133
2150
|
"file-certificate",
|
|
2134
2151
|
"file-chart",
|
|
@@ -2176,11 +2193,13 @@ export default [
|
|
|
2176
2193
|
"file-shredder",
|
|
2177
2194
|
"file-signal",
|
|
2178
2195
|
"file-smile",
|
|
2196
|
+
"file-spark",
|
|
2179
2197
|
"file-spreadsheet",
|
|
2180
2198
|
"file-stack",
|
|
2181
2199
|
"file-star",
|
|
2182
2200
|
"file-symlink",
|
|
2183
2201
|
"file-text-ai",
|
|
2202
|
+
"file-text-spark",
|
|
2184
2203
|
"file-text",
|
|
2185
2204
|
"file-time",
|
|
2186
2205
|
"file-type-bmp",
|
|
@@ -2277,6 +2296,7 @@ export default [
|
|
|
2277
2296
|
"flag-question",
|
|
2278
2297
|
"flag-search",
|
|
2279
2298
|
"flag-share",
|
|
2299
|
+
"flag-spark",
|
|
2280
2300
|
"flag-star",
|
|
2281
2301
|
"flag-up",
|
|
2282
2302
|
"flag-x",
|
|
@@ -2490,6 +2510,7 @@ export default [
|
|
|
2490
2510
|
"heart-rate-monitor",
|
|
2491
2511
|
"heart-search",
|
|
2492
2512
|
"heart-share",
|
|
2513
|
+
"heart-spark",
|
|
2493
2514
|
"heart-star",
|
|
2494
2515
|
"heart-up",
|
|
2495
2516
|
"heart-x",
|
|
@@ -2599,6 +2620,7 @@ export default [
|
|
|
2599
2620
|
"home-share",
|
|
2600
2621
|
"home-shield",
|
|
2601
2622
|
"home-signal",
|
|
2623
|
+
"home-spark",
|
|
2602
2624
|
"home-star",
|
|
2603
2625
|
"home-stats",
|
|
2604
2626
|
"home-up",
|
|
@@ -2665,6 +2687,7 @@ export default [
|
|
|
2665
2687
|
"input-ai",
|
|
2666
2688
|
"input-check",
|
|
2667
2689
|
"input-search",
|
|
2690
|
+
"input-spark",
|
|
2668
2691
|
"input-x",
|
|
2669
2692
|
"invoice",
|
|
2670
2693
|
"ironing-1",
|
|
@@ -2908,6 +2931,7 @@ export default [
|
|
|
2908
2931
|
"lock-open-2",
|
|
2909
2932
|
"lock-open-off",
|
|
2910
2933
|
"lock-open",
|
|
2934
|
+
"lock-password",
|
|
2911
2935
|
"lock-pause",
|
|
2912
2936
|
"lock-pin",
|
|
2913
2937
|
"lock-plus",
|
|
@@ -2966,6 +2990,7 @@ export default [
|
|
|
2966
2990
|
"mail-question",
|
|
2967
2991
|
"mail-search",
|
|
2968
2992
|
"mail-share",
|
|
2993
|
+
"mail-spark",
|
|
2969
2994
|
"mail-star",
|
|
2970
2995
|
"mail-up",
|
|
2971
2996
|
"mail-x",
|
|
@@ -3236,6 +3261,7 @@ export default [
|
|
|
3236
3261
|
"mood-smile-beam",
|
|
3237
3262
|
"mood-smile-dizzy",
|
|
3238
3263
|
"mood-smile",
|
|
3264
|
+
"mood-spark",
|
|
3239
3265
|
"mood-surprised",
|
|
3240
3266
|
"mood-tongue-wink-2",
|
|
3241
3267
|
"mood-tongue-wink",
|
|
@@ -3503,11 +3529,15 @@ export default [
|
|
|
3503
3529
|
"phone-call",
|
|
3504
3530
|
"phone-calling",
|
|
3505
3531
|
"phone-check",
|
|
3532
|
+
"phone-done",
|
|
3533
|
+
"phone-end",
|
|
3506
3534
|
"phone-incoming",
|
|
3507
3535
|
"phone-off",
|
|
3508
3536
|
"phone-outgoing",
|
|
3509
3537
|
"phone-pause",
|
|
3510
3538
|
"phone-plus",
|
|
3539
|
+
"phone-ringing",
|
|
3540
|
+
"phone-spark",
|
|
3511
3541
|
"phone-x",
|
|
3512
3542
|
"phone",
|
|
3513
3543
|
"photo-ai",
|
|
@@ -3540,6 +3570,7 @@ export default [
|
|
|
3540
3570
|
"photo-sensor",
|
|
3541
3571
|
"photo-share",
|
|
3542
3572
|
"photo-shield",
|
|
3573
|
+
"photo-spark",
|
|
3543
3574
|
"photo-square-rounded",
|
|
3544
3575
|
"photo-star",
|
|
3545
3576
|
"photo-up",
|
|
@@ -3904,6 +3935,7 @@ export default [
|
|
|
3904
3935
|
"server-bolt",
|
|
3905
3936
|
"server-cog",
|
|
3906
3937
|
"server-off",
|
|
3938
|
+
"server-spark",
|
|
3907
3939
|
"server",
|
|
3908
3940
|
"servicemark",
|
|
3909
3941
|
"settings-2",
|
|
@@ -3925,6 +3957,7 @@ export default [
|
|
|
3925
3957
|
"settings-question",
|
|
3926
3958
|
"settings-search",
|
|
3927
3959
|
"settings-share",
|
|
3960
|
+
"settings-spark",
|
|
3928
3961
|
"settings-star",
|
|
3929
3962
|
"settings-up",
|
|
3930
3963
|
"settings-x",
|
|
@@ -4262,6 +4295,7 @@ export default [
|
|
|
4262
4295
|
"stethoscope",
|
|
4263
4296
|
"sticker-2",
|
|
4264
4297
|
"sticker",
|
|
4298
|
+
"stopwatch",
|
|
4265
4299
|
"storm-off",
|
|
4266
4300
|
"storm",
|
|
4267
4301
|
"stretching-2",
|
|
@@ -4312,6 +4346,7 @@ export default [
|
|
|
4312
4346
|
"table-row",
|
|
4313
4347
|
"table-share",
|
|
4314
4348
|
"table-shortcut",
|
|
4349
|
+
"table-spark",
|
|
4315
4350
|
"table",
|
|
4316
4351
|
"tag-off",
|
|
4317
4352
|
"tag-starred",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.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.13.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@sveltejs/package": "^2.2.7",
|
|
@@ -61,6 +61,6 @@
|
|
|
61
61
|
"svelte-preprocess": "^5.1.3"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
|
-
"svelte": ">=3 <6"
|
|
64
|
+
"svelte": ">=3 <6 || >=5.0.0-next.0"
|
|
65
65
|
}
|
|
66
66
|
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M10 8l2 8l2 -8" }], ["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" }]];
|
|
3
|
-
</script>
|
|
4
|
-
<Icon type="outline" name="circle-dashed-letter-letter-v" {...$$props} iconNode={iconNode}>
|
|
5
|
-
<slot/>
|
|
6
|
-
</Icon>
|
|
@@ -1,17 +0,0 @@
|
|
|
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 CircleDashedLetterLetterVProps = typeof __propDef.props;
|
|
13
|
-
export type CircleDashedLetterLetterVEvents = typeof __propDef.events;
|
|
14
|
-
export type CircleDashedLetterLetterVSlots = typeof __propDef.slots;
|
|
15
|
-
export default class CircleDashedLetterLetterV extends SvelteComponentTyped<CircleDashedLetterLetterVProps, CircleDashedLetterLetterVEvents, CircleDashedLetterLetterVSlots> {
|
|
16
|
-
}
|
|
17
|
-
export {};
|