@tabler/icons-svelte 3.12.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/icons/adjustments-spark.svelte +6 -0
- package/dist/icons/adjustments-spark.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/camera-spark.svelte +6 -0
- package/dist/icons/camera-spark.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/eye-spark.svelte +6 -0
- package/dist/icons/eye-spark.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 +18 -0
- package/dist/icons/index.js +18 -0
- package/dist/icons/input-spark.svelte +6 -0
- package/dist/icons/input-spark.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-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/table-spark.svelte +6 -0
- package/dist/icons/table-spark.svelte.d.ts +17 -0
- package/dist/icons-list.js +18 -0
- package/package.json +2 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" }], ["path", { "d": "M6 4v4" }], ["path", { "d": "M6 12v8" }], ["path", { "d": "M13.879 15.312a2 2 0 1 0 -2.26 2.652" }], ["path", { "d": "M12 4v10" }], ["path", { "d": "M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" }], ["path", { "d": "M18 4v1" }], ["path", { "d": "M18 9v2.5" }], ["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="adjustments-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 AdjustmentsSparkProps = typeof __propDef.props;
|
|
13
|
+
export type AdjustmentsSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type AdjustmentsSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class AdjustmentsSpark extends SvelteComponentTyped<AdjustmentsSparkProps, AdjustmentsSparkEvents, AdjustmentsSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 17h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v1" }], ["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="battery-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 BatterySparkProps = typeof __propDef.props;
|
|
13
|
+
export type BatterySparkEvents = typeof __propDef.events;
|
|
14
|
+
export type BatterySparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BatterySpark extends SvelteComponentTyped<BatterySparkProps, BatterySparkEvents, BatterySparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3" }], ["path", { "d": "M9 13a3 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="camera-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 CameraSparkProps = typeof __propDef.props;
|
|
13
|
+
export type CameraSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type CameraSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CameraSpark extends SvelteComponentTyped<CameraSparkProps, CameraSparkEvents, CameraSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M21 12v-4.01a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.02 2.02 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008c.62 .354 1.38 .354 2 0" }], ["path", { "d": "M12 22v-10" }], ["path", { "d": "M12 12l8.73 -5.04" }], ["path", { "d": "M3.27 6.96l8.73 5.04" }], ["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="cube-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 CubeSparkProps = typeof __propDef.props;
|
|
13
|
+
export type CubeSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type CubeSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CubeSpark extends SvelteComponentTyped<CubeSparkProps, CubeSparkEvents, CubeSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" }], ["path", { "d": "M11.669 17.994q -5.18 -.18 -8.669 -5.994q 3.6 -6 9 -6t 9 6" }], ["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="eye-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 EyeSparkProps = typeof __propDef.props;
|
|
13
|
+
export type EyeSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type EyeSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class EyeSpark extends SvelteComponentTyped<EyeSparkProps, EyeSparkEvents, EyeSparkSlots> {
|
|
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": "M14 3v4a1 1 0 0 0 1 1h4" }], ["path", { "d": "M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="file-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 FileSparkProps = typeof __propDef.props;
|
|
13
|
+
export type FileSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type FileSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class FileSpark extends SvelteComponentTyped<FileSparkProps, FileSparkEvents, FileSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M14 3v4a1 1 0 0 0 1 1h4" }], ["path", { "d": "M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5" }], ["path", { "d": "M9 9h1" }], ["path", { "d": "M9 13h6" }], ["path", { "d": "M9 17h3" }], ["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="file-text-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 FileTextSparkProps = typeof __propDef.props;
|
|
13
|
+
export type FileTextSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type FileTextSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class FileTextSpark extends SvelteComponentTyped<FileTextSparkProps, FileTextSparkEvents, FileTextSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M14.165 15.249a5 5 0 0 1 -2.165 -1.249a5 5 0 0 0 -7 0v-9a5 5 0 0 1 7 0a5 5 0 0 0 7 0v6.5" }], ["path", { "d": "M5 21v-7" }], ["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="flag-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 FlagSparkProps = typeof __propDef.props;
|
|
13
|
+
export type FlagSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type FlagSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class FlagSpark extends SvelteComponentTyped<FlagSparkProps, FlagSparkEvents, FlagSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M11.537 19.542l-7.037 -6.97a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.212 5.693" }], ["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="heart-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 HeartSparkProps = typeof __propDef.props;
|
|
13
|
+
export type HeartSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type HeartSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class HeartSpark extends SvelteComponentTyped<HeartSparkProps, HeartSparkEvents, HeartSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 12h-2l9 -9l9 9h-2" }], ["path", { "d": "M5 12v7a2 2 0 0 0 2 2h5" }], ["path", { "d": "M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2" }], ["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="home-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 HomeSparkProps = typeof __propDef.props;
|
|
13
|
+
export type HomeSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type HomeSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class HomeSpark extends SvelteComponentTyped<HomeSparkProps, HomeSparkEvents, HomeSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export { default as IconAdjustmentsPlus } from './adjustments-plus.svelte';
|
|
|
36
36
|
export { default as IconAdjustmentsQuestion } from './adjustments-question.svelte';
|
|
37
37
|
export { default as IconAdjustmentsSearch } from './adjustments-search.svelte';
|
|
38
38
|
export { default as IconAdjustmentsShare } from './adjustments-share.svelte';
|
|
39
|
+
export { default as IconAdjustmentsSpark } from './adjustments-spark.svelte';
|
|
39
40
|
export { default as IconAdjustmentsStar } from './adjustments-star.svelte';
|
|
40
41
|
export { default as IconAdjustmentsUp } from './adjustments-up.svelte';
|
|
41
42
|
export { default as IconAdjustmentsX } from './adjustments-x.svelte';
|
|
@@ -426,6 +427,7 @@ export { default as IconBatteryCharging } from './battery-charging.svelte';
|
|
|
426
427
|
export { default as IconBatteryEco } from './battery-eco.svelte';
|
|
427
428
|
export { default as IconBatteryExclamation } from './battery-exclamation.svelte';
|
|
428
429
|
export { default as IconBatteryOff } from './battery-off.svelte';
|
|
430
|
+
export { default as IconBatterySpark } from './battery-spark.svelte';
|
|
429
431
|
export { default as IconBatteryVertical1 } from './battery-vertical-1.svelte';
|
|
430
432
|
export { default as IconBatteryVertical2 } from './battery-vertical-2.svelte';
|
|
431
433
|
export { default as IconBatteryVertical3 } from './battery-vertical-3.svelte';
|
|
@@ -1093,6 +1095,7 @@ export { default as IconCameraRotate } from './camera-rotate.svelte';
|
|
|
1093
1095
|
export { default as IconCameraSearch } from './camera-search.svelte';
|
|
1094
1096
|
export { default as IconCameraSelfie } from './camera-selfie.svelte';
|
|
1095
1097
|
export { default as IconCameraShare } from './camera-share.svelte';
|
|
1098
|
+
export { default as IconCameraSpark } from './camera-spark.svelte';
|
|
1096
1099
|
export { default as IconCameraStar } from './camera-star.svelte';
|
|
1097
1100
|
export { default as IconCameraUp } from './camera-up.svelte';
|
|
1098
1101
|
export { default as IconCameraX } from './camera-x.svelte';
|
|
@@ -1634,6 +1637,7 @@ export { default as IconCube3dSphere } from './cube-3d-sphere.svelte';
|
|
|
1634
1637
|
export { default as IconCubeOff } from './cube-off.svelte';
|
|
1635
1638
|
export { default as IconCubePlus } from './cube-plus.svelte';
|
|
1636
1639
|
export { default as IconCubeSend } from './cube-send.svelte';
|
|
1640
|
+
export { default as IconCubeSpark } from './cube-spark.svelte';
|
|
1637
1641
|
export { default as IconCubeUnfolded } from './cube-unfolded.svelte';
|
|
1638
1642
|
export { default as IconCube } from './cube.svelte';
|
|
1639
1643
|
export { default as IconCupOff } from './cup-off.svelte';
|
|
@@ -2113,6 +2117,7 @@ export { default as IconEyePlus } from './eye-plus.svelte';
|
|
|
2113
2117
|
export { default as IconEyeQuestion } from './eye-question.svelte';
|
|
2114
2118
|
export { default as IconEyeSearch } from './eye-search.svelte';
|
|
2115
2119
|
export { default as IconEyeShare } from './eye-share.svelte';
|
|
2120
|
+
export { default as IconEyeSpark } from './eye-spark.svelte';
|
|
2116
2121
|
export { default as IconEyeStar } from './eye-star.svelte';
|
|
2117
2122
|
export { default as IconEyeTable } from './eye-table.svelte';
|
|
2118
2123
|
export { default as IconEyeUp } from './eye-up.svelte';
|
|
@@ -2187,11 +2192,13 @@ export { default as IconFileSettings } from './file-settings.svelte';
|
|
|
2187
2192
|
export { default as IconFileShredder } from './file-shredder.svelte';
|
|
2188
2193
|
export { default as IconFileSignal } from './file-signal.svelte';
|
|
2189
2194
|
export { default as IconFileSmile } from './file-smile.svelte';
|
|
2195
|
+
export { default as IconFileSpark } from './file-spark.svelte';
|
|
2190
2196
|
export { default as IconFileSpreadsheet } from './file-spreadsheet.svelte';
|
|
2191
2197
|
export { default as IconFileStack } from './file-stack.svelte';
|
|
2192
2198
|
export { default as IconFileStar } from './file-star.svelte';
|
|
2193
2199
|
export { default as IconFileSymlink } from './file-symlink.svelte';
|
|
2194
2200
|
export { default as IconFileTextAi } from './file-text-ai.svelte';
|
|
2201
|
+
export { default as IconFileTextSpark } from './file-text-spark.svelte';
|
|
2195
2202
|
export { default as IconFileText } from './file-text.svelte';
|
|
2196
2203
|
export { default as IconFileTime } from './file-time.svelte';
|
|
2197
2204
|
export { default as IconFileTypeBmp } from './file-type-bmp.svelte';
|
|
@@ -2288,6 +2295,7 @@ export { default as IconFlagPlus } from './flag-plus.svelte';
|
|
|
2288
2295
|
export { default as IconFlagQuestion } from './flag-question.svelte';
|
|
2289
2296
|
export { default as IconFlagSearch } from './flag-search.svelte';
|
|
2290
2297
|
export { default as IconFlagShare } from './flag-share.svelte';
|
|
2298
|
+
export { default as IconFlagSpark } from './flag-spark.svelte';
|
|
2291
2299
|
export { default as IconFlagStar } from './flag-star.svelte';
|
|
2292
2300
|
export { default as IconFlagUp } from './flag-up.svelte';
|
|
2293
2301
|
export { default as IconFlagX } from './flag-x.svelte';
|
|
@@ -2501,6 +2509,7 @@ export { default as IconHeartQuestion } from './heart-question.svelte';
|
|
|
2501
2509
|
export { default as IconHeartRateMonitor } from './heart-rate-monitor.svelte';
|
|
2502
2510
|
export { default as IconHeartSearch } from './heart-search.svelte';
|
|
2503
2511
|
export { default as IconHeartShare } from './heart-share.svelte';
|
|
2512
|
+
export { default as IconHeartSpark } from './heart-spark.svelte';
|
|
2504
2513
|
export { default as IconHeartStar } from './heart-star.svelte';
|
|
2505
2514
|
export { default as IconHeartUp } from './heart-up.svelte';
|
|
2506
2515
|
export { default as IconHeartX } from './heart-x.svelte';
|
|
@@ -2610,6 +2619,7 @@ export { default as IconHomeSearch } from './home-search.svelte';
|
|
|
2610
2619
|
export { default as IconHomeShare } from './home-share.svelte';
|
|
2611
2620
|
export { default as IconHomeShield } from './home-shield.svelte';
|
|
2612
2621
|
export { default as IconHomeSignal } from './home-signal.svelte';
|
|
2622
|
+
export { default as IconHomeSpark } from './home-spark.svelte';
|
|
2613
2623
|
export { default as IconHomeStar } from './home-star.svelte';
|
|
2614
2624
|
export { default as IconHomeStats } from './home-stats.svelte';
|
|
2615
2625
|
export { default as IconHomeUp } from './home-up.svelte';
|
|
@@ -2676,6 +2686,7 @@ export { default as IconInnerShadowTop } from './inner-shadow-top.svelte';
|
|
|
2676
2686
|
export { default as IconInputAi } from './input-ai.svelte';
|
|
2677
2687
|
export { default as IconInputCheck } from './input-check.svelte';
|
|
2678
2688
|
export { default as IconInputSearch } from './input-search.svelte';
|
|
2689
|
+
export { default as IconInputSpark } from './input-spark.svelte';
|
|
2679
2690
|
export { default as IconInputX } from './input-x.svelte';
|
|
2680
2691
|
export { default as IconInvoice } from './invoice.svelte';
|
|
2681
2692
|
export { default as IconIroning1 } from './ironing-1.svelte';
|
|
@@ -2978,6 +2989,7 @@ export { default as IconMailPlus } from './mail-plus.svelte';
|
|
|
2978
2989
|
export { default as IconMailQuestion } from './mail-question.svelte';
|
|
2979
2990
|
export { default as IconMailSearch } from './mail-search.svelte';
|
|
2980
2991
|
export { default as IconMailShare } from './mail-share.svelte';
|
|
2992
|
+
export { default as IconMailSpark } from './mail-spark.svelte';
|
|
2981
2993
|
export { default as IconMailStar } from './mail-star.svelte';
|
|
2982
2994
|
export { default as IconMailUp } from './mail-up.svelte';
|
|
2983
2995
|
export { default as IconMailX } from './mail-x.svelte';
|
|
@@ -3248,6 +3260,7 @@ export { default as IconMoodSing } from './mood-sing.svelte';
|
|
|
3248
3260
|
export { default as IconMoodSmileBeam } from './mood-smile-beam.svelte';
|
|
3249
3261
|
export { default as IconMoodSmileDizzy } from './mood-smile-dizzy.svelte';
|
|
3250
3262
|
export { default as IconMoodSmile } from './mood-smile.svelte';
|
|
3263
|
+
export { default as IconMoodSpark } from './mood-spark.svelte';
|
|
3251
3264
|
export { default as IconMoodSurprised } from './mood-surprised.svelte';
|
|
3252
3265
|
export { default as IconMoodTongueWink2 } from './mood-tongue-wink-2.svelte';
|
|
3253
3266
|
export { default as IconMoodTongueWink } from './mood-tongue-wink.svelte';
|
|
@@ -3523,6 +3536,7 @@ export { default as IconPhoneOutgoing } from './phone-outgoing.svelte';
|
|
|
3523
3536
|
export { default as IconPhonePause } from './phone-pause.svelte';
|
|
3524
3537
|
export { default as IconPhonePlus } from './phone-plus.svelte';
|
|
3525
3538
|
export { default as IconPhoneRinging } from './phone-ringing.svelte';
|
|
3539
|
+
export { default as IconPhoneSpark } from './phone-spark.svelte';
|
|
3526
3540
|
export { default as IconPhoneX } from './phone-x.svelte';
|
|
3527
3541
|
export { default as IconPhone } from './phone.svelte';
|
|
3528
3542
|
export { default as IconPhotoAi } from './photo-ai.svelte';
|
|
@@ -3555,6 +3569,7 @@ export { default as IconPhotoSensor3 } from './photo-sensor-3.svelte';
|
|
|
3555
3569
|
export { default as IconPhotoSensor } from './photo-sensor.svelte';
|
|
3556
3570
|
export { default as IconPhotoShare } from './photo-share.svelte';
|
|
3557
3571
|
export { default as IconPhotoShield } from './photo-shield.svelte';
|
|
3572
|
+
export { default as IconPhotoSpark } from './photo-spark.svelte';
|
|
3558
3573
|
export { default as IconPhotoSquareRounded } from './photo-square-rounded.svelte';
|
|
3559
3574
|
export { default as IconPhotoStar } from './photo-star.svelte';
|
|
3560
3575
|
export { default as IconPhotoUp } from './photo-up.svelte';
|
|
@@ -3919,6 +3934,7 @@ export { default as IconServer2 } from './server-2.svelte';
|
|
|
3919
3934
|
export { default as IconServerBolt } from './server-bolt.svelte';
|
|
3920
3935
|
export { default as IconServerCog } from './server-cog.svelte';
|
|
3921
3936
|
export { default as IconServerOff } from './server-off.svelte';
|
|
3937
|
+
export { default as IconServerSpark } from './server-spark.svelte';
|
|
3922
3938
|
export { default as IconServer } from './server.svelte';
|
|
3923
3939
|
export { default as IconServicemark } from './servicemark.svelte';
|
|
3924
3940
|
export { default as IconSettings2 } from './settings-2.svelte';
|
|
@@ -3940,6 +3956,7 @@ export { default as IconSettingsPlus } from './settings-plus.svelte';
|
|
|
3940
3956
|
export { default as IconSettingsQuestion } from './settings-question.svelte';
|
|
3941
3957
|
export { default as IconSettingsSearch } from './settings-search.svelte';
|
|
3942
3958
|
export { default as IconSettingsShare } from './settings-share.svelte';
|
|
3959
|
+
export { default as IconSettingsSpark } from './settings-spark.svelte';
|
|
3943
3960
|
export { default as IconSettingsStar } from './settings-star.svelte';
|
|
3944
3961
|
export { default as IconSettingsUp } from './settings-up.svelte';
|
|
3945
3962
|
export { default as IconSettingsX } from './settings-x.svelte';
|
|
@@ -4328,6 +4345,7 @@ export { default as IconTablePlus } from './table-plus.svelte';
|
|
|
4328
4345
|
export { default as IconTableRow } from './table-row.svelte';
|
|
4329
4346
|
export { default as IconTableShare } from './table-share.svelte';
|
|
4330
4347
|
export { default as IconTableShortcut } from './table-shortcut.svelte';
|
|
4348
|
+
export { default as IconTableSpark } from './table-spark.svelte';
|
|
4331
4349
|
export { default as IconTable } from './table.svelte';
|
|
4332
4350
|
export { default as IconTagOff } from './tag-off.svelte';
|
|
4333
4351
|
export { default as IconTagStarred } from './tag-starred.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -36,6 +36,7 @@ export { default as IconAdjustmentsPlus } from './adjustments-plus.svelte';
|
|
|
36
36
|
export { default as IconAdjustmentsQuestion } from './adjustments-question.svelte';
|
|
37
37
|
export { default as IconAdjustmentsSearch } from './adjustments-search.svelte';
|
|
38
38
|
export { default as IconAdjustmentsShare } from './adjustments-share.svelte';
|
|
39
|
+
export { default as IconAdjustmentsSpark } from './adjustments-spark.svelte';
|
|
39
40
|
export { default as IconAdjustmentsStar } from './adjustments-star.svelte';
|
|
40
41
|
export { default as IconAdjustmentsUp } from './adjustments-up.svelte';
|
|
41
42
|
export { default as IconAdjustmentsX } from './adjustments-x.svelte';
|
|
@@ -426,6 +427,7 @@ export { default as IconBatteryCharging } from './battery-charging.svelte';
|
|
|
426
427
|
export { default as IconBatteryEco } from './battery-eco.svelte';
|
|
427
428
|
export { default as IconBatteryExclamation } from './battery-exclamation.svelte';
|
|
428
429
|
export { default as IconBatteryOff } from './battery-off.svelte';
|
|
430
|
+
export { default as IconBatterySpark } from './battery-spark.svelte';
|
|
429
431
|
export { default as IconBatteryVertical1 } from './battery-vertical-1.svelte';
|
|
430
432
|
export { default as IconBatteryVertical2 } from './battery-vertical-2.svelte';
|
|
431
433
|
export { default as IconBatteryVertical3 } from './battery-vertical-3.svelte';
|
|
@@ -1093,6 +1095,7 @@ export { default as IconCameraRotate } from './camera-rotate.svelte';
|
|
|
1093
1095
|
export { default as IconCameraSearch } from './camera-search.svelte';
|
|
1094
1096
|
export { default as IconCameraSelfie } from './camera-selfie.svelte';
|
|
1095
1097
|
export { default as IconCameraShare } from './camera-share.svelte';
|
|
1098
|
+
export { default as IconCameraSpark } from './camera-spark.svelte';
|
|
1096
1099
|
export { default as IconCameraStar } from './camera-star.svelte';
|
|
1097
1100
|
export { default as IconCameraUp } from './camera-up.svelte';
|
|
1098
1101
|
export { default as IconCameraX } from './camera-x.svelte';
|
|
@@ -1634,6 +1637,7 @@ export { default as IconCube3dSphere } from './cube-3d-sphere.svelte';
|
|
|
1634
1637
|
export { default as IconCubeOff } from './cube-off.svelte';
|
|
1635
1638
|
export { default as IconCubePlus } from './cube-plus.svelte';
|
|
1636
1639
|
export { default as IconCubeSend } from './cube-send.svelte';
|
|
1640
|
+
export { default as IconCubeSpark } from './cube-spark.svelte';
|
|
1637
1641
|
export { default as IconCubeUnfolded } from './cube-unfolded.svelte';
|
|
1638
1642
|
export { default as IconCube } from './cube.svelte';
|
|
1639
1643
|
export { default as IconCupOff } from './cup-off.svelte';
|
|
@@ -2113,6 +2117,7 @@ export { default as IconEyePlus } from './eye-plus.svelte';
|
|
|
2113
2117
|
export { default as IconEyeQuestion } from './eye-question.svelte';
|
|
2114
2118
|
export { default as IconEyeSearch } from './eye-search.svelte';
|
|
2115
2119
|
export { default as IconEyeShare } from './eye-share.svelte';
|
|
2120
|
+
export { default as IconEyeSpark } from './eye-spark.svelte';
|
|
2116
2121
|
export { default as IconEyeStar } from './eye-star.svelte';
|
|
2117
2122
|
export { default as IconEyeTable } from './eye-table.svelte';
|
|
2118
2123
|
export { default as IconEyeUp } from './eye-up.svelte';
|
|
@@ -2187,11 +2192,13 @@ export { default as IconFileSettings } from './file-settings.svelte';
|
|
|
2187
2192
|
export { default as IconFileShredder } from './file-shredder.svelte';
|
|
2188
2193
|
export { default as IconFileSignal } from './file-signal.svelte';
|
|
2189
2194
|
export { default as IconFileSmile } from './file-smile.svelte';
|
|
2195
|
+
export { default as IconFileSpark } from './file-spark.svelte';
|
|
2190
2196
|
export { default as IconFileSpreadsheet } from './file-spreadsheet.svelte';
|
|
2191
2197
|
export { default as IconFileStack } from './file-stack.svelte';
|
|
2192
2198
|
export { default as IconFileStar } from './file-star.svelte';
|
|
2193
2199
|
export { default as IconFileSymlink } from './file-symlink.svelte';
|
|
2194
2200
|
export { default as IconFileTextAi } from './file-text-ai.svelte';
|
|
2201
|
+
export { default as IconFileTextSpark } from './file-text-spark.svelte';
|
|
2195
2202
|
export { default as IconFileText } from './file-text.svelte';
|
|
2196
2203
|
export { default as IconFileTime } from './file-time.svelte';
|
|
2197
2204
|
export { default as IconFileTypeBmp } from './file-type-bmp.svelte';
|
|
@@ -2288,6 +2295,7 @@ export { default as IconFlagPlus } from './flag-plus.svelte';
|
|
|
2288
2295
|
export { default as IconFlagQuestion } from './flag-question.svelte';
|
|
2289
2296
|
export { default as IconFlagSearch } from './flag-search.svelte';
|
|
2290
2297
|
export { default as IconFlagShare } from './flag-share.svelte';
|
|
2298
|
+
export { default as IconFlagSpark } from './flag-spark.svelte';
|
|
2291
2299
|
export { default as IconFlagStar } from './flag-star.svelte';
|
|
2292
2300
|
export { default as IconFlagUp } from './flag-up.svelte';
|
|
2293
2301
|
export { default as IconFlagX } from './flag-x.svelte';
|
|
@@ -2501,6 +2509,7 @@ export { default as IconHeartQuestion } from './heart-question.svelte';
|
|
|
2501
2509
|
export { default as IconHeartRateMonitor } from './heart-rate-monitor.svelte';
|
|
2502
2510
|
export { default as IconHeartSearch } from './heart-search.svelte';
|
|
2503
2511
|
export { default as IconHeartShare } from './heart-share.svelte';
|
|
2512
|
+
export { default as IconHeartSpark } from './heart-spark.svelte';
|
|
2504
2513
|
export { default as IconHeartStar } from './heart-star.svelte';
|
|
2505
2514
|
export { default as IconHeartUp } from './heart-up.svelte';
|
|
2506
2515
|
export { default as IconHeartX } from './heart-x.svelte';
|
|
@@ -2610,6 +2619,7 @@ export { default as IconHomeSearch } from './home-search.svelte';
|
|
|
2610
2619
|
export { default as IconHomeShare } from './home-share.svelte';
|
|
2611
2620
|
export { default as IconHomeShield } from './home-shield.svelte';
|
|
2612
2621
|
export { default as IconHomeSignal } from './home-signal.svelte';
|
|
2622
|
+
export { default as IconHomeSpark } from './home-spark.svelte';
|
|
2613
2623
|
export { default as IconHomeStar } from './home-star.svelte';
|
|
2614
2624
|
export { default as IconHomeStats } from './home-stats.svelte';
|
|
2615
2625
|
export { default as IconHomeUp } from './home-up.svelte';
|
|
@@ -2676,6 +2686,7 @@ export { default as IconInnerShadowTop } from './inner-shadow-top.svelte';
|
|
|
2676
2686
|
export { default as IconInputAi } from './input-ai.svelte';
|
|
2677
2687
|
export { default as IconInputCheck } from './input-check.svelte';
|
|
2678
2688
|
export { default as IconInputSearch } from './input-search.svelte';
|
|
2689
|
+
export { default as IconInputSpark } from './input-spark.svelte';
|
|
2679
2690
|
export { default as IconInputX } from './input-x.svelte';
|
|
2680
2691
|
export { default as IconInvoice } from './invoice.svelte';
|
|
2681
2692
|
export { default as IconIroning1 } from './ironing-1.svelte';
|
|
@@ -2978,6 +2989,7 @@ export { default as IconMailPlus } from './mail-plus.svelte';
|
|
|
2978
2989
|
export { default as IconMailQuestion } from './mail-question.svelte';
|
|
2979
2990
|
export { default as IconMailSearch } from './mail-search.svelte';
|
|
2980
2991
|
export { default as IconMailShare } from './mail-share.svelte';
|
|
2992
|
+
export { default as IconMailSpark } from './mail-spark.svelte';
|
|
2981
2993
|
export { default as IconMailStar } from './mail-star.svelte';
|
|
2982
2994
|
export { default as IconMailUp } from './mail-up.svelte';
|
|
2983
2995
|
export { default as IconMailX } from './mail-x.svelte';
|
|
@@ -3248,6 +3260,7 @@ export { default as IconMoodSing } from './mood-sing.svelte';
|
|
|
3248
3260
|
export { default as IconMoodSmileBeam } from './mood-smile-beam.svelte';
|
|
3249
3261
|
export { default as IconMoodSmileDizzy } from './mood-smile-dizzy.svelte';
|
|
3250
3262
|
export { default as IconMoodSmile } from './mood-smile.svelte';
|
|
3263
|
+
export { default as IconMoodSpark } from './mood-spark.svelte';
|
|
3251
3264
|
export { default as IconMoodSurprised } from './mood-surprised.svelte';
|
|
3252
3265
|
export { default as IconMoodTongueWink2 } from './mood-tongue-wink-2.svelte';
|
|
3253
3266
|
export { default as IconMoodTongueWink } from './mood-tongue-wink.svelte';
|
|
@@ -3523,6 +3536,7 @@ export { default as IconPhoneOutgoing } from './phone-outgoing.svelte';
|
|
|
3523
3536
|
export { default as IconPhonePause } from './phone-pause.svelte';
|
|
3524
3537
|
export { default as IconPhonePlus } from './phone-plus.svelte';
|
|
3525
3538
|
export { default as IconPhoneRinging } from './phone-ringing.svelte';
|
|
3539
|
+
export { default as IconPhoneSpark } from './phone-spark.svelte';
|
|
3526
3540
|
export { default as IconPhoneX } from './phone-x.svelte';
|
|
3527
3541
|
export { default as IconPhone } from './phone.svelte';
|
|
3528
3542
|
export { default as IconPhotoAi } from './photo-ai.svelte';
|
|
@@ -3555,6 +3569,7 @@ export { default as IconPhotoSensor3 } from './photo-sensor-3.svelte';
|
|
|
3555
3569
|
export { default as IconPhotoSensor } from './photo-sensor.svelte';
|
|
3556
3570
|
export { default as IconPhotoShare } from './photo-share.svelte';
|
|
3557
3571
|
export { default as IconPhotoShield } from './photo-shield.svelte';
|
|
3572
|
+
export { default as IconPhotoSpark } from './photo-spark.svelte';
|
|
3558
3573
|
export { default as IconPhotoSquareRounded } from './photo-square-rounded.svelte';
|
|
3559
3574
|
export { default as IconPhotoStar } from './photo-star.svelte';
|
|
3560
3575
|
export { default as IconPhotoUp } from './photo-up.svelte';
|
|
@@ -3919,6 +3934,7 @@ export { default as IconServer2 } from './server-2.svelte';
|
|
|
3919
3934
|
export { default as IconServerBolt } from './server-bolt.svelte';
|
|
3920
3935
|
export { default as IconServerCog } from './server-cog.svelte';
|
|
3921
3936
|
export { default as IconServerOff } from './server-off.svelte';
|
|
3937
|
+
export { default as IconServerSpark } from './server-spark.svelte';
|
|
3922
3938
|
export { default as IconServer } from './server.svelte';
|
|
3923
3939
|
export { default as IconServicemark } from './servicemark.svelte';
|
|
3924
3940
|
export { default as IconSettings2 } from './settings-2.svelte';
|
|
@@ -3940,6 +3956,7 @@ export { default as IconSettingsPlus } from './settings-plus.svelte';
|
|
|
3940
3956
|
export { default as IconSettingsQuestion } from './settings-question.svelte';
|
|
3941
3957
|
export { default as IconSettingsSearch } from './settings-search.svelte';
|
|
3942
3958
|
export { default as IconSettingsShare } from './settings-share.svelte';
|
|
3959
|
+
export { default as IconSettingsSpark } from './settings-spark.svelte';
|
|
3943
3960
|
export { default as IconSettingsStar } from './settings-star.svelte';
|
|
3944
3961
|
export { default as IconSettingsUp } from './settings-up.svelte';
|
|
3945
3962
|
export { default as IconSettingsX } from './settings-x.svelte';
|
|
@@ -4328,6 +4345,7 @@ export { default as IconTablePlus } from './table-plus.svelte';
|
|
|
4328
4345
|
export { default as IconTableRow } from './table-row.svelte';
|
|
4329
4346
|
export { default as IconTableShare } from './table-share.svelte';
|
|
4330
4347
|
export { default as IconTableShortcut } from './table-shortcut.svelte';
|
|
4348
|
+
export { default as IconTableSpark } from './table-spark.svelte';
|
|
4331
4349
|
export { default as IconTable } from './table.svelte';
|
|
4332
4350
|
export { default as IconTagOff } from './tag-off.svelte';
|
|
4333
4351
|
export { default as IconTagStarred } from './tag-starred.svelte';
|
|
@@ -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": "M20 11.5v-2.5a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h7" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="input-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 InputSparkProps = typeof __propDef.props;
|
|
13
|
+
export type InputSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type InputSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class InputSpark extends SvelteComponentTyped<InputSparkProps, InputSparkEvents, InputSparkSlots> {
|
|
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": "M11.5 19h-6.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5" }], ["path", { "d": "M3 7l9 6l9 -6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="mail-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 MailSparkProps = typeof __propDef.props;
|
|
13
|
+
export type MailSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type MailSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class MailSpark extends SvelteComponentTyped<MailSparkProps, MailSparkEvents, MailSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M21 12a9 9 0 1 0 -8.994 9" }], ["path", { "d": "M9 10h.01" }], ["path", { "d": "M15 10h.01" }], ["path", { "d": "M9.5 15a3.5 3.5 0 0 0 5 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="mood-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 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": "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": "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",
|
|
@@ -427,6 +428,7 @@ export default [
|
|
|
427
428
|
"battery-eco",
|
|
428
429
|
"battery-exclamation",
|
|
429
430
|
"battery-off",
|
|
431
|
+
"battery-spark",
|
|
430
432
|
"battery-vertical-1",
|
|
431
433
|
"battery-vertical-2",
|
|
432
434
|
"battery-vertical-3",
|
|
@@ -1094,6 +1096,7 @@ export default [
|
|
|
1094
1096
|
"camera-search",
|
|
1095
1097
|
"camera-selfie",
|
|
1096
1098
|
"camera-share",
|
|
1099
|
+
"camera-spark",
|
|
1097
1100
|
"camera-star",
|
|
1098
1101
|
"camera-up",
|
|
1099
1102
|
"camera-x",
|
|
@@ -1635,6 +1638,7 @@ export default [
|
|
|
1635
1638
|
"cube-off",
|
|
1636
1639
|
"cube-plus",
|
|
1637
1640
|
"cube-send",
|
|
1641
|
+
"cube-spark",
|
|
1638
1642
|
"cube-unfolded",
|
|
1639
1643
|
"cube",
|
|
1640
1644
|
"cup-off",
|
|
@@ -2114,6 +2118,7 @@ export default [
|
|
|
2114
2118
|
"eye-question",
|
|
2115
2119
|
"eye-search",
|
|
2116
2120
|
"eye-share",
|
|
2121
|
+
"eye-spark",
|
|
2117
2122
|
"eye-star",
|
|
2118
2123
|
"eye-table",
|
|
2119
2124
|
"eye-up",
|
|
@@ -2188,11 +2193,13 @@ export default [
|
|
|
2188
2193
|
"file-shredder",
|
|
2189
2194
|
"file-signal",
|
|
2190
2195
|
"file-smile",
|
|
2196
|
+
"file-spark",
|
|
2191
2197
|
"file-spreadsheet",
|
|
2192
2198
|
"file-stack",
|
|
2193
2199
|
"file-star",
|
|
2194
2200
|
"file-symlink",
|
|
2195
2201
|
"file-text-ai",
|
|
2202
|
+
"file-text-spark",
|
|
2196
2203
|
"file-text",
|
|
2197
2204
|
"file-time",
|
|
2198
2205
|
"file-type-bmp",
|
|
@@ -2289,6 +2296,7 @@ export default [
|
|
|
2289
2296
|
"flag-question",
|
|
2290
2297
|
"flag-search",
|
|
2291
2298
|
"flag-share",
|
|
2299
|
+
"flag-spark",
|
|
2292
2300
|
"flag-star",
|
|
2293
2301
|
"flag-up",
|
|
2294
2302
|
"flag-x",
|
|
@@ -2502,6 +2510,7 @@ export default [
|
|
|
2502
2510
|
"heart-rate-monitor",
|
|
2503
2511
|
"heart-search",
|
|
2504
2512
|
"heart-share",
|
|
2513
|
+
"heart-spark",
|
|
2505
2514
|
"heart-star",
|
|
2506
2515
|
"heart-up",
|
|
2507
2516
|
"heart-x",
|
|
@@ -2611,6 +2620,7 @@ export default [
|
|
|
2611
2620
|
"home-share",
|
|
2612
2621
|
"home-shield",
|
|
2613
2622
|
"home-signal",
|
|
2623
|
+
"home-spark",
|
|
2614
2624
|
"home-star",
|
|
2615
2625
|
"home-stats",
|
|
2616
2626
|
"home-up",
|
|
@@ -2677,6 +2687,7 @@ export default [
|
|
|
2677
2687
|
"input-ai",
|
|
2678
2688
|
"input-check",
|
|
2679
2689
|
"input-search",
|
|
2690
|
+
"input-spark",
|
|
2680
2691
|
"input-x",
|
|
2681
2692
|
"invoice",
|
|
2682
2693
|
"ironing-1",
|
|
@@ -2979,6 +2990,7 @@ export default [
|
|
|
2979
2990
|
"mail-question",
|
|
2980
2991
|
"mail-search",
|
|
2981
2992
|
"mail-share",
|
|
2993
|
+
"mail-spark",
|
|
2982
2994
|
"mail-star",
|
|
2983
2995
|
"mail-up",
|
|
2984
2996
|
"mail-x",
|
|
@@ -3249,6 +3261,7 @@ export default [
|
|
|
3249
3261
|
"mood-smile-beam",
|
|
3250
3262
|
"mood-smile-dizzy",
|
|
3251
3263
|
"mood-smile",
|
|
3264
|
+
"mood-spark",
|
|
3252
3265
|
"mood-surprised",
|
|
3253
3266
|
"mood-tongue-wink-2",
|
|
3254
3267
|
"mood-tongue-wink",
|
|
@@ -3524,6 +3537,7 @@ export default [
|
|
|
3524
3537
|
"phone-pause",
|
|
3525
3538
|
"phone-plus",
|
|
3526
3539
|
"phone-ringing",
|
|
3540
|
+
"phone-spark",
|
|
3527
3541
|
"phone-x",
|
|
3528
3542
|
"phone",
|
|
3529
3543
|
"photo-ai",
|
|
@@ -3556,6 +3570,7 @@ export default [
|
|
|
3556
3570
|
"photo-sensor",
|
|
3557
3571
|
"photo-share",
|
|
3558
3572
|
"photo-shield",
|
|
3573
|
+
"photo-spark",
|
|
3559
3574
|
"photo-square-rounded",
|
|
3560
3575
|
"photo-star",
|
|
3561
3576
|
"photo-up",
|
|
@@ -3920,6 +3935,7 @@ export default [
|
|
|
3920
3935
|
"server-bolt",
|
|
3921
3936
|
"server-cog",
|
|
3922
3937
|
"server-off",
|
|
3938
|
+
"server-spark",
|
|
3923
3939
|
"server",
|
|
3924
3940
|
"servicemark",
|
|
3925
3941
|
"settings-2",
|
|
@@ -3941,6 +3957,7 @@ export default [
|
|
|
3941
3957
|
"settings-question",
|
|
3942
3958
|
"settings-search",
|
|
3943
3959
|
"settings-share",
|
|
3960
|
+
"settings-spark",
|
|
3944
3961
|
"settings-star",
|
|
3945
3962
|
"settings-up",
|
|
3946
3963
|
"settings-x",
|
|
@@ -4329,6 +4346,7 @@ export default [
|
|
|
4329
4346
|
"table-row",
|
|
4330
4347
|
"table-share",
|
|
4331
4348
|
"table-shortcut",
|
|
4349
|
+
"table-spark",
|
|
4332
4350
|
"table",
|
|
4333
4351
|
"tag-off",
|
|
4334
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",
|