chromia 0.0.18 → 0.0.20
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/HeartIcon.svelte +75 -0
- package/dist/icons/HeartIcon.svelte.d.ts +22 -0
- package/dist/icons/PinIcon.svelte +77 -0
- package/dist/icons/PinIcon.svelte.d.ts +22 -0
- package/dist/icons/StarIcon.svelte +92 -0
- package/dist/icons/StarIcon.svelte.d.ts +22 -0
- package/dist/index.d.ts +24 -22
- package/dist/index.js +24 -22
- package/package.json +1 -1
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<script>export let color = "#000";
|
|
2
|
+
export let gradient = {
|
|
3
|
+
colors: ["", ""],
|
|
4
|
+
direction: "bottom"
|
|
5
|
+
};
|
|
6
|
+
export let size = "1rem";
|
|
7
|
+
export let weight = 1;
|
|
8
|
+
const getGradientDirection = (direction) => {
|
|
9
|
+
switch (direction) {
|
|
10
|
+
case "top":
|
|
11
|
+
return { x1: "0%", y1: "100%", x2: "0%", y2: "0%" };
|
|
12
|
+
case "right":
|
|
13
|
+
return { x1: "0%", y1: "0%", x2: "100%", y2: "0%" };
|
|
14
|
+
case "bottom":
|
|
15
|
+
return { x1: "0%", y1: "0%", x2: "0%", y2: "100%" };
|
|
16
|
+
case "left":
|
|
17
|
+
return { x1: "100%", y1: "0%", x2: "0%", y2: "0%" };
|
|
18
|
+
default:
|
|
19
|
+
return { x1: "0%", y1: "0%", x2: "0%", y2: "100%" };
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
{#if gradient.colors[1] !== ""}
|
|
25
|
+
<svg
|
|
26
|
+
width="16"
|
|
27
|
+
height="15"
|
|
28
|
+
viewBox="0 0 16 15"
|
|
29
|
+
fill="none"
|
|
30
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
31
|
+
style="width: {size}; height: {size};"
|
|
32
|
+
>
|
|
33
|
+
<path
|
|
34
|
+
d="M13.1728 1.55738C12.7046 1.32994 11.8008 1.17273 11.2975 1.17273C9.79715 1.17273 8.76648 2.59473 8.04853 3.62048C7.33057 2.59488 6.5552 1.94203 5.6713 1.47374C5.10314 1.17273 3.81814 1.17273 3.15726 1.47374C1.20848 2.36134 -0.0664515 5.496 1.92062 7.96605C4.92119 11.1737 5.29627 11.5583 7.78905 14.044C7.83037 14.067 7.87623 14.2091 7.92146 14.2091C7.96494 14.2091 8.00869 14.1985 8.04853 14.1773C10.9224 11.5583 10.9224 11.5583 14.2981 8.09647C16.1735 5.78856 15.0483 2.46827 13.1728 1.55738Z"
|
|
35
|
+
stroke="url(#grad-Heart)"
|
|
36
|
+
stroke-width={weight}
|
|
37
|
+
stroke-linejoin="round"
|
|
38
|
+
/>
|
|
39
|
+
|
|
40
|
+
<defs>
|
|
41
|
+
<linearGradient
|
|
42
|
+
id="grad-Heart"
|
|
43
|
+
x1={getGradientDirection(gradient.direction).x1}
|
|
44
|
+
y1={getGradientDirection(gradient.direction).y1}
|
|
45
|
+
x2={getGradientDirection(gradient.direction).x2}
|
|
46
|
+
y2={getGradientDirection(gradient.direction).y2}
|
|
47
|
+
>
|
|
48
|
+
<stop
|
|
49
|
+
offset="0%"
|
|
50
|
+
style="stop-color:{gradient.colors[0]};stop-opacity:1"
|
|
51
|
+
/>
|
|
52
|
+
<stop
|
|
53
|
+
offset="100%"
|
|
54
|
+
style="stop-color:{gradient.colors[1]};stop-opacity:1"
|
|
55
|
+
/>
|
|
56
|
+
</linearGradient>
|
|
57
|
+
</defs>
|
|
58
|
+
</svg>
|
|
59
|
+
{:else}
|
|
60
|
+
<svg
|
|
61
|
+
width="16"
|
|
62
|
+
height="15"
|
|
63
|
+
viewBox="0 0 16 15"
|
|
64
|
+
fill="none"
|
|
65
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
66
|
+
style="width: {size}; height: {size};"
|
|
67
|
+
>
|
|
68
|
+
<path
|
|
69
|
+
d="M13.1728 1.55738C12.7046 1.32994 11.8008 1.17273 11.2975 1.17273C9.79715 1.17273 8.76648 2.59473 8.04853 3.62048C7.33057 2.59488 6.5552 1.94203 5.6713 1.47374C5.10314 1.17273 3.81814 1.17273 3.15726 1.47374C1.20848 2.36134 -0.0664515 5.496 1.92062 7.96605C4.92119 11.1737 5.29627 11.5583 7.78905 14.044C7.83037 14.067 7.87623 14.2091 7.92146 14.2091C7.96494 14.2091 8.00869 14.1985 8.04853 14.1773C10.9224 11.5583 10.9224 11.5583 14.2981 8.09647C16.1735 5.78856 15.0483 2.46827 13.1728 1.55738Z"
|
|
70
|
+
stroke={color}
|
|
71
|
+
stroke-width={weight}
|
|
72
|
+
stroke-linejoin="round"
|
|
73
|
+
/>
|
|
74
|
+
</svg>
|
|
75
|
+
{/if}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
color?: string | undefined;
|
|
5
|
+
gradient?: {
|
|
6
|
+
colors: [string, string];
|
|
7
|
+
direction: "top" | "right" | "bottom" | "left";
|
|
8
|
+
} | undefined;
|
|
9
|
+
size?: string | undefined;
|
|
10
|
+
weight?: number | undefined;
|
|
11
|
+
};
|
|
12
|
+
events: {
|
|
13
|
+
[evt: string]: CustomEvent<any>;
|
|
14
|
+
};
|
|
15
|
+
slots: {};
|
|
16
|
+
};
|
|
17
|
+
export type HeartIconProps = typeof __propDef.props;
|
|
18
|
+
export type HeartIconEvents = typeof __propDef.events;
|
|
19
|
+
export type HeartIconSlots = typeof __propDef.slots;
|
|
20
|
+
export default class HeartIcon extends SvelteComponent<HeartIconProps, HeartIconEvents, HeartIconSlots> {
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
<script>export let color = "#000";
|
|
2
|
+
export let gradient = {
|
|
3
|
+
colors: ["", ""],
|
|
4
|
+
direction: "bottom"
|
|
5
|
+
};
|
|
6
|
+
export let size = "1rem";
|
|
7
|
+
export let weight = 1;
|
|
8
|
+
const getGradientDirection = (direction) => {
|
|
9
|
+
switch (direction) {
|
|
10
|
+
case "top":
|
|
11
|
+
return { x1: "0%", y1: "100%", x2: "0%", y2: "0%" };
|
|
12
|
+
case "right":
|
|
13
|
+
return { x1: "0%", y1: "0%", x2: "100%", y2: "0%" };
|
|
14
|
+
case "bottom":
|
|
15
|
+
return { x1: "0%", y1: "0%", x2: "0%", y2: "100%" };
|
|
16
|
+
case "left":
|
|
17
|
+
return { x1: "100%", y1: "0%", x2: "0%", y2: "0%" };
|
|
18
|
+
default:
|
|
19
|
+
return { x1: "0%", y1: "0%", x2: "0%", y2: "100%" };
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
{#if gradient.colors[1] !== ""}
|
|
25
|
+
<svg
|
|
26
|
+
width="12"
|
|
27
|
+
height="12"
|
|
28
|
+
viewBox="0 0 12 12"
|
|
29
|
+
fill="none"
|
|
30
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
31
|
+
style="width: {size}; height: {size};"
|
|
32
|
+
>
|
|
33
|
+
<path
|
|
34
|
+
d="M3.10195 7.61083C2.17196 8.89591 0.342417 11.4458 0.464161 11.3646C0.585904 11.2834 3.10758 9.61735 4.3532 8.79445M3.93432 4.73632L3.45703 4.26287L2.00287 5.58177L6.28082 9.8428L7.66735 8.43937L6.88954 7.66781M3.93432 4.73632C5.52519 4.41457 5.9823 3.82012 6.28082 2.26762M3.93432 4.73632L6.88954 7.66781M6.88954 7.66781C6.73842 6.86624 8.33011 5.16994 9.35823 5.31122M5.79046 1.79418C5.89868 1.87534 8.75515 4.67996 10.1699 6.07212C10.6489 5.63813 11.5936 4.7397 11.5395 4.61796C11.4854 4.49622 8.67624 1.79418 7.27844 0.458374L5.79046 1.79418Z"
|
|
35
|
+
stroke="url(#grad-Pen)"
|
|
36
|
+
stroke-width={weight}
|
|
37
|
+
stroke-linecap="round"
|
|
38
|
+
stroke-linejoin="round"
|
|
39
|
+
/>
|
|
40
|
+
|
|
41
|
+
<defs>
|
|
42
|
+
<linearGradient
|
|
43
|
+
id="grad-Pen"
|
|
44
|
+
x1={getGradientDirection(gradient.direction).x1}
|
|
45
|
+
y1={getGradientDirection(gradient.direction).y1}
|
|
46
|
+
x2={getGradientDirection(gradient.direction).x2}
|
|
47
|
+
y2={getGradientDirection(gradient.direction).y2}
|
|
48
|
+
>
|
|
49
|
+
<stop
|
|
50
|
+
offset="0%"
|
|
51
|
+
style="stop-color:{gradient.colors[0]};stop-opacity:1"
|
|
52
|
+
/>
|
|
53
|
+
<stop
|
|
54
|
+
offset="100%"
|
|
55
|
+
style="stop-color:{gradient.colors[1]};stop-opacity:1"
|
|
56
|
+
/>
|
|
57
|
+
</linearGradient>
|
|
58
|
+
</defs>
|
|
59
|
+
</svg>
|
|
60
|
+
{:else}
|
|
61
|
+
<svg
|
|
62
|
+
width="12"
|
|
63
|
+
height="12"
|
|
64
|
+
viewBox="0 0 12 12"
|
|
65
|
+
fill="none"
|
|
66
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
67
|
+
style="width: {size}; height: {size};"
|
|
68
|
+
>
|
|
69
|
+
<path
|
|
70
|
+
d="M3.10195 7.61083C2.17196 8.89591 0.342417 11.4458 0.464161 11.3646C0.585904 11.2834 3.10758 9.61735 4.3532 8.79445M3.93432 4.73632L3.45703 4.26287L2.00287 5.58177L6.28082 9.8428L7.66735 8.43937L6.88954 7.66781M3.93432 4.73632C5.52519 4.41457 5.9823 3.82012 6.28082 2.26762M3.93432 4.73632L6.88954 7.66781M6.88954 7.66781C6.73842 6.86624 8.33011 5.16994 9.35823 5.31122M5.79046 1.79418C5.89868 1.87534 8.75515 4.67996 10.1699 6.07212C10.6489 5.63813 11.5936 4.7397 11.5395 4.61796C11.4854 4.49622 8.67624 1.79418 7.27844 0.458374L5.79046 1.79418Z"
|
|
71
|
+
stroke={color}
|
|
72
|
+
stroke-width={weight}
|
|
73
|
+
stroke-linecap="round"
|
|
74
|
+
stroke-linejoin="round"
|
|
75
|
+
/>
|
|
76
|
+
</svg>
|
|
77
|
+
{/if}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
color?: string | undefined;
|
|
5
|
+
gradient?: {
|
|
6
|
+
colors: [string, string];
|
|
7
|
+
direction: "top" | "right" | "bottom" | "left";
|
|
8
|
+
} | undefined;
|
|
9
|
+
size?: string | undefined;
|
|
10
|
+
weight?: number | undefined;
|
|
11
|
+
};
|
|
12
|
+
events: {
|
|
13
|
+
[evt: string]: CustomEvent<any>;
|
|
14
|
+
};
|
|
15
|
+
slots: {};
|
|
16
|
+
};
|
|
17
|
+
export type PinIconProps = typeof __propDef.props;
|
|
18
|
+
export type PinIconEvents = typeof __propDef.events;
|
|
19
|
+
export type PinIconSlots = typeof __propDef.slots;
|
|
20
|
+
export default class PinIcon extends SvelteComponent<PinIconProps, PinIconEvents, PinIconSlots> {
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
<script>export let color = "#000";
|
|
2
|
+
export let gradient = {
|
|
3
|
+
colors: ["", ""],
|
|
4
|
+
direction: "bottom"
|
|
5
|
+
};
|
|
6
|
+
export let size = "1rem";
|
|
7
|
+
export let weight = 1;
|
|
8
|
+
const getGradientDirection = (direction) => {
|
|
9
|
+
switch (direction) {
|
|
10
|
+
case "top":
|
|
11
|
+
return { x1: "0%", y1: "100%", x2: "0%", y2: "0%" };
|
|
12
|
+
case "right":
|
|
13
|
+
return { x1: "0%", y1: "0%", x2: "100%", y2: "0%" };
|
|
14
|
+
case "bottom":
|
|
15
|
+
return { x1: "0%", y1: "0%", x2: "0%", y2: "100%" };
|
|
16
|
+
case "left":
|
|
17
|
+
return { x1: "100%", y1: "0%", x2: "0%", y2: "0%" };
|
|
18
|
+
default:
|
|
19
|
+
return { x1: "0%", y1: "0%", x2: "0%", y2: "100%" };
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
{#if gradient.colors[1] !== ""}
|
|
25
|
+
<svg
|
|
26
|
+
width="17"
|
|
27
|
+
height="16"
|
|
28
|
+
viewBox="0 0 17 16"
|
|
29
|
+
fill="none"
|
|
30
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
31
|
+
style="width: {size}; height: {size};"
|
|
32
|
+
>
|
|
33
|
+
<path
|
|
34
|
+
d="M7.7108 1.03542C7.86572 0.72151 8.31334 0.72151 8.46827 1.03542L10.4738 5.09901C10.5353 5.22367 10.6542 5.31007 10.7918 5.33006L15.2762 5.98168C15.6226 6.03202 15.761 6.45774 15.5103 6.70208L12.2653 9.86515C12.1658 9.96218 12.1203 10.102 12.1438 10.239L12.9099 14.7053C12.9691 15.0503 12.6069 15.3134 12.2971 15.1505L8.28607 13.0418C8.16303 12.9771 8.01604 12.9771 7.893 13.0418L3.88199 15.1505C3.57214 15.3134 3.21001 15.0503 3.26918 14.7053L4.03522 10.239C4.05871 10.102 4.01329 9.96218 3.91375 9.86515L0.668778 6.70208C0.418106 6.45774 0.55643 6.03202 0.902849 5.98168L5.38729 5.33006C5.52485 5.31007 5.64377 5.22367 5.70529 5.09901L7.7108 1.03542Z"
|
|
35
|
+
stroke="url(#grad-Star)"
|
|
36
|
+
stroke-width={weight}
|
|
37
|
+
stroke-linejoin="round"
|
|
38
|
+
fill="url(#gradFill-Star)"
|
|
39
|
+
/>
|
|
40
|
+
|
|
41
|
+
<defs>
|
|
42
|
+
<linearGradient
|
|
43
|
+
id="grad-Star"
|
|
44
|
+
x1={getGradientDirection(gradient.direction).x1}
|
|
45
|
+
y1={getGradientDirection(gradient.direction).y1}
|
|
46
|
+
x2={getGradientDirection(gradient.direction).x2}
|
|
47
|
+
y2={getGradientDirection(gradient.direction).y2}
|
|
48
|
+
>
|
|
49
|
+
<stop
|
|
50
|
+
offset="0%"
|
|
51
|
+
style="stop-color:{gradient.colors[0]};stop-opacity:1"
|
|
52
|
+
/>
|
|
53
|
+
<stop
|
|
54
|
+
offset="100%"
|
|
55
|
+
style="stop-color:{gradient.colors[1]};stop-opacity:1"
|
|
56
|
+
/>
|
|
57
|
+
</linearGradient>
|
|
58
|
+
<linearGradient
|
|
59
|
+
id="gradFill-Star"
|
|
60
|
+
x1={getGradientDirection(gradient.direction).x1}
|
|
61
|
+
y1={getGradientDirection(gradient.direction).y1}
|
|
62
|
+
x2={getGradientDirection(gradient.direction).x2}
|
|
63
|
+
y2={getGradientDirection(gradient.direction).y2}
|
|
64
|
+
>
|
|
65
|
+
<stop
|
|
66
|
+
offset="0%"
|
|
67
|
+
style="stop-color:{gradient.colors[0]};stop-opacity:1"
|
|
68
|
+
/>
|
|
69
|
+
<stop
|
|
70
|
+
offset="100%"
|
|
71
|
+
style="stop-color:{gradient.colors[1]};stop-opacity:1"
|
|
72
|
+
/>
|
|
73
|
+
</linearGradient>
|
|
74
|
+
</defs>
|
|
75
|
+
</svg>
|
|
76
|
+
{:else}
|
|
77
|
+
<svg
|
|
78
|
+
width="17"
|
|
79
|
+
height="16"
|
|
80
|
+
viewBox="0 0 17 16"
|
|
81
|
+
fill="none"
|
|
82
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
83
|
+
style="width: {size}; height: {size};"
|
|
84
|
+
>
|
|
85
|
+
<path
|
|
86
|
+
d="M7.7108 1.03542C7.86572 0.72151 8.31334 0.72151 8.46827 1.03542L10.4738 5.09901C10.5353 5.22367 10.6542 5.31007 10.7918 5.33006L15.2762 5.98168C15.6226 6.03202 15.761 6.45774 15.5103 6.70208L12.2653 9.86515C12.1658 9.96218 12.1203 10.102 12.1438 10.239L12.9099 14.7053C12.9691 15.0503 12.6069 15.3134 12.2971 15.1505L8.28607 13.0418C8.16303 12.9771 8.01604 12.9771 7.893 13.0418L3.88199 15.1505C3.57214 15.3134 3.21001 15.0503 3.26918 14.7053L4.03522 10.239C4.05871 10.102 4.01329 9.96218 3.91375 9.86515L0.668778 6.702008C0.418106 6.45774 0.55643 6.03202 0.902849 5.98168L5.38729 5.33006C5.52485 5.31007 5.64377 5.22367 5.70529 5.09901L7.7108 1.03542Z"
|
|
87
|
+
stroke={color}
|
|
88
|
+
stroke-width={weight}
|
|
89
|
+
stroke-linejoin="round"
|
|
90
|
+
/>
|
|
91
|
+
</svg>
|
|
92
|
+
{/if}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
color?: string | undefined;
|
|
5
|
+
gradient?: {
|
|
6
|
+
colors: [string, string];
|
|
7
|
+
direction: "top" | "right" | "bottom" | "left";
|
|
8
|
+
} | undefined;
|
|
9
|
+
size?: string | undefined;
|
|
10
|
+
weight?: number | undefined;
|
|
11
|
+
};
|
|
12
|
+
events: {
|
|
13
|
+
[evt: string]: CustomEvent<any>;
|
|
14
|
+
};
|
|
15
|
+
slots: {};
|
|
16
|
+
};
|
|
17
|
+
export type StarIconProps = typeof __propDef.props;
|
|
18
|
+
export type StarIconEvents = typeof __propDef.events;
|
|
19
|
+
export type StarIconSlots = typeof __propDef.slots;
|
|
20
|
+
export default class StarIcon extends SvelteComponent<StarIconProps, StarIconEvents, StarIconSlots> {
|
|
21
|
+
}
|
|
22
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -8,9 +8,13 @@ import ArrowSwitchIcon from "./icons/ArrowSwitchIcon.svelte";
|
|
|
8
8
|
import ArrowUpIcon from "./icons/ArrowUpIcon.svelte";
|
|
9
9
|
import BellIcon from "./icons/BellIcon.svelte";
|
|
10
10
|
import BezierIcon from "./icons/BezierIcon.svelte";
|
|
11
|
+
import BoxIcon from "./icons/BoxIcon.svelte";
|
|
12
|
+
import BrandIcon from "./icons/BrandIcon.svelte";
|
|
11
13
|
import CalendarIcon from "./icons/CalendarIcon.svelte";
|
|
12
14
|
import CameraIcon from "./icons/CameraIcon.svelte";
|
|
15
|
+
import CategoryIcon from "./icons/CategoryIcon.svelte";
|
|
13
16
|
import CertificateIcon from "./icons/CertificateIcon.svelte";
|
|
17
|
+
import ChartTrendUp from "./icons/ChartTrendUp.svelte";
|
|
14
18
|
import CheckCircleIcon from "./icons/CheckCircleIcon.svelte";
|
|
15
19
|
import CheckIcon from "./icons/CheckIcon.svelte";
|
|
16
20
|
import ChevronDownIcon from "./icons/ChevronDownIcon.svelte";
|
|
@@ -18,50 +22,48 @@ import ChevronUpIcon from "./icons/ChevronUpIcon.svelte";
|
|
|
18
22
|
import ClockIcon from "./icons/ClockIcon.svelte";
|
|
19
23
|
import CloseIcon from "./icons/CloseIcon.svelte";
|
|
20
24
|
import CollectionIcon from "./icons/CollectionIcon.svelte";
|
|
25
|
+
import ColumnHorizontal from "./icons/ColumnHorizontal.svelte";
|
|
21
26
|
import CopyIcon from "./icons/CopyIcon.svelte";
|
|
27
|
+
import DarkIcon from "./icons/DarkIcon.svelte";
|
|
28
|
+
import DownloadCloudIcon from "./icons/DownloadCloudIcon.svelte";
|
|
29
|
+
import DownloadIcon from "./icons/DownloadIcon.svelte";
|
|
22
30
|
import EditIcon from "./icons/EditIcon.svelte";
|
|
31
|
+
import EyeClosedIcon from "./icons/EyeClosedIcon.svelte";
|
|
32
|
+
import EyeOpenIcon from "./icons/EyeOpenIcon.svelte";
|
|
23
33
|
import FavoriteIcon from "./icons/FavoriteIcon.svelte";
|
|
24
34
|
import FilterIcon from "./icons/FilterIcon.svelte";
|
|
25
35
|
import FlameIcon from "./icons/FlameIcon.svelte";
|
|
36
|
+
import FlipLeftIcon from "./icons/FlipLeftIcon.svelte";
|
|
26
37
|
import FolderIcon from "./icons/FolderIcon.svelte";
|
|
27
38
|
import FolderPlusIcon from "./icons/FolderPlusIcon.svelte";
|
|
28
39
|
import GridIcon from "./icons/GridIcon.svelte";
|
|
40
|
+
import HomeIcon from "./icons/HomeIcon.svelte";
|
|
29
41
|
import HourglassIcon from "./icons/HourglassIcon.svelte";
|
|
42
|
+
import Icon from "./icons/Icon.svelte";
|
|
43
|
+
import LightBulb01Icon from "./icons/LightBulb01Icon.svelte";
|
|
44
|
+
import LightIcon from "./icons/LightIcon.svelte";
|
|
30
45
|
import LockIcon from "./icons/LockIcon.svelte";
|
|
31
46
|
import LogoutIcon from "./icons/LogoutIcon.svelte";
|
|
47
|
+
import MaterialIcon from "./icons/MaterialIcon.svelte";
|
|
32
48
|
import MenuIcon from "./icons/MenuIcon.svelte";
|
|
33
49
|
import NoFolder from "./icons/NoFolder.svelte";
|
|
34
50
|
import NotificationIcon from "./icons/NotificationIcon.svelte";
|
|
35
51
|
import OverlapIcon from "./icons/OverlapIcon.svelte";
|
|
52
|
+
import PlayIcon from "./icons/PlayIcon.svelte";
|
|
53
|
+
import ReloadIcon from "./icons/ReloadIcon.svelte";
|
|
54
|
+
import ReportIcon from "./icons/ReportIcon.svelte";
|
|
36
55
|
import SearchIcon from "./icons/SearchIcon.svelte";
|
|
37
56
|
import SendIcon from "./icons/SendIcon.svelte";
|
|
57
|
+
import SettingsIcon from "./icons/SettingsIcon.svelte";
|
|
38
58
|
import TeamUserIcon from "./icons/TeamUserIcon.svelte";
|
|
59
|
+
import TextureIcon from "./icons/TextureIcon.svelte";
|
|
39
60
|
import TrashIcon from "./icons/TrashIcon.svelte";
|
|
40
|
-
import UploadIcon from "./icons/UploadIcon.svelte";
|
|
41
|
-
import UserProfileIcon from "./icons/UserProfileIcon.svelte";
|
|
42
|
-
import EyeClosedIcon from "./icons/EyeClosedIcon.svelte";
|
|
43
|
-
import EyeOpenIcon from "./icons/EyeOpenIcon.svelte";
|
|
44
|
-
import Icon from "./icons/Icon.svelte";
|
|
45
|
-
import MaterialIcon from "./icons/MaterialIcon.svelte";
|
|
46
61
|
import TrendUpIcon from "./icons/TrendUpIcon.svelte";
|
|
47
|
-
import ChartTrendUp from "./icons/ChartTrendUp.svelte";
|
|
48
|
-
import HomeIcon from "./icons/HomeIcon.svelte";
|
|
49
|
-
import FlipLeftIcon from "./icons/FlipLeftIcon.svelte";
|
|
50
|
-
import ColumnHorizontal from "./icons/ColumnHorizontal.svelte";
|
|
51
|
-
import ReportIcon from "./icons/ReportIcon.svelte";
|
|
52
62
|
import UpgradeIcon from "./icons/UpgradeIcon.svelte";
|
|
53
|
-
import
|
|
54
|
-
import
|
|
55
|
-
import BrandIcon from "./icons/BrandIcon.svelte";
|
|
56
|
-
import CategoryIcon from "./icons/CategoryIcon.svelte";
|
|
57
|
-
import SettingsIcon from "./icons/SettingsIcon.svelte";
|
|
58
|
-
import DownloadCloudIcon from "./icons/DownloadCloudIcon.svelte";
|
|
59
|
-
import PlayIcon from "./icons/PlayIcon.svelte";
|
|
60
|
-
import ReloadIcon from "./icons/ReloadIcon.svelte";
|
|
61
|
-
import TextureIcon from "./icons/TextureIcon.svelte";
|
|
63
|
+
import UploadIcon from "./icons/UploadIcon.svelte";
|
|
64
|
+
import UserProfileIcon from "./icons/UserProfileIcon.svelte";
|
|
62
65
|
import ViewModeIcon from "./icons/ViewModeIcon.svelte";
|
|
63
66
|
import ZoomIcon from "./icons/ZoomIcon.svelte";
|
|
64
|
-
import DownloadIcon from "./icons/DownloadIcon.svelte";
|
|
65
67
|
import type IconProps from "./types/IconProps.ts";
|
|
66
|
-
export { AddImageIcon, AddSquareIcon, AlertCircleIcon, AnnotationXIcon, ArrowCalendarIcon, ArrowLeftIcon, ArrowSwitchIcon, ArrowUpIcon,
|
|
68
|
+
export { AddImageIcon, AddSquareIcon, AlertCircleIcon, AnnotationXIcon, ArrowCalendarIcon, ArrowLeftIcon, ArrowSwitchIcon, ArrowUpIcon, BellIcon, BezierIcon, BoxIcon, BrandIcon, CalendarIcon, CameraIcon, CategoryIcon, CertificateIcon, ChartTrendUp, CheckCircleIcon, CheckIcon, ChevronDownIcon, ChevronUpIcon, ClockIcon, CloseIcon, CollectionIcon, ColumnHorizontal, CopyIcon, DarkIcon, DownloadCloudIcon, DownloadIcon, EditIcon, EyeClosedIcon, EyeOpenIcon, FavoriteIcon, FilterIcon, FlameIcon, FlipLeftIcon, FolderIcon, FolderPlusIcon, GridIcon, HomeIcon, HourglassIcon, Icon, LightBulb01Icon, LightIcon, LockIcon, LogoutIcon, MaterialIcon, MenuIcon, NoFolder, NotificationIcon, OverlapIcon, PlayIcon, ReloadIcon, ReportIcon, SearchIcon, SendIcon, SettingsIcon, TeamUserIcon, TextureIcon, TrashIcon, TrendUpIcon, UpgradeIcon, UploadIcon, UserProfileIcon, ViewModeIcon, ZoomIcon, };
|
|
67
69
|
export type { IconProps };
|
package/dist/index.js
CHANGED
|
@@ -8,9 +8,13 @@ import ArrowSwitchIcon from "./icons/ArrowSwitchIcon.svelte";
|
|
|
8
8
|
import ArrowUpIcon from "./icons/ArrowUpIcon.svelte";
|
|
9
9
|
import BellIcon from "./icons/BellIcon.svelte";
|
|
10
10
|
import BezierIcon from "./icons/BezierIcon.svelte";
|
|
11
|
+
import BoxIcon from "./icons/BoxIcon.svelte";
|
|
12
|
+
import BrandIcon from "./icons/BrandIcon.svelte";
|
|
11
13
|
import CalendarIcon from "./icons/CalendarIcon.svelte";
|
|
12
14
|
import CameraIcon from "./icons/CameraIcon.svelte";
|
|
15
|
+
import CategoryIcon from "./icons/CategoryIcon.svelte";
|
|
13
16
|
import CertificateIcon from "./icons/CertificateIcon.svelte";
|
|
17
|
+
import ChartTrendUp from "./icons/ChartTrendUp.svelte";
|
|
14
18
|
import CheckCircleIcon from "./icons/CheckCircleIcon.svelte";
|
|
15
19
|
import CheckIcon from "./icons/CheckIcon.svelte";
|
|
16
20
|
import ChevronDownIcon from "./icons/ChevronDownIcon.svelte";
|
|
@@ -18,48 +22,46 @@ import ChevronUpIcon from "./icons/ChevronUpIcon.svelte";
|
|
|
18
22
|
import ClockIcon from "./icons/ClockIcon.svelte";
|
|
19
23
|
import CloseIcon from "./icons/CloseIcon.svelte";
|
|
20
24
|
import CollectionIcon from "./icons/CollectionIcon.svelte";
|
|
25
|
+
import ColumnHorizontal from "./icons/ColumnHorizontal.svelte";
|
|
21
26
|
import CopyIcon from "./icons/CopyIcon.svelte";
|
|
27
|
+
import DarkIcon from "./icons/DarkIcon.svelte";
|
|
28
|
+
import DownloadCloudIcon from "./icons/DownloadCloudIcon.svelte";
|
|
29
|
+
import DownloadIcon from "./icons/DownloadIcon.svelte";
|
|
22
30
|
import EditIcon from "./icons/EditIcon.svelte";
|
|
31
|
+
import EyeClosedIcon from "./icons/EyeClosedIcon.svelte";
|
|
32
|
+
import EyeOpenIcon from "./icons/EyeOpenIcon.svelte";
|
|
23
33
|
import FavoriteIcon from "./icons/FavoriteIcon.svelte";
|
|
24
34
|
import FilterIcon from "./icons/FilterIcon.svelte";
|
|
25
35
|
import FlameIcon from "./icons/FlameIcon.svelte";
|
|
36
|
+
import FlipLeftIcon from "./icons/FlipLeftIcon.svelte";
|
|
26
37
|
import FolderIcon from "./icons/FolderIcon.svelte";
|
|
27
38
|
import FolderPlusIcon from "./icons/FolderPlusIcon.svelte";
|
|
28
39
|
import GridIcon from "./icons/GridIcon.svelte";
|
|
40
|
+
import HomeIcon from "./icons/HomeIcon.svelte";
|
|
29
41
|
import HourglassIcon from "./icons/HourglassIcon.svelte";
|
|
42
|
+
import Icon from "./icons/Icon.svelte";
|
|
43
|
+
import LightBulb01Icon from "./icons/LightBulb01Icon.svelte";
|
|
44
|
+
import LightIcon from "./icons/LightIcon.svelte";
|
|
30
45
|
import LockIcon from "./icons/LockIcon.svelte";
|
|
31
46
|
import LogoutIcon from "./icons/LogoutIcon.svelte";
|
|
47
|
+
import MaterialIcon from "./icons/MaterialIcon.svelte";
|
|
32
48
|
import MenuIcon from "./icons/MenuIcon.svelte";
|
|
33
49
|
import NoFolder from "./icons/NoFolder.svelte";
|
|
34
50
|
import NotificationIcon from "./icons/NotificationIcon.svelte";
|
|
35
51
|
import OverlapIcon from "./icons/OverlapIcon.svelte";
|
|
52
|
+
import PlayIcon from "./icons/PlayIcon.svelte";
|
|
53
|
+
import ReloadIcon from "./icons/ReloadIcon.svelte";
|
|
54
|
+
import ReportIcon from "./icons/ReportIcon.svelte";
|
|
36
55
|
import SearchIcon from "./icons/SearchIcon.svelte";
|
|
37
56
|
import SendIcon from "./icons/SendIcon.svelte";
|
|
57
|
+
import SettingsIcon from "./icons/SettingsIcon.svelte";
|
|
38
58
|
import TeamUserIcon from "./icons/TeamUserIcon.svelte";
|
|
59
|
+
import TextureIcon from "./icons/TextureIcon.svelte";
|
|
39
60
|
import TrashIcon from "./icons/TrashIcon.svelte";
|
|
40
|
-
import UploadIcon from "./icons/UploadIcon.svelte";
|
|
41
|
-
import UserProfileIcon from "./icons/UserProfileIcon.svelte";
|
|
42
|
-
import EyeClosedIcon from "./icons/EyeClosedIcon.svelte";
|
|
43
|
-
import EyeOpenIcon from "./icons/EyeOpenIcon.svelte";
|
|
44
|
-
import Icon from "./icons/Icon.svelte";
|
|
45
|
-
import MaterialIcon from "./icons/MaterialIcon.svelte";
|
|
46
61
|
import TrendUpIcon from "./icons/TrendUpIcon.svelte";
|
|
47
|
-
import ChartTrendUp from "./icons/ChartTrendUp.svelte";
|
|
48
|
-
import HomeIcon from "./icons/HomeIcon.svelte";
|
|
49
|
-
import FlipLeftIcon from "./icons/FlipLeftIcon.svelte";
|
|
50
|
-
import ColumnHorizontal from "./icons/ColumnHorizontal.svelte";
|
|
51
|
-
import ReportIcon from "./icons/ReportIcon.svelte";
|
|
52
62
|
import UpgradeIcon from "./icons/UpgradeIcon.svelte";
|
|
53
|
-
import
|
|
54
|
-
import
|
|
55
|
-
import BrandIcon from "./icons/BrandIcon.svelte";
|
|
56
|
-
import CategoryIcon from "./icons/CategoryIcon.svelte";
|
|
57
|
-
import SettingsIcon from "./icons/SettingsIcon.svelte";
|
|
58
|
-
import DownloadCloudIcon from "./icons/DownloadCloudIcon.svelte";
|
|
59
|
-
import PlayIcon from "./icons/PlayIcon.svelte";
|
|
60
|
-
import ReloadIcon from "./icons/ReloadIcon.svelte";
|
|
61
|
-
import TextureIcon from "./icons/TextureIcon.svelte";
|
|
63
|
+
import UploadIcon from "./icons/UploadIcon.svelte";
|
|
64
|
+
import UserProfileIcon from "./icons/UserProfileIcon.svelte";
|
|
62
65
|
import ViewModeIcon from "./icons/ViewModeIcon.svelte";
|
|
63
66
|
import ZoomIcon from "./icons/ZoomIcon.svelte";
|
|
64
|
-
|
|
65
|
-
export { AddImageIcon, AddSquareIcon, AlertCircleIcon, AnnotationXIcon, ArrowCalendarIcon, ArrowLeftIcon, ArrowSwitchIcon, ArrowUpIcon, MaterialIcon, TrendUpIcon, ChartTrendUp, BellIcon, BezierIcon, CalendarIcon, CameraIcon, CertificateIcon, CheckCircleIcon, CheckIcon, ChevronDownIcon, ChevronUpIcon, ClockIcon, CloseIcon, CollectionIcon, CopyIcon, EditIcon, FavoriteIcon, FilterIcon, FlameIcon, FolderIcon, FolderPlusIcon, GridIcon, HourglassIcon, LockIcon, LogoutIcon, MenuIcon, NoFolder, NotificationIcon, OverlapIcon, SearchIcon, SendIcon, TeamUserIcon, TrashIcon, UploadIcon, UserProfileIcon, EyeClosedIcon, EyeOpenIcon, Icon, HomeIcon, FlipLeftIcon, ColumnHorizontal, ReportIcon, UpgradeIcon, DarkIcon, LightIcon, BrandIcon, CategoryIcon, SettingsIcon, DownloadCloudIcon, PlayIcon, ReloadIcon, TextureIcon, ViewModeIcon, ZoomIcon, DownloadIcon, };
|
|
67
|
+
export { AddImageIcon, AddSquareIcon, AlertCircleIcon, AnnotationXIcon, ArrowCalendarIcon, ArrowLeftIcon, ArrowSwitchIcon, ArrowUpIcon, BellIcon, BezierIcon, BoxIcon, BrandIcon, CalendarIcon, CameraIcon, CategoryIcon, CertificateIcon, ChartTrendUp, CheckCircleIcon, CheckIcon, ChevronDownIcon, ChevronUpIcon, ClockIcon, CloseIcon, CollectionIcon, ColumnHorizontal, CopyIcon, DarkIcon, DownloadCloudIcon, DownloadIcon, EditIcon, EyeClosedIcon, EyeOpenIcon, FavoriteIcon, FilterIcon, FlameIcon, FlipLeftIcon, FolderIcon, FolderPlusIcon, GridIcon, HomeIcon, HourglassIcon, Icon, LightBulb01Icon, LightIcon, LockIcon, LogoutIcon, MaterialIcon, MenuIcon, NoFolder, NotificationIcon, OverlapIcon, PlayIcon, ReloadIcon, ReportIcon, SearchIcon, SendIcon, SettingsIcon, TeamUserIcon, TextureIcon, TrashIcon, TrendUpIcon, UpgradeIcon, UploadIcon, UserProfileIcon, ViewModeIcon, ZoomIcon, };
|