@genarou/blazir-icons 1.3.4 → 1.3.5
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/Icon.svelte +21 -23
- package/dist/Icon.svelte.d.ts +5 -5
- package/dist/IconLazy.svelte +297 -0
- package/dist/IconLazy.svelte.d.ts +22 -0
- package/dist/icons/ArrowDown.svelte +18 -0
- package/dist/icons/ArrowDown.svelte.d.ts +4 -0
- package/dist/icons/ArrowLeft.svelte +18 -0
- package/dist/icons/ArrowLeft.svelte.d.ts +4 -0
- package/dist/icons/ChevronLeft.svelte +15 -0
- package/dist/icons/ChevronLeft.svelte.d.ts +4 -0
- package/dist/icons/ChevronRight.svelte +15 -0
- package/dist/icons/ChevronRight.svelte.d.ts +4 -0
- package/dist/icons/ChevronUp.svelte +15 -0
- package/dist/icons/ChevronUp.svelte.d.ts +4 -0
- package/dist/icons/CloudUpload.svelte +18 -0
- package/dist/icons/CloudUpload.svelte.d.ts +4 -0
- package/dist/icons/Code.svelte +18 -0
- package/dist/icons/Code.svelte.d.ts +4 -0
- package/dist/icons/ExternalLink.svelte +18 -0
- package/dist/icons/ExternalLink.svelte.d.ts +4 -0
- package/dist/icons/Gift.svelte +21 -0
- package/dist/icons/Gift.svelte.d.ts +7 -0
- package/dist/icons/Grid.svelte +18 -0
- package/dist/icons/Grid.svelte.d.ts +4 -0
- package/dist/icons/GripVertical.svelte +18 -0
- package/dist/icons/GripVertical.svelte.d.ts +4 -0
- package/dist/icons/Layers.svelte +9 -0
- package/dist/icons/Layers.svelte.d.ts +4 -0
- package/dist/icons/Maximize.svelte +18 -0
- package/dist/icons/Maximize.svelte.d.ts +4 -0
- package/dist/icons/MicOff.svelte +9 -0
- package/dist/icons/MicOff.svelte.d.ts +4 -0
- package/dist/icons/Microphone.svelte +9 -0
- package/dist/icons/Microphone.svelte.d.ts +4 -0
- package/dist/icons/Minimize.svelte +9 -0
- package/dist/icons/Minimize.svelte.d.ts +4 -0
- package/dist/icons/Percentage.svelte +9 -0
- package/dist/icons/Percentage.svelte.d.ts +4 -0
- package/dist/icons/Redo.svelte +9 -0
- package/dist/icons/Redo.svelte.d.ts +4 -0
- package/dist/icons/Sliders.svelte +9 -0
- package/dist/icons/Sliders.svelte.d.ts +4 -0
- package/dist/icons/Terminal.svelte +21 -0
- package/dist/icons/Terminal.svelte.d.ts +7 -0
- package/dist/icons/Undo.svelte +9 -0
- package/dist/icons/Undo.svelte.d.ts +4 -0
- package/dist/icons/UserMinus.svelte +18 -0
- package/dist/icons/UserMinus.svelte.d.ts +4 -0
- package/dist/icons/UserPlus.svelte +18 -0
- package/dist/icons/UserPlus.svelte.d.ts +4 -0
- package/dist/icons/Video.svelte +9 -0
- package/dist/icons/Video.svelte.d.ts +4 -0
- package/dist/icons/Volume.svelte +9 -0
- package/dist/icons/Volume.svelte.d.ts +4 -0
- package/dist/icons/VolumeOff.svelte +9 -0
- package/dist/icons/VolumeOff.svelte.d.ts +4 -0
- package/dist/icons/components.d.ts +200 -0
- package/dist/icons/components.js +204 -0
- package/dist/icons/lazy-registry.js +34 -0
- package/dist/icons/registry.d.ts +30 -0
- package/dist/icons/registry.js +61 -1
- package/dist/icons-api.d.ts +26 -0
- package/dist/icons-api.js +34 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +8 -1
- package/package.json +58 -53
- package/dist/icons/index.d.ts +0 -2
- package/dist/icons/index.js +0 -4
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase
|
|
8
|
+
{...props}
|
|
9
|
+
mode="solid"
|
|
10
|
+
viewBox="0 0 24 24"
|
|
11
|
+
ariaLabel={props.ariaLabel ?? "Grid"}
|
|
12
|
+
title={props.title ?? ""}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
d="M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z"
|
|
17
|
+
/>
|
|
18
|
+
</IconBase>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase
|
|
8
|
+
{...props}
|
|
9
|
+
mode="solid"
|
|
10
|
+
viewBox="0 0 24 24"
|
|
11
|
+
ariaLabel={props.ariaLabel ?? "Drag handle"}
|
|
12
|
+
title={props.title ?? ""}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
d="M9 3a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm6 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM9 9a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm6 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM9 15a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm6 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"
|
|
17
|
+
/>
|
|
18
|
+
</IconBase>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Layers"} title={props.title ?? ""}>
|
|
8
|
+
<path fill="currentColor" d="M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z" />
|
|
9
|
+
</IconBase>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase
|
|
8
|
+
{...props}
|
|
9
|
+
mode="solid"
|
|
10
|
+
viewBox="0 0 24 24"
|
|
11
|
+
ariaLabel={props.ariaLabel ?? "Maximize"}
|
|
12
|
+
title={props.title ?? ""}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
d="M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"
|
|
17
|
+
/>
|
|
18
|
+
</IconBase>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Microphone off"} title={props.title ?? ""}>
|
|
8
|
+
<path fill="currentColor" d="M19 11h-1.7c0 .74-.16 1.43-.43 2.05l1.23 1.23c.56-.98.9-2.09.9-3.28zm-4.02.17c0-.06.02-.11.02-.17V5c0-1.66-1.34-3-3-3S9 3.34 9 5v.18L14.98 11.17zM4.27 3L3 4.27l6.01 6.01V11c0 1.66 1.33 3 2.99 3 .22 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.54-.9L19.73 21 21 19.73 4.27 3z" />
|
|
9
|
+
</IconBase>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Microphone"} title={props.title ?? ""}>
|
|
8
|
+
<path fill="currentColor" d="M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" />
|
|
9
|
+
</IconBase>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Minimize"} title={props.title ?? ""}>
|
|
8
|
+
<path fill="currentColor" d="M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" />
|
|
9
|
+
</IconBase>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Percentage"} title={props.title ?? ""}>
|
|
8
|
+
<path fill="currentColor" d="M18.5 3.5l2 2-15 15-2-2 15-15zM7 4C5.34 4 4 5.34 4 7s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm10 10c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" />
|
|
9
|
+
</IconBase>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Redo"} title={props.title ?? ""}>
|
|
8
|
+
<path fill="currentColor" d="M11 3a9 9 0 0 1 9 9h3l-3.89 3.89-.07.14L15 12h3c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.93 0 3.68-.79 4.94-2.06l1.42 1.42A8.954 8.954 0 0 1 11 21a9 9 0 0 1 0-18z" />
|
|
9
|
+
</IconBase>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Sliders"} title={props.title ?? ""}>
|
|
8
|
+
<path fill="currentColor" d="M3 9h4.17C7.58 10.17 8.69 11 10 11c1.31 0 2.42-.83 2.83-2H21V7h-8.17C12.42 5.83 11.31 5 10 5 8.69 5 7.58 5.83 7.17 7H3v2zm8-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm10 8h-4.17C16.42 13.83 15.31 13 14 13c-1.31 0-2.42.83-2.83 2H3v2h8.17C11.58 18.17 12.69 19 14 19c1.31 0 2.42-.83 2.83-2H21v-2zm-7 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" />
|
|
9
|
+
</IconBase>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
4
|
+
|
|
5
|
+
const props: IconProps & { mode?: IconMode } = $props();
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<IconBase
|
|
9
|
+
{...props}
|
|
10
|
+
mode="solid"
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Terminal"}
|
|
13
|
+
title={props.title ?? "Terminal"}
|
|
14
|
+
>
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M4 20q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v12q0 .825-.587 1.413T20 20zm0-2h16V8H4zm4.675-5l-1.9-1.9q-.3-.3-.288-.7t.313-.7q.3-.275.7-.287t.7.287l2.6 2.6q.3.3.3.7t-.3.7l-2.6 2.6q-.275.275-.687.288T6.8 16.3q-.275-.275-.275-.7t.275-.7zM13 17q-.425 0-.712-.288T12 16t.288-.712T13 15h4q.425 0 .713.288T18 16t-.288.713T17 17z"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
21
|
+
</IconBase>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const Terminal: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
6
|
+
type Terminal = ReturnType<typeof Terminal>;
|
|
7
|
+
export default Terminal;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Undo"} title={props.title ?? ""}>
|
|
8
|
+
<path fill="currentColor" d="M13 3a9 9 0 0 0-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.954 8.954 0 0 0 13 21a9 9 0 0 0 0-18z" />
|
|
9
|
+
</IconBase>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase
|
|
8
|
+
{...props}
|
|
9
|
+
mode="solid"
|
|
10
|
+
viewBox="0 0 24 24"
|
|
11
|
+
ariaLabel={props.ariaLabel ?? "Remove user"}
|
|
12
|
+
title={props.title ?? ""}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
d="M14 8c0 2.21-1.79 4-4 4S6 10.21 6 8s1.79-4 4-4 4 1.79 4 4zm-4 6c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm9-1h-6v-2h6v2z"
|
|
17
|
+
/>
|
|
18
|
+
</IconBase>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase
|
|
8
|
+
{...props}
|
|
9
|
+
mode="solid"
|
|
10
|
+
viewBox="0 0 24 24"
|
|
11
|
+
ariaLabel={props.ariaLabel ?? "Add user"}
|
|
12
|
+
title={props.title ?? ""}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
d="M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
|
|
17
|
+
/>
|
|
18
|
+
</IconBase>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Video"} title={props.title ?? ""}>
|
|
8
|
+
<path fill="currentColor" d="M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z" />
|
|
9
|
+
</IconBase>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Volume"} title={props.title ?? ""}>
|
|
8
|
+
<path fill="currentColor" d="M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z" />
|
|
9
|
+
</IconBase>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
const props: IconProps = $props();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Volume off"} title={props.title ?? ""}>
|
|
8
|
+
<path fill="currentColor" d="M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z" />
|
|
9
|
+
</IconBase>
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
export { default as Ai } from './Ai.svelte';
|
|
2
|
+
export { default as Alternate } from './Alternate.svelte';
|
|
3
|
+
export { default as AnimatedArrowLeft } from './AnimatedArrowLeft.svelte';
|
|
4
|
+
export { default as Archive } from './Archive.svelte';
|
|
5
|
+
export { default as Attachment } from './Attachment.svelte';
|
|
6
|
+
export { default as Bag } from './Bag.svelte';
|
|
7
|
+
export { default as Bank } from './Bank.svelte';
|
|
8
|
+
export { default as Bell } from './Bell.svelte';
|
|
9
|
+
export { default as Blaze } from './Blaze.svelte';
|
|
10
|
+
export { default as Book } from './Book.svelte';
|
|
11
|
+
export { default as Box } from './Box.svelte';
|
|
12
|
+
export { default as BoxAdd } from './BoxAdd.svelte';
|
|
13
|
+
export { default as Building } from './Building.svelte';
|
|
14
|
+
export { default as Buy } from './Buy.svelte';
|
|
15
|
+
export { default as Calendar } from './Calendar.svelte';
|
|
16
|
+
export { default as CalendarEdit } from './CalendarEdit.svelte';
|
|
17
|
+
export { default as CalendarPlus } from './CalendarPlus.svelte';
|
|
18
|
+
export { default as Camera } from './Camera.svelte';
|
|
19
|
+
export { default as Cards } from './Cards.svelte';
|
|
20
|
+
export { default as Cart } from './Cart.svelte';
|
|
21
|
+
export { default as Category } from './Category.svelte';
|
|
22
|
+
export { default as CategoryAdd } from './CategoryAdd.svelte';
|
|
23
|
+
export { default as CategorySearch } from './CategorySearch.svelte';
|
|
24
|
+
export { default as Chart } from './Chart.svelte';
|
|
25
|
+
export { default as ChartDoc } from './ChartDoc.svelte';
|
|
26
|
+
export { default as Chat } from './Chat.svelte';
|
|
27
|
+
export { default as Check } from './Check.svelte';
|
|
28
|
+
export { default as CheckList } from './CheckList.svelte';
|
|
29
|
+
export { default as CheckO } from './CheckO.svelte';
|
|
30
|
+
export { default as ChevronDown } from './ChevronDown.svelte';
|
|
31
|
+
export { default as ChevronUpDown } from './ChevronUpDown.svelte';
|
|
32
|
+
export { default as CircleCheck } from './CircleCheck.svelte';
|
|
33
|
+
export { default as CircleExclamation } from './CircleExclamation.svelte';
|
|
34
|
+
export { default as CircleExclamationOutlined } from './CircleExclamationOutlined.svelte';
|
|
35
|
+
export { default as CircleInfo } from './CircleInfo.svelte';
|
|
36
|
+
export { default as CircleInfoOutlined } from './CircleInfoOutlined.svelte';
|
|
37
|
+
export { default as CircleQuestion } from './CircleQuestion.svelte';
|
|
38
|
+
export { default as CircleQuestionOutlined } from './CircleQuestionOutlined.svelte';
|
|
39
|
+
export { default as Close } from './Close.svelte';
|
|
40
|
+
export { default as CloudAlert } from './CloudAlert.svelte';
|
|
41
|
+
export { default as CloudCheck } from './CloudCheck.svelte';
|
|
42
|
+
export { default as CloudDownload } from './CloudDownload.svelte';
|
|
43
|
+
export { default as Colors } from './Colors.svelte';
|
|
44
|
+
export { default as Connect } from './Connect.svelte';
|
|
45
|
+
export { default as Contact } from './Contact.svelte';
|
|
46
|
+
export { default as Copy } from './Copy.svelte';
|
|
47
|
+
export { default as CostIcon } from './CostIcon.svelte';
|
|
48
|
+
export { default as CreditCard } from './CreditCard.svelte';
|
|
49
|
+
export { default as Csv } from './Csv.svelte';
|
|
50
|
+
export { default as Dashboard } from './Dashboard.svelte';
|
|
51
|
+
export { default as DashboardOutlined } from './DashboardOutlined.svelte';
|
|
52
|
+
export { default as Db } from './Db.svelte';
|
|
53
|
+
export { default as Desktop } from './Desktop.svelte';
|
|
54
|
+
export { default as DoughnutChart } from './DoughnutChart.svelte';
|
|
55
|
+
export { default as Download } from './Download.svelte';
|
|
56
|
+
export { default as DownloadAnimated } from './DownloadAnimated.svelte';
|
|
57
|
+
export { default as Earth } from './Earth.svelte';
|
|
58
|
+
export { default as Edit } from './Edit.svelte';
|
|
59
|
+
export { default as EditOutline } from './EditOutline.svelte';
|
|
60
|
+
export { default as Email } from './Email.svelte';
|
|
61
|
+
export { default as EmailAnimated } from './EmailAnimated.svelte';
|
|
62
|
+
export { default as Enterprise } from './Enterprise.svelte';
|
|
63
|
+
export { default as Error } from './Error.svelte';
|
|
64
|
+
export { default as ErrorO } from './ErrorO.svelte';
|
|
65
|
+
export { default as Excel } from './Excel.svelte';
|
|
66
|
+
export { default as ExcelAnimated } from './ExcelAnimated.svelte';
|
|
67
|
+
export { default as Exchange } from './Exchange.svelte';
|
|
68
|
+
export { default as Eye } from './Eye.svelte';
|
|
69
|
+
export { default as EyeOff } from './EyeOff.svelte';
|
|
70
|
+
export { default as Favorites } from './Favorites.svelte';
|
|
71
|
+
export { default as File } from './File.svelte';
|
|
72
|
+
export { default as FileUpdateAnimated } from './FileUploadAnimated.svelte';
|
|
73
|
+
export { default as Filter } from './Filter.svelte';
|
|
74
|
+
export { default as FilterOutline } from './FilterOutline.svelte';
|
|
75
|
+
export { default as Fingerprint } from './Fingerprint.svelte';
|
|
76
|
+
export { default as Folder } from './Folder.svelte';
|
|
77
|
+
export { default as Form } from './Form.svelte';
|
|
78
|
+
export { default as FormatListGroup } from './FormatListGroup.svelte';
|
|
79
|
+
export { default as Globe } from './Globe.svelte';
|
|
80
|
+
export { default as Group } from './Group.svelte';
|
|
81
|
+
export { default as Hamburguer } from './Hamburguer.svelte';
|
|
82
|
+
export { default as HandShake } from './HandShake.svelte';
|
|
83
|
+
export { default as HardDrive } from './HardDrive.svelte';
|
|
84
|
+
export { default as Heart } from './Heart.svelte';
|
|
85
|
+
export { default as Height } from './Height.svelte';
|
|
86
|
+
export { default as Historic } from './Historic.svelte';
|
|
87
|
+
export { default as Home } from './Home.svelte';
|
|
88
|
+
export { default as Image } from './Image.svelte';
|
|
89
|
+
export { default as ImageAnimated } from './ImageAnimated.svelte';
|
|
90
|
+
export { default as Key } from './Key.svelte';
|
|
91
|
+
export { default as LightHub } from './LightHub.svelte';
|
|
92
|
+
export { default as Link } from './Link.svelte';
|
|
93
|
+
export { default as List } from './List.svelte';
|
|
94
|
+
export { default as ListDots } from './ListDots.svelte';
|
|
95
|
+
export { default as LoadingDots } from './LoadingDots.svelte';
|
|
96
|
+
export { default as LoadingRegular } from './RegularSpinner.svelte';
|
|
97
|
+
export { default as Location } from './Location.svelte';
|
|
98
|
+
export { default as LocationAnimated } from './LocationAnimated.svelte';
|
|
99
|
+
export { default as Lock } from './Lock.svelte';
|
|
100
|
+
export { default as LockOpen } from './LockOpen.svelte';
|
|
101
|
+
export { default as Logout } from './Logout.svelte';
|
|
102
|
+
export { default as Lose } from './Lose.svelte';
|
|
103
|
+
export { default as MagnifiyingGlass } from './MagnifiyingGlass.svelte';
|
|
104
|
+
export { default as Measure } from './Measure.svelte';
|
|
105
|
+
export { default as Money } from './Money.svelte';
|
|
106
|
+
export { default as Moon } from './Moon.svelte';
|
|
107
|
+
export { default as More } from './More.svelte';
|
|
108
|
+
export { default as Notes } from './Notes.svelte';
|
|
109
|
+
export { default as ObjectGroup } from './ObjectGroup.svelte';
|
|
110
|
+
export { default as Pause } from './Pause.svelte';
|
|
111
|
+
export { default as Pay } from './Pay.svelte';
|
|
112
|
+
export { default as Pdf } from './Pdf.svelte';
|
|
113
|
+
export { default as Phone } from './Phone.svelte';
|
|
114
|
+
export { default as Play } from './Play.svelte';
|
|
115
|
+
export { default as Plus } from './Plus.svelte';
|
|
116
|
+
export { default as Png } from './Png.svelte';
|
|
117
|
+
export { default as PointSale } from './PointSale.svelte';
|
|
118
|
+
export { default as Power } from './Power.svelte';
|
|
119
|
+
export { default as PowerPoint } from './PowerPoint.svelte';
|
|
120
|
+
export { default as Print } from './Print.svelte';
|
|
121
|
+
export { default as Process } from './Process.svelte';
|
|
122
|
+
export { default as Product } from './Product.svelte';
|
|
123
|
+
export { default as Profit } from './Profit.svelte';
|
|
124
|
+
export { default as Project } from './Project.svelte';
|
|
125
|
+
export { default as Qr } from './Qr.svelte';
|
|
126
|
+
export { default as Receipt } from './Receipt.svelte';
|
|
127
|
+
export { default as Refresh } from './Update.svelte';
|
|
128
|
+
export { default as Reset } from './Reset.svelte';
|
|
129
|
+
export { default as RightArrow } from './RightArrow.svelte';
|
|
130
|
+
export { default as Rocket } from './Rocket.svelte';
|
|
131
|
+
export { default as SafeSolid } from './SafeSolid.svelte';
|
|
132
|
+
export { default as Save } from './Save.svelte';
|
|
133
|
+
export { default as Scan } from './Scan.svelte';
|
|
134
|
+
export { default as Security } from './Security.svelte';
|
|
135
|
+
export { default as Send } from './Send.svelte';
|
|
136
|
+
export { default as Server } from './Server.svelte';
|
|
137
|
+
export { default as Settings } from './Settings.svelte';
|
|
138
|
+
export { default as Share } from './Share.svelte';
|
|
139
|
+
export { default as SharedFolder } from './SharedFolder.svelte';
|
|
140
|
+
export { default as Shield } from './Shield.svelte';
|
|
141
|
+
export { default as Sidebar } from './Sidebar.svelte';
|
|
142
|
+
export { default as SquareChart } from './SquareChart.svelte';
|
|
143
|
+
export { default as Star } from './Star.svelte';
|
|
144
|
+
export { default as Sun } from './Sun.svelte';
|
|
145
|
+
export { default as Supervisor } from './Supervisor.svelte';
|
|
146
|
+
export { default as Swap } from './Swap.svelte';
|
|
147
|
+
export { default as Sync } from './Sync.svelte';
|
|
148
|
+
export { default as SyncPhoto } from './SyncPhoto.svelte';
|
|
149
|
+
export { default as Table } from './Table.svelte';
|
|
150
|
+
export { default as Tags } from './Tags.svelte';
|
|
151
|
+
export { default as Team } from './Team.svelte';
|
|
152
|
+
export { default as Timer } from './Timer.svelte';
|
|
153
|
+
export { default as Tools } from './Tools.svelte';
|
|
154
|
+
export { default as Trash } from './Trash.svelte';
|
|
155
|
+
export { default as TrashOutline } from './TrashOutline.svelte';
|
|
156
|
+
export { default as Truck } from './Truck.svelte';
|
|
157
|
+
export { default as TruckReturn } from './TruckReturn.svelte';
|
|
158
|
+
export { default as UpArrow } from './UpArrow.svelte';
|
|
159
|
+
export { default as UpDownArrow } from './UpDownArrow.svelte';
|
|
160
|
+
export { default as Upload } from './Upload.svelte';
|
|
161
|
+
export { default as UploadAnimated } from './UploadAnimated.svelte';
|
|
162
|
+
export { default as UploadLoader } from './UploadLoader.svelte';
|
|
163
|
+
export { default as User } from './User.svelte';
|
|
164
|
+
export { default as UserShield } from './UserShield.svelte';
|
|
165
|
+
export { default as UserTie } from './UserTie.svelte';
|
|
166
|
+
export { default as Wallet } from './Wallet.svelte';
|
|
167
|
+
export { default as Warehouse } from './Warehouse.svelte';
|
|
168
|
+
export { default as Warning } from './Warning.svelte';
|
|
169
|
+
export { default as Wifi } from './Wifi.svelte';
|
|
170
|
+
export { default as Word } from './Word.svelte';
|
|
171
|
+
export { default as Work } from './Work.svelte';
|
|
172
|
+
export { default as World } from './World.svelte';
|
|
173
|
+
export { default as Xml } from './Xml.svelte';
|
|
174
|
+
export { default as Zip } from './Zip.svelte';
|
|
175
|
+
export { default as ArrowDown } from './ArrowDown.svelte';
|
|
176
|
+
export { default as ArrowLeft } from './ArrowLeft.svelte';
|
|
177
|
+
export { default as ChevronLeft } from './ChevronLeft.svelte';
|
|
178
|
+
export { default as ChevronRight } from './ChevronRight.svelte';
|
|
179
|
+
export { default as ChevronUp } from './ChevronUp.svelte';
|
|
180
|
+
export { default as CloudUpload } from './CloudUpload.svelte';
|
|
181
|
+
export { default as Code } from './Code.svelte';
|
|
182
|
+
export { default as ExternalLink } from './ExternalLink.svelte';
|
|
183
|
+
export { default as Gift } from './Gift.svelte';
|
|
184
|
+
export { default as Grid } from './Grid.svelte';
|
|
185
|
+
export { default as GripVertical } from './GripVertical.svelte';
|
|
186
|
+
export { default as Layers } from './Layers.svelte';
|
|
187
|
+
export { default as Maximize } from './Maximize.svelte';
|
|
188
|
+
export { default as MicOff } from './MicOff.svelte';
|
|
189
|
+
export { default as Microphone } from './Microphone.svelte';
|
|
190
|
+
export { default as Minimize } from './Minimize.svelte';
|
|
191
|
+
export { default as Percentage } from './Percentage.svelte';
|
|
192
|
+
export { default as Redo } from './Redo.svelte';
|
|
193
|
+
export { default as Sliders } from './Sliders.svelte';
|
|
194
|
+
export { default as Terminal } from './Terminal.svelte';
|
|
195
|
+
export { default as Undo } from './Undo.svelte';
|
|
196
|
+
export { default as UserMinus } from './UserMinus.svelte';
|
|
197
|
+
export { default as UserPlus } from './UserPlus.svelte';
|
|
198
|
+
export { default as Video } from './Video.svelte';
|
|
199
|
+
export { default as Volume } from './Volume.svelte';
|
|
200
|
+
export { default as VolumeOff } from './VolumeOff.svelte';
|