chromia 0.1.16 → 0.1.18
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/AnnotationXIcon.svelte +9 -4
- package/dist/icons/LightBulb01Icon.svelte +9 -4
- package/dist/icons/SparkleIcon.svelte +9 -4
- package/dist/icons/TwoDIcon.svelte +82 -0
- package/dist/icons/TwoDIcon.svelte.d.ts +29 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ export let gradient = {
|
|
|
4
4
|
direction: "bottom"
|
|
5
5
|
};
|
|
6
6
|
export let size = "1rem";
|
|
7
|
+
export let fill = "none";
|
|
7
8
|
export let weight = 2;
|
|
8
9
|
const getGradientDirection = (direction) => {
|
|
9
10
|
switch (direction) {
|
|
@@ -27,9 +28,11 @@ export { className as class };
|
|
|
27
28
|
<svg
|
|
28
29
|
xmlns="http://www.w3.org/2000/svg"
|
|
29
30
|
class={className}
|
|
30
|
-
style="width: {size}; height: {size}; {!className
|
|
31
|
+
style="width: {size}; height: {size}; {!className
|
|
32
|
+
? `color: ${color};`
|
|
33
|
+
: ''}"
|
|
31
34
|
viewBox="0 0 46 46"
|
|
32
|
-
|
|
35
|
+
{fill}
|
|
33
36
|
>
|
|
34
37
|
<g id="id_AnnotationX">
|
|
35
38
|
<path
|
|
@@ -65,9 +68,11 @@ export { className as class };
|
|
|
65
68
|
<svg
|
|
66
69
|
xmlns="http://www.w3.org/2000/svg"
|
|
67
70
|
class={className}
|
|
68
|
-
style="width: {size}; height: {size}; {!className
|
|
71
|
+
style="width: {size}; height: {size}; {!className
|
|
72
|
+
? `color: ${color};`
|
|
73
|
+
: ''}"
|
|
69
74
|
viewBox="0 0 46 46"
|
|
70
|
-
|
|
75
|
+
{fill}
|
|
71
76
|
>
|
|
72
77
|
<g id="id_AnnotationX">
|
|
73
78
|
<path
|
|
@@ -4,6 +4,7 @@ export let gradient = {
|
|
|
4
4
|
direction: "bottom"
|
|
5
5
|
};
|
|
6
6
|
export let size = "1.5rem";
|
|
7
|
+
export let fill = "none";
|
|
7
8
|
export let weight = 2;
|
|
8
9
|
const getGradientDirection = (direction) => {
|
|
9
10
|
switch (direction) {
|
|
@@ -27,9 +28,11 @@ export { className as class };
|
|
|
27
28
|
<svg
|
|
28
29
|
xmlns="http://www.w3.org/2000/svg"
|
|
29
30
|
class={className}
|
|
30
|
-
style="width: {size}; height: {size}; {!className
|
|
31
|
+
style="width: {size}; height: {size}; {!className
|
|
32
|
+
? `color: ${color};`
|
|
33
|
+
: ''}"
|
|
31
34
|
viewBox="0 0 24 24"
|
|
32
|
-
|
|
35
|
+
{fill}
|
|
33
36
|
>
|
|
34
37
|
<path
|
|
35
38
|
d="M9.6 21.6H14.4M10.2 9.60002H13.8M6 8.40002C6 5.08632 8.68629 2.40002 12 2.40002C15.3137 2.40002 18 5.08632 18 8.40002C18 10.8604 16.5191 12.8742 14.4 13.8V17.4C14.4 18.0628 13.8627 18.6 13.2 18.6H10.8C10.1373 18.6 9.6 18.0628 9.6 17.4V13.9008C7.48091 12.9749 6 10.8604 6 8.40002Z"
|
|
@@ -61,9 +64,11 @@ export { className as class };
|
|
|
61
64
|
<svg
|
|
62
65
|
xmlns="http://www.w3.org/2000/svg"
|
|
63
66
|
class={className}
|
|
64
|
-
style="width: {size}; height: {size}; {!className
|
|
67
|
+
style="width: {size}; height: {size}; {!className
|
|
68
|
+
? `color: ${color};`
|
|
69
|
+
: ''}"
|
|
65
70
|
viewBox="0 0 24 24"
|
|
66
|
-
|
|
71
|
+
{fill}
|
|
67
72
|
>
|
|
68
73
|
<path
|
|
69
74
|
d="M9.6 21.6H14.4M10.2 9.60002H13.8M6 8.40002C6 5.08632 8.68629 2.40002 12 2.40002C15.3137 2.40002 18 5.08632 18 8.40002C18 10.8604 16.5191 12.8742 14.4 13.8V17.4C14.4 18.0628 13.8627 18.6 13.2 18.6H10.8C10.1373 18.6 9.6 18.0628 9.6 17.4V13.9008C7.48091 12.9749 6 10.8604 6 8.40002Z"
|
|
@@ -6,6 +6,7 @@ export let gradient = {
|
|
|
6
6
|
};
|
|
7
7
|
export let size = "1rem";
|
|
8
8
|
export let weight = 1;
|
|
9
|
+
export let fill = "none";
|
|
9
10
|
const getGradientDirection = (direction) => {
|
|
10
11
|
switch (direction) {
|
|
11
12
|
case "top":
|
|
@@ -28,9 +29,11 @@ export { className as class };
|
|
|
28
29
|
<svg
|
|
29
30
|
xmlns="http://www.w3.org/2000/svg"
|
|
30
31
|
class={className}
|
|
31
|
-
style="width: {size}; height: {size}; {!className
|
|
32
|
+
style="width: {size}; height: {size}; {!className
|
|
33
|
+
? `color: ${color};`
|
|
34
|
+
: ''}"
|
|
32
35
|
viewBox="0 0 14 14"
|
|
33
|
-
|
|
36
|
+
{fill}
|
|
34
37
|
>
|
|
35
38
|
<path
|
|
36
39
|
id="icon_Sparkle"
|
|
@@ -64,9 +67,11 @@ export { className as class };
|
|
|
64
67
|
<svg
|
|
65
68
|
xmlns="http://www.w3.org/2000/svg"
|
|
66
69
|
class={className}
|
|
67
|
-
style="width: {size}; height: {size}; {!className
|
|
70
|
+
style="width: {size}; height: {size}; {!className
|
|
71
|
+
? `color: ${color};`
|
|
72
|
+
: ''}"
|
|
68
73
|
viewBox="0 0 14 14"
|
|
69
|
-
|
|
74
|
+
{fill}
|
|
70
75
|
>
|
|
71
76
|
<path
|
|
72
77
|
id="icon_Sparkle"
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
<script>export let color = "currentColor";
|
|
2
|
+
export let gradient = {
|
|
3
|
+
colors: ["", ""],
|
|
4
|
+
direction: "bottom"
|
|
5
|
+
};
|
|
6
|
+
export let size = "1rem";
|
|
7
|
+
export let fill = "none";
|
|
8
|
+
export let weight = 1;
|
|
9
|
+
const getGradientDirection = (direction) => {
|
|
10
|
+
switch (direction) {
|
|
11
|
+
case "top":
|
|
12
|
+
return { x1: "0%", y1: "100%", x2: "0%", y2: "0%" };
|
|
13
|
+
case "right":
|
|
14
|
+
return { x1: "0%", y1: "0%", x2: "100%", y2: "0%" };
|
|
15
|
+
case "bottom":
|
|
16
|
+
return { x1: "0%", y1: "0%", x2: "0%", y2: "100%" };
|
|
17
|
+
case "left":
|
|
18
|
+
return { x1: "100%", y1: "0%", x2: "0%", y2: "0%" };
|
|
19
|
+
default:
|
|
20
|
+
return { x1: "0%", y1: "0%", x2: "0%", y2: "100%" };
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
let className = "";
|
|
24
|
+
export { className as class };
|
|
25
|
+
</script>
|
|
26
|
+
|
|
27
|
+
{#if gradient.colors[1] !== ""}
|
|
28
|
+
<svg
|
|
29
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
30
|
+
class={className}
|
|
31
|
+
style="width: {size}; height: {size}; {!className
|
|
32
|
+
? `color: ${color};`
|
|
33
|
+
: ''}"
|
|
34
|
+
viewBox="0 0 8 11"
|
|
35
|
+
{fill}
|
|
36
|
+
>
|
|
37
|
+
<g id="id_TwoDIcon">
|
|
38
|
+
<path
|
|
39
|
+
d="M1.06222 9.92374C0.786081 9.92374 0.562223 9.69988 0.562223 9.42374V8.72591C0.562223 8.58663 0.62032 8.45366 0.722519 8.35903L3.87143 5.44338C4.15287 5.17102 4.38891 4.92589 4.57957 4.708C4.77325 4.49011 4.92002 4.27676 5.01989 4.06795C5.11975 3.85611 5.16969 3.62763 5.16969 3.3825C5.16969 3.11014 5.10765 2.87561 4.98357 2.6789C4.8595 2.47917 4.69003 2.32634 4.47516 2.22042C4.2603 2.11148 4.01669 2.05701 3.74432 2.05701C3.45986 2.05701 3.2117 2.1145 2.99987 2.2295C2.78803 2.3445 2.62461 2.50943 2.50961 2.72429C2.46434 2.80888 2.42798 2.8998 2.40053 2.99705C2.32552 3.26281 2.11326 3.49145 1.83712 3.49145H0.971436C0.695294 3.49145 0.466721 3.26645 0.504707 2.99293C0.560682 2.58989 0.687286 2.22798 0.884519 1.90721C1.15991 1.45932 1.54575 1.11282 2.04206 0.867689C2.53836 0.622563 3.11032 0.5 3.75794 0.5C4.42372 0.5 5.00324 0.618024 5.49652 0.854071C5.99283 1.08709 6.37867 1.4109 6.65406 1.8255C6.92945 2.24009 7.06715 2.71521 7.06715 3.25086C7.06715 3.60191 6.99754 3.94841 6.85833 4.29038C6.72215 4.63234 6.47854 5.01214 6.12749 5.42976C5.77645 5.84436 5.28166 6.34217 4.64312 6.92321L3.29928 8.24009C3.29069 8.24851 3.28585 8.26003 3.28585 8.27205C3.28585 8.29677 3.30588 8.3168 3.3306 8.3168H6.68971C6.96585 8.3168 7.18971 8.54066 7.18971 8.8168V9.42374C7.18971 9.69988 6.96585 9.92374 6.68971 9.92374H1.06222Z"
|
|
40
|
+
stroke="url(#grad-TwoDIcon)"
|
|
41
|
+
stroke-linejoin="round"
|
|
42
|
+
/>
|
|
43
|
+
</g>
|
|
44
|
+
|
|
45
|
+
<defs>
|
|
46
|
+
<linearGradient
|
|
47
|
+
id="grad-TwoDIcon"
|
|
48
|
+
x1={getGradientDirection(gradient.direction).x1}
|
|
49
|
+
y1={getGradientDirection(gradient.direction).y1}
|
|
50
|
+
x2={getGradientDirection(gradient.direction).x2}
|
|
51
|
+
y2={getGradientDirection(gradient.direction).y2}
|
|
52
|
+
>
|
|
53
|
+
<stop
|
|
54
|
+
offset="0%"
|
|
55
|
+
style="stop-color:{gradient.colors[0]};stop-opacity:1"
|
|
56
|
+
/>
|
|
57
|
+
<stop
|
|
58
|
+
offset="100%"
|
|
59
|
+
style="stop-color:{gradient.colors[1]};stop-opacity:1"
|
|
60
|
+
/>
|
|
61
|
+
</linearGradient>
|
|
62
|
+
</defs>
|
|
63
|
+
</svg>
|
|
64
|
+
{:else}
|
|
65
|
+
<svg
|
|
66
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
67
|
+
class={className}
|
|
68
|
+
style="width: {size}; height: {size}; {!className
|
|
69
|
+
? `color: ${color};`
|
|
70
|
+
: ''}"
|
|
71
|
+
viewBox="0 0 8 11"
|
|
72
|
+
{fill}
|
|
73
|
+
>
|
|
74
|
+
<g id="id_TwoDIcon">
|
|
75
|
+
<path
|
|
76
|
+
d="M1.06222 9.92374C0.786081 9.92374 0.562223 9.69988 0.562223 9.42374V8.72591C0.562223 8.58663 0.62032 8.45366 0.722519 8.35903L3.87143 5.44338C4.15287 5.17102 4.38891 4.92589 4.57957 4.708C4.77325 4.49011 4.92002 4.27676 5.01989 4.06795C5.11975 3.85611 5.16969 3.62763 5.16969 3.3825C5.16969 3.11014 5.10765 2.87561 4.98357 2.6789C4.8595 2.47917 4.69003 2.32634 4.47516 2.22042C4.2603 2.11148 4.01669 2.05701 3.74432 2.05701C3.45986 2.05701 3.2117 2.1145 2.99987 2.2295C2.78803 2.3445 2.62461 2.50943 2.50961 2.72429C2.46434 2.80888 2.42798 2.8998 2.40053 2.99705C2.32552 3.26281 2.11326 3.49145 1.83712 3.49145H0.971436C0.695294 3.49145 0.466721 3.26645 0.504707 2.99293C0.560682 2.58989 0.687286 2.22798 0.884519 1.90721C1.15991 1.45932 1.54575 1.11282 2.04206 0.867689C2.53836 0.622563 3.11032 0.5 3.75794 0.5C4.42372 0.5 5.00324 0.618024 5.49652 0.854071C5.99283 1.08709 6.37867 1.4109 6.65406 1.8255C6.92945 2.24009 7.06715 2.71521 7.06715 3.25086C7.06715 3.60191 6.99754 3.94841 6.85833 4.29038C6.72215 4.63234 6.47854 5.01214 6.12749 5.42976C5.77645 5.84436 5.28166 6.34217 4.64312 6.92321L3.29928 8.24009C3.29069 8.24851 3.28585 8.26003 3.28585 8.27205C3.28585 8.29677 3.30588 8.3168 3.3306 8.3168H6.68971C6.96585 8.3168 7.18971 8.54066 7.18971 8.8168V9.42374C7.18971 9.69988 6.96585 9.92374 6.68971 9.92374H1.06222Z"
|
|
77
|
+
stroke={color}
|
|
78
|
+
stroke-linejoin="round"
|
|
79
|
+
/>
|
|
80
|
+
</g>
|
|
81
|
+
</svg>
|
|
82
|
+
{/if}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
color?: string | undefined;
|
|
5
|
+
fill?: string | undefined;
|
|
6
|
+
gradient?:
|
|
7
|
+
| {
|
|
8
|
+
colors: [string, string];
|
|
9
|
+
direction: "top" | "right" | "bottom" | "left";
|
|
10
|
+
}
|
|
11
|
+
| undefined;
|
|
12
|
+
size?: string | undefined;
|
|
13
|
+
weight?: number | undefined;
|
|
14
|
+
class?: string | undefined;
|
|
15
|
+
};
|
|
16
|
+
events: {
|
|
17
|
+
[evt: string]: CustomEvent<any>;
|
|
18
|
+
};
|
|
19
|
+
slots: {};
|
|
20
|
+
};
|
|
21
|
+
export type TwoDIconProps = typeof __propDef.props;
|
|
22
|
+
export type TwoDIconEvents = typeof __propDef.events;
|
|
23
|
+
export type TwoDIconSlots = typeof __propDef.slots;
|
|
24
|
+
export default class TwoDIcon extends SvelteComponent<
|
|
25
|
+
TwoDIconProps,
|
|
26
|
+
TwoDIconEvents,
|
|
27
|
+
TwoDIconSlots
|
|
28
|
+
> {}
|
|
29
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -317,6 +317,7 @@ import ArrowDownRightSmIcon from "./icons/ArrowDownRightSmIcon.svelte";
|
|
|
317
317
|
import ArrowDownLeftSmIcon from "./icons/ArrowDownLeftSmIcon.svelte";
|
|
318
318
|
import ArrowUpRightSmIcon from "./icons/ArrowUpRightSmIcon.svelte";
|
|
319
319
|
import Stopwatch from "./icons/Stopwatch.svelte";
|
|
320
|
+
import TwoDIcon from "./icons/TwoDIcon.svelte";
|
|
320
321
|
import type IconProps from "./types/IconProps.ts";
|
|
321
|
-
export { AddImageIcon, AddSquareIcon, AlertCircleIcon, AnnotationXIcon, ArrowCalendarIcon, ArrowLeftIcon, ArrowSwitchIcon, ArrowUpIcon, BackArrowIcon, BellIcon, PinnedIcon, BezierIcon, BoxIcon, BrandIcon, CalendarIcon, CameraIcon, CategoryIcon, CertificateIcon, ChartTrendUp, CheckCircleIcon, CheckIcon, ChevronDownIcon, ChevronUpIcon, ClockIcon, CloseIcon, CollectionIcon, ColumnHorizontal, CopyIcon, CrownIcon, DarkIcon, DownloadCloudIcon, DownloadIcon, EditIcon, EyeClosedIcon, EyeOpenIcon, FavoriteIcon, FilterIcon, FlameIcon, FlipLeftIcon, FolderIcon, FolderPlusIcon, GridIcon, HeartIcon, HomeIcon, HourglassIcon, Icon, LightBulb01Icon, LightIcon, LockIcon, LogoutIcon, MaterialIcon, MenuIcon, MinimizeIcon, NoFolder, NotificationIcon, OverlapIcon, PinIcon, PlayIcon, ReloadIcon, ReportIcon, SearchIcon, SendIcon, SettingsIcon, StarIcon, TeamUserIcon, TextureIcon, TrashIcon, TrendUpIcon, UpgradeIcon, UploadIcon, UserProfileIcon, ViewModeIcon, ZoomIcon, ZoomSliderIcon, Edit01Icon, CheckSemiCircleIcon, EmailIcon, CircleLockIcon, SparkleIcon, ActivityIcon, AddSquare01Icon, AddSquare02Icon, AddSquare03Icon, AddSquare04Icon, Calendar01Icon, Calendar02Icon, Calendar03Icon, CancelLeftIcon, CancelRightIcon, CheckBrokenIcon, CheckContainedIcon, CheckSquareBrokenIcon, CheckSquareContainedIcon, CopyLeftIcon, CopyRightIcon, ComponentIcon, DashIcon, DeliveryIcon, Download01Icon, Download02Icon, DotHorizontalIcon, DotVerticalIcon, Edit02Icon, Edit03Icon, Edit04Icon, EditContainedIcon, EmbedIcon, EqualsIcon, EqualsNotIcon, ExpandIcon, Expand02Icon, FileIcon, GearIcon, GlobeIcon, Hash01Icon, Hash02Icon, HelpIcon, HelpCircleContainedIcon, HelpSquareContainedIcon, Home01Icon, Home03Icon, Home04Icon, Home05Icon, ImageIcon, InformationCircleContainedIcon, InformationSquareContainedIcon, LightningCircleContainedIcon, LightningFilledIcon, LightningSquareContainedIcon, LinkIcon, LinkAngledIcon, LinkBrokenIcon, LinkExternalIcon, Loader01Icon, Loader02Icon, Logout01Icon, Logout02Icon, Logout03Icon, Logout04Icon, Login01Icon, Menu01Icon, Menu02Icon, Menu03Icon, Menu04Icon, Menu05Icon, MinusCircleContainedIcon, MinusSquareContainedIcon, Percent01Icon, Percent02Icon, Percent03Icon, Plus01Icon, Plus02Icon, Plus03Icon, PaperclipIcon, ProgressIcon, QuoteIcon, Save01Icon, Save02Icon, Search01Icon, Search02Icon, ShareIcon, ArrowRotateLeftIcon, SlashBackwardIcon, SlashForwardIcon, SortHorizontalIcon, SortVertical01Icon, SortVertical02Icon, Target01Icon, Target02Icon, Target03Icon, Target04Icon, ToggleRightIcon, ToggleLeftIcon, Trash01Icon, Trash02Icon, Trash03Icon, Trash04Icon, Upload01Icon, Upload02Icon, Upload03Icon, Upload04Icon, VariantIcon, X01Icon, X02Icon, X03Icon, XCircleContainedIcon, XSquareContainedIcon, Pin1Icon, Pin2Icon, CoinsRotateIcon, Bag01Icon, Bag02Icon, Bag03Icon, Bag04Icon, Bag05Icon, BankIcon, BankNote01Icon, BankNote02Icon, BankNote03Icon, BankNote04Icon, BankNote05Icon, BankNote06Icon, Card01Icon, Card02Icon, CardAddIcon, CardCheckIcon, CardDownIcon, CardEditIcon, CardLockIcon, CardMinusIcon, CardNumberIcon, CardShieldIcon, CardUpIcon, CardXIcon, CartIcon, CoinsIcon, CoinBrokenIcon, CoinHandIcon, CoinNumberIcon, CoinUnbrokenIcon, CurrencyBathIcon, CurrencyBitcoinIcon, CurrencyCentIcon, CurrencyCoinBathIcon, CurrencyCoinBitcoinIcon, CurrencyCoinCentIcon, CurrencyCoinDollarIcon, CurrencyCoinEuroIcon, CurrencyCoinPoundIcon, CurrencyCoinRubelIcon, CurrencyCoinRupeeIcon, CurrencyCoinYenIcon, CurrencyDollarIcon, CurrencyEuroIcon, CurrencyPoundIcon, CurrencyRubelIcon, CurrencyRupeeIcon, CurrencyYenIcon, DiamondIcon, DiscountCircleIcon, DiscountSquareIcon, DiscountStar01Icon, DiscountStar02Icon, DiscountStar03Icon, Gift01Icon, Gift02Icon, ReceiptIcon, ReceiptLinesIcon, TagIcon, Wallet01Icon, Wallet02Icon, Wallet03Icon, Wallet04Icon, Story01Icon, ArrowCurveLeftDownIcon, ArrowCurveLeftRightIcon, ArrowDownLeftIcon, ArrowCurveUpLeftIcon, ArrowCurveRightUpIcon, ArrowLeftSquareContainedIcon, ArrowRightSquareContainedIcon, ArrowUpSquareContainedIcon, ArrowDownSquareContainedIcon, ArrowDownLeftSquareContainedIcon, ArrowUpRightSquareContainedIcon, ArrowDownRightSquareContainedIcon, ArrowUpLeftSquareContainedIcon, ArrowLeftContained02Icon, ArrowUpLeftContainedIcon, ArrowDownLeftContainedIcon, ArrowDownRightContainedIcon, ArrowUpRightContainedIcon, ArrowRightContained02Icon, ArrowUpContained02Icon, ArrowDownContained02Icon, ArrowLeftContained01Icon, ArrowUpContained01Icon, ArrowRightContained01Icon, ArrowDownContained01Icon, ArrowExpand01Icon, ArrowExpand02Icon, ArrowExpand03Icon, ArrowExpand04Icon, DownArrowIcon, ArrowRightIcon, ArrowUpLeftIcon, ArrowDownRightIcon, ArrowDownLeft02Icon, ArrowUpRightIcon, ArrowDownRight02Icon, ArrowCurveUpRightIcon, ArrowSwitchHorizontalIcon, ArrowSwitchVerticalIcon, ArrowRefresh01Icon, ArrowRefresh02Icon, ArrowRefresh03Icon, ArrowRefresh04Icon, ArrowRefresh05Icon, ArrowRefresh06Icon, ArrowRotateLeft01Icon, ArrowRotateLeft02Icon, ArrowRotateRight01Icon, ArrowRotateRight02Icon, ChevronDoubleDownIcon, ChevronDoubleLeftIcon, ChevronDoubleRightIcon, ChevronDoubleUpIcon, ChevronLeftIcon, ChevronRightIcon, FlipRightIcon, ArrowUpSmIcon, DownArrowSmIcon, ArrowRightSmIcon, ArrowLeftSmIcon, ArrowUpLeftSmIcon, ArrowDownRightSmIcon, ArrowDownLeftSmIcon, ArrowUpRightSmIcon, Stopwatch, };
|
|
322
|
+
export { AddImageIcon, AddSquareIcon, AlertCircleIcon, AnnotationXIcon, ArrowCalendarIcon, ArrowLeftIcon, ArrowSwitchIcon, ArrowUpIcon, BackArrowIcon, BellIcon, PinnedIcon, BezierIcon, BoxIcon, BrandIcon, CalendarIcon, CameraIcon, CategoryIcon, CertificateIcon, ChartTrendUp, CheckCircleIcon, CheckIcon, ChevronDownIcon, ChevronUpIcon, ClockIcon, CloseIcon, CollectionIcon, ColumnHorizontal, CopyIcon, CrownIcon, DarkIcon, DownloadCloudIcon, DownloadIcon, EditIcon, EyeClosedIcon, EyeOpenIcon, FavoriteIcon, FilterIcon, FlameIcon, FlipLeftIcon, FolderIcon, FolderPlusIcon, GridIcon, HeartIcon, HomeIcon, HourglassIcon, Icon, LightBulb01Icon, LightIcon, LockIcon, LogoutIcon, MaterialIcon, MenuIcon, MinimizeIcon, NoFolder, NotificationIcon, OverlapIcon, PinIcon, PlayIcon, ReloadIcon, ReportIcon, SearchIcon, SendIcon, SettingsIcon, StarIcon, TeamUserIcon, TextureIcon, TrashIcon, TrendUpIcon, UpgradeIcon, UploadIcon, UserProfileIcon, ViewModeIcon, ZoomIcon, ZoomSliderIcon, Edit01Icon, CheckSemiCircleIcon, EmailIcon, CircleLockIcon, SparkleIcon, ActivityIcon, AddSquare01Icon, AddSquare02Icon, AddSquare03Icon, AddSquare04Icon, Calendar01Icon, Calendar02Icon, Calendar03Icon, CancelLeftIcon, CancelRightIcon, CheckBrokenIcon, CheckContainedIcon, CheckSquareBrokenIcon, CheckSquareContainedIcon, CopyLeftIcon, CopyRightIcon, ComponentIcon, DashIcon, DeliveryIcon, Download01Icon, Download02Icon, DotHorizontalIcon, DotVerticalIcon, Edit02Icon, Edit03Icon, Edit04Icon, EditContainedIcon, EmbedIcon, EqualsIcon, EqualsNotIcon, ExpandIcon, Expand02Icon, FileIcon, GearIcon, GlobeIcon, Hash01Icon, Hash02Icon, HelpIcon, HelpCircleContainedIcon, HelpSquareContainedIcon, Home01Icon, Home03Icon, Home04Icon, Home05Icon, ImageIcon, InformationCircleContainedIcon, InformationSquareContainedIcon, LightningCircleContainedIcon, LightningFilledIcon, LightningSquareContainedIcon, LinkIcon, LinkAngledIcon, LinkBrokenIcon, LinkExternalIcon, Loader01Icon, Loader02Icon, Logout01Icon, Logout02Icon, Logout03Icon, Logout04Icon, Login01Icon, Menu01Icon, Menu02Icon, Menu03Icon, Menu04Icon, Menu05Icon, MinusCircleContainedIcon, MinusSquareContainedIcon, Percent01Icon, Percent02Icon, Percent03Icon, Plus01Icon, Plus02Icon, Plus03Icon, PaperclipIcon, ProgressIcon, QuoteIcon, Save01Icon, Save02Icon, Search01Icon, Search02Icon, ShareIcon, ArrowRotateLeftIcon, SlashBackwardIcon, SlashForwardIcon, SortHorizontalIcon, SortVertical01Icon, SortVertical02Icon, Target01Icon, Target02Icon, Target03Icon, Target04Icon, ToggleRightIcon, ToggleLeftIcon, Trash01Icon, Trash02Icon, Trash03Icon, Trash04Icon, Upload01Icon, Upload02Icon, Upload03Icon, Upload04Icon, VariantIcon, X01Icon, X02Icon, X03Icon, XCircleContainedIcon, XSquareContainedIcon, Pin1Icon, Pin2Icon, CoinsRotateIcon, Bag01Icon, Bag02Icon, Bag03Icon, Bag04Icon, Bag05Icon, BankIcon, BankNote01Icon, BankNote02Icon, BankNote03Icon, BankNote04Icon, BankNote05Icon, BankNote06Icon, Card01Icon, Card02Icon, CardAddIcon, CardCheckIcon, CardDownIcon, CardEditIcon, CardLockIcon, CardMinusIcon, CardNumberIcon, CardShieldIcon, CardUpIcon, CardXIcon, CartIcon, CoinsIcon, CoinBrokenIcon, CoinHandIcon, CoinNumberIcon, CoinUnbrokenIcon, CurrencyBathIcon, CurrencyBitcoinIcon, CurrencyCentIcon, CurrencyCoinBathIcon, CurrencyCoinBitcoinIcon, CurrencyCoinCentIcon, CurrencyCoinDollarIcon, CurrencyCoinEuroIcon, CurrencyCoinPoundIcon, CurrencyCoinRubelIcon, CurrencyCoinRupeeIcon, CurrencyCoinYenIcon, CurrencyDollarIcon, CurrencyEuroIcon, CurrencyPoundIcon, CurrencyRubelIcon, CurrencyRupeeIcon, CurrencyYenIcon, DiamondIcon, DiscountCircleIcon, DiscountSquareIcon, DiscountStar01Icon, DiscountStar02Icon, DiscountStar03Icon, Gift01Icon, Gift02Icon, ReceiptIcon, ReceiptLinesIcon, TagIcon, Wallet01Icon, Wallet02Icon, Wallet03Icon, Wallet04Icon, Story01Icon, ArrowCurveLeftDownIcon, ArrowCurveLeftRightIcon, ArrowDownLeftIcon, ArrowCurveUpLeftIcon, ArrowCurveRightUpIcon, ArrowLeftSquareContainedIcon, ArrowRightSquareContainedIcon, ArrowUpSquareContainedIcon, ArrowDownSquareContainedIcon, ArrowDownLeftSquareContainedIcon, ArrowUpRightSquareContainedIcon, ArrowDownRightSquareContainedIcon, ArrowUpLeftSquareContainedIcon, ArrowLeftContained02Icon, ArrowUpLeftContainedIcon, ArrowDownLeftContainedIcon, ArrowDownRightContainedIcon, ArrowUpRightContainedIcon, ArrowRightContained02Icon, ArrowUpContained02Icon, ArrowDownContained02Icon, ArrowLeftContained01Icon, ArrowUpContained01Icon, ArrowRightContained01Icon, ArrowDownContained01Icon, ArrowExpand01Icon, ArrowExpand02Icon, ArrowExpand03Icon, ArrowExpand04Icon, DownArrowIcon, ArrowRightIcon, ArrowUpLeftIcon, ArrowDownRightIcon, ArrowDownLeft02Icon, ArrowUpRightIcon, ArrowDownRight02Icon, ArrowCurveUpRightIcon, ArrowSwitchHorizontalIcon, ArrowSwitchVerticalIcon, ArrowRefresh01Icon, ArrowRefresh02Icon, ArrowRefresh03Icon, ArrowRefresh04Icon, ArrowRefresh05Icon, ArrowRefresh06Icon, ArrowRotateLeft01Icon, ArrowRotateLeft02Icon, ArrowRotateRight01Icon, ArrowRotateRight02Icon, ChevronDoubleDownIcon, ChevronDoubleLeftIcon, ChevronDoubleRightIcon, ChevronDoubleUpIcon, ChevronLeftIcon, ChevronRightIcon, FlipRightIcon, ArrowUpSmIcon, DownArrowSmIcon, ArrowRightSmIcon, ArrowLeftSmIcon, ArrowUpLeftSmIcon, ArrowDownRightSmIcon, ArrowDownLeftSmIcon, ArrowUpRightSmIcon, Stopwatch, TwoDIcon, };
|
|
322
323
|
export type { IconProps };
|
package/dist/index.js
CHANGED
|
@@ -317,4 +317,5 @@ import ArrowDownRightSmIcon from "./icons/ArrowDownRightSmIcon.svelte";
|
|
|
317
317
|
import ArrowDownLeftSmIcon from "./icons/ArrowDownLeftSmIcon.svelte";
|
|
318
318
|
import ArrowUpRightSmIcon from "./icons/ArrowUpRightSmIcon.svelte";
|
|
319
319
|
import Stopwatch from "./icons/Stopwatch.svelte";
|
|
320
|
-
|
|
320
|
+
import TwoDIcon from "./icons/TwoDIcon.svelte";
|
|
321
|
+
export { AddImageIcon, AddSquareIcon, AlertCircleIcon, AnnotationXIcon, ArrowCalendarIcon, ArrowLeftIcon, ArrowSwitchIcon, ArrowUpIcon, BackArrowIcon, BellIcon, PinnedIcon, BezierIcon, BoxIcon, BrandIcon, CalendarIcon, CameraIcon, CategoryIcon, CertificateIcon, ChartTrendUp, CheckCircleIcon, CheckIcon, ChevronDownIcon, ChevronUpIcon, ClockIcon, CloseIcon, CollectionIcon, ColumnHorizontal, CopyIcon, CrownIcon, DarkIcon, DownloadCloudIcon, DownloadIcon, EditIcon, EyeClosedIcon, EyeOpenIcon, FavoriteIcon, FilterIcon, FlameIcon, FlipLeftIcon, FolderIcon, FolderPlusIcon, GridIcon, HeartIcon, HomeIcon, HourglassIcon, Icon, LightBulb01Icon, LightIcon, LockIcon, LogoutIcon, MaterialIcon, MenuIcon, MinimizeIcon, NoFolder, NotificationIcon, OverlapIcon, PinIcon, PlayIcon, ReloadIcon, ReportIcon, SearchIcon, SendIcon, SettingsIcon, StarIcon, TeamUserIcon, TextureIcon, TrashIcon, TrendUpIcon, UpgradeIcon, UploadIcon, UserProfileIcon, ViewModeIcon, ZoomIcon, ZoomSliderIcon, Edit01Icon, CheckSemiCircleIcon, EmailIcon, CircleLockIcon, SparkleIcon, ActivityIcon, AddSquare01Icon, AddSquare02Icon, AddSquare03Icon, AddSquare04Icon, Calendar01Icon, Calendar02Icon, Calendar03Icon, CancelLeftIcon, CancelRightIcon, CheckBrokenIcon, CheckContainedIcon, CheckSquareBrokenIcon, CheckSquareContainedIcon, CopyLeftIcon, CopyRightIcon, ComponentIcon, DashIcon, DeliveryIcon, Download01Icon, Download02Icon, DotHorizontalIcon, DotVerticalIcon, Edit02Icon, Edit03Icon, Edit04Icon, EditContainedIcon, EmbedIcon, EqualsIcon, EqualsNotIcon, ExpandIcon, Expand02Icon, FileIcon, GearIcon, GlobeIcon, Hash01Icon, Hash02Icon, HelpIcon, HelpCircleContainedIcon, HelpSquareContainedIcon, Home01Icon, Home03Icon, Home04Icon, Home05Icon, ImageIcon, InformationCircleContainedIcon, InformationSquareContainedIcon, LightningCircleContainedIcon, LightningFilledIcon, LightningSquareContainedIcon, LinkIcon, LinkAngledIcon, LinkBrokenIcon, LinkExternalIcon, Loader01Icon, Loader02Icon, Logout01Icon, Logout02Icon, Logout03Icon, Logout04Icon, Login01Icon, Menu01Icon, Menu02Icon, Menu03Icon, Menu04Icon, Menu05Icon, MinusCircleContainedIcon, MinusSquareContainedIcon, Percent01Icon, Percent02Icon, Percent03Icon, Plus01Icon, Plus02Icon, Plus03Icon, PaperclipIcon, ProgressIcon, QuoteIcon, Save01Icon, Save02Icon, Search01Icon, Search02Icon, ShareIcon, ArrowRotateLeftIcon, SlashBackwardIcon, SlashForwardIcon, SortHorizontalIcon, SortVertical01Icon, SortVertical02Icon, Target01Icon, Target02Icon, Target03Icon, Target04Icon, ToggleRightIcon, ToggleLeftIcon, Trash01Icon, Trash02Icon, Trash03Icon, Trash04Icon, Upload01Icon, Upload02Icon, Upload03Icon, Upload04Icon, VariantIcon, X01Icon, X02Icon, X03Icon, XCircleContainedIcon, XSquareContainedIcon, Pin1Icon, Pin2Icon, CoinsRotateIcon, Bag01Icon, Bag02Icon, Bag03Icon, Bag04Icon, Bag05Icon, BankIcon, BankNote01Icon, BankNote02Icon, BankNote03Icon, BankNote04Icon, BankNote05Icon, BankNote06Icon, Card01Icon, Card02Icon, CardAddIcon, CardCheckIcon, CardDownIcon, CardEditIcon, CardLockIcon, CardMinusIcon, CardNumberIcon, CardShieldIcon, CardUpIcon, CardXIcon, CartIcon, CoinsIcon, CoinBrokenIcon, CoinHandIcon, CoinNumberIcon, CoinUnbrokenIcon, CurrencyBathIcon, CurrencyBitcoinIcon, CurrencyCentIcon, CurrencyCoinBathIcon, CurrencyCoinBitcoinIcon, CurrencyCoinCentIcon, CurrencyCoinDollarIcon, CurrencyCoinEuroIcon, CurrencyCoinPoundIcon, CurrencyCoinRubelIcon, CurrencyCoinRupeeIcon, CurrencyCoinYenIcon, CurrencyDollarIcon, CurrencyEuroIcon, CurrencyPoundIcon, CurrencyRubelIcon, CurrencyRupeeIcon, CurrencyYenIcon, DiamondIcon, DiscountCircleIcon, DiscountSquareIcon, DiscountStar01Icon, DiscountStar02Icon, DiscountStar03Icon, Gift01Icon, Gift02Icon, ReceiptIcon, ReceiptLinesIcon, TagIcon, Wallet01Icon, Wallet02Icon, Wallet03Icon, Wallet04Icon, Story01Icon, ArrowCurveLeftDownIcon, ArrowCurveLeftRightIcon, ArrowDownLeftIcon, ArrowCurveUpLeftIcon, ArrowCurveRightUpIcon, ArrowLeftSquareContainedIcon, ArrowRightSquareContainedIcon, ArrowUpSquareContainedIcon, ArrowDownSquareContainedIcon, ArrowDownLeftSquareContainedIcon, ArrowUpRightSquareContainedIcon, ArrowDownRightSquareContainedIcon, ArrowUpLeftSquareContainedIcon, ArrowLeftContained02Icon, ArrowUpLeftContainedIcon, ArrowDownLeftContainedIcon, ArrowDownRightContainedIcon, ArrowUpRightContainedIcon, ArrowRightContained02Icon, ArrowUpContained02Icon, ArrowDownContained02Icon, ArrowLeftContained01Icon, ArrowUpContained01Icon, ArrowRightContained01Icon, ArrowDownContained01Icon, ArrowExpand01Icon, ArrowExpand02Icon, ArrowExpand03Icon, ArrowExpand04Icon, DownArrowIcon, ArrowRightIcon, ArrowUpLeftIcon, ArrowDownRightIcon, ArrowDownLeft02Icon, ArrowUpRightIcon, ArrowDownRight02Icon, ArrowCurveUpRightIcon, ArrowSwitchHorizontalIcon, ArrowSwitchVerticalIcon, ArrowRefresh01Icon, ArrowRefresh02Icon, ArrowRefresh03Icon, ArrowRefresh04Icon, ArrowRefresh05Icon, ArrowRefresh06Icon, ArrowRotateLeft01Icon, ArrowRotateLeft02Icon, ArrowRotateRight01Icon, ArrowRotateRight02Icon, ChevronDoubleDownIcon, ChevronDoubleLeftIcon, ChevronDoubleRightIcon, ChevronDoubleUpIcon, ChevronLeftIcon, ChevronRightIcon, FlipRightIcon, ArrowUpSmIcon, DownArrowSmIcon, ArrowRightSmIcon, ArrowLeftSmIcon, ArrowUpLeftSmIcon, ArrowDownRightSmIcon, ArrowDownLeftSmIcon, ArrowUpRightSmIcon, Stopwatch, TwoDIcon, };
|