@tabler/icons-svelte 3.0.3 → 3.2.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/blend-mode.svelte +6 -0
- package/dist/icons/blend-mode.svelte.d.ts +17 -0
- package/dist/icons/blob-filled.svelte +6 -0
- package/dist/icons/blob-filled.svelte.d.ts +17 -0
- package/dist/icons/blob.svelte +6 -0
- package/dist/icons/blob.svelte.d.ts +17 -0
- package/dist/icons/brand-arc.svelte +6 -0
- package/dist/icons/brand-arc.svelte.d.ts +17 -0
- package/dist/icons/brand-google-fit.svelte +1 -1
- package/dist/icons/bubble-filled.svelte +6 -0
- package/dist/icons/bubble-filled.svelte.d.ts +17 -0
- package/dist/icons/bubble-minus.svelte +6 -0
- package/dist/icons/bubble-minus.svelte.d.ts +17 -0
- package/dist/icons/bubble-plus.svelte +6 -0
- package/dist/icons/bubble-plus.svelte.d.ts +17 -0
- package/dist/icons/bubble-text.svelte +6 -0
- package/dist/icons/bubble-text.svelte.d.ts +17 -0
- package/dist/icons/bubble-x.svelte +6 -0
- package/dist/icons/bubble-x.svelte.d.ts +17 -0
- package/dist/icons/bubble.svelte +6 -0
- package/dist/icons/bubble.svelte.d.ts +17 -0
- package/dist/icons/carambola.svelte +6 -0
- package/dist/icons/carambola.svelte.d.ts +17 -0
- package/dist/icons/circle-dashed-check.svelte +6 -0
- package/dist/icons/circle-dashed-check.svelte.d.ts +17 -0
- package/dist/icons/circle-dashed-minus.svelte +6 -0
- package/dist/icons/circle-dashed-minus.svelte.d.ts +17 -0
- package/dist/icons/circle-dashed-plus.svelte +6 -0
- package/dist/icons/circle-dashed-plus.svelte.d.ts +17 -0
- package/dist/icons/dumpling.svelte +6 -0
- package/dist/icons/dumpling.svelte.d.ts +17 -0
- package/dist/icons/eye-dotted.svelte +6 -0
- package/dist/icons/eye-dotted.svelte.d.ts +17 -0
- package/dist/icons/file-isr.svelte +6 -0
- package/dist/icons/file-isr.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +36 -0
- package/dist/icons/index.js +36 -0
- package/dist/icons/invoice.svelte +6 -0
- package/dist/icons/invoice.svelte.d.ts +17 -0
- package/dist/icons/layers-selected-bottom.svelte +6 -0
- package/dist/icons/layers-selected-bottom.svelte.d.ts +17 -0
- package/dist/icons/layers-selected.svelte +6 -0
- package/dist/icons/layers-selected.svelte.d.ts +17 -0
- package/dist/icons/lock-open-2.svelte +6 -0
- package/dist/icons/lock-open-2.svelte.d.ts +17 -0
- package/dist/icons/logs.svelte +6 -0
- package/dist/icons/logs.svelte.d.ts +17 -0
- package/dist/icons/message-dots.svelte +1 -1
- package/dist/icons/monkeybar.svelte +6 -0
- package/dist/icons/monkeybar.svelte.d.ts +17 -0
- package/dist/icons/pentagon-minus.svelte +6 -0
- package/dist/icons/pentagon-minus.svelte.d.ts +17 -0
- package/dist/icons/picture-in-picture-filled.svelte +6 -0
- package/dist/icons/picture-in-picture-filled.svelte.d.ts +17 -0
- package/dist/icons/picture-in-picture-top-filled.svelte +6 -0
- package/dist/icons/picture-in-picture-top-filled.svelte.d.ts +17 -0
- package/dist/icons/prism-light.svelte +6 -0
- package/dist/icons/prism-light.svelte.d.ts +17 -0
- package/dist/icons/shareplay.svelte +6 -0
- package/dist/icons/shareplay.svelte.d.ts +17 -0
- package/dist/icons/spaces.svelte +6 -0
- package/dist/icons/spaces.svelte.d.ts +17 -0
- package/dist/icons/squares-selected.svelte +6 -0
- package/dist/icons/squares-selected.svelte.d.ts +17 -0
- package/dist/icons/text-wrap-column.svelte +6 -0
- package/dist/icons/text-wrap-column.svelte.d.ts +17 -0
- package/dist/icons/toggle-left-filled.svelte +6 -0
- package/dist/icons/toggle-left-filled.svelte.d.ts +17 -0
- package/dist/icons/toggle-right-filled.svelte +6 -0
- package/dist/icons/toggle-right-filled.svelte.d.ts +17 -0
- package/dist/icons/u-turn-left.svelte +6 -0
- package/dist/icons/u-turn-left.svelte.d.ts +17 -0
- package/dist/icons/u-turn-right.svelte +6 -0
- package/dist/icons/u-turn-right.svelte.d.ts +17 -0
- package/dist/icons/user-screen.svelte +6 -0
- package/dist/icons/user-screen.svelte.d.ts +17 -0
- package/dist/icons-list.js +36 -0
- package/package.json +146 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M14.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0" }], ["path", { "d": "M9.5 14.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="blend-mode" {...$$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 BlendModeProps = typeof __propDef.props;
|
|
13
|
+
export type BlendModeEvents = typeof __propDef.events;
|
|
14
|
+
export type BlendModeSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BlendMode extends SvelteComponentTyped<BlendModeProps, BlendModeEvents, BlendModeSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 3c2.78 0 5.349 1.556 7.243 4.083c1.727 2.305 2.757 5.257 2.757 8.015c0 1.47 -.293 2.717 -.903 3.745c-.602 1.014 -1.479 1.758 -2.582 2.256c-1.593 .719 -3.333 .901 -6.515 .901s-4.922 -.182 -6.515 -.9c-1.103 -.499 -1.98 -1.243 -2.582 -2.257c-.61 -1.028 -.903 -2.274 -.903 -3.745c0 -2.758 1.03 -5.71 2.757 -8.015c1.894 -2.527 4.463 -4.083 7.243 -4.083" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="blob-filled" {...$$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 BlobFilledProps = typeof __propDef.props;
|
|
13
|
+
export type BlobFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type BlobFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BlobFilled extends SvelteComponentTyped<BlobFilledProps, BlobFilledEvents, BlobFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5.897 20.188c1.67 .752 3.896 .812 6.103 .812s4.434 -.059 6.104 -.812c.868 -.392 1.614 -.982 2.133 -1.856c.514 -.865 .763 -1.94 .763 -3.234c0 -2.577 -.983 -5.315 -2.557 -7.416c-1.57 -2.094 -3.833 -3.682 -6.443 -3.682s-4.873 1.588 -6.443 3.682c-1.574 2.101 -2.557 4.84 -2.557 7.416c0 1.295 .249 2.369 .763 3.234c.519 .874 1.265 1.464 2.134 1.856" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="blob" {...$$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 BlobProps = typeof __propDef.props;
|
|
13
|
+
export type BlobEvents = typeof __propDef.events;
|
|
14
|
+
export type BlobSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Blob extends SvelteComponentTyped<BlobProps, BlobEvents, BlobSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4.687 14.694l-.987 2.103c-.502 1.07 -.125 2.387 .908 2.945c1.096 .59 2.444 .13 2.972 -.995l.9 -1.92" }], ["path", { "d": "M18.317 14.576c1.818 -1.6 3.16 -3.78 3.64 -6.217c.235 -1.194 -.525 -2.351 -1.695 -2.586a2.14 2.14 0 0 0 -1.625 .326c-.478 .323 -.81 .826 -.922 1.398c-.208 1.054 -.695 2.037 -1.366 2.872" }], ["path", { "d": "M12.68 12.759a5.4 5.4 0 0 1 -1.283 .157c-.336 0 -.683 -.04 -1.03 -.115c-1.44 -.31 -2.89 -1.215 -3.709 -2.315a3.7 3.7 0 0 1 -.487 -.853a2.157 2.157 0 0 0 -2.818 -1.213c-1.107 .455 -1.641 1.736 -1.196 2.86c.508 1.278 1.404 2.45 2.53 3.415a11.2 11.2 0 0 0 3.791 2.133c.953 .31 1.942 .483 2.916 .483a9.8 9.8 0 0 0 3.162 -.537" }], ["path", { "d": "M10.37 12.801l.943 -2.013c.09 -.19 .357 -.19 .446 0l.923 1.97h.006h-.006l1.88 4.015l.923 1.971a2.16 2.16 0 0 0 1.957 1.254q .29 0 .576 -.081c1.303 -.365 1.92 -1.887 1.339 -3.129l-1.04 -2.218l-1.968 -4.204l-.003 .003l.003 -.003l-2.862 -6.112a2.16 2.16 0 0 0 -1.954 -1.254c-.833 0 -1.593 .488 -1.953 1.254l-2.92 6.232" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="brand-arc" {...$$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 BrandArcProps = typeof __propDef.props;
|
|
13
|
+
export type BrandArcEvents = typeof __propDef.events;
|
|
14
|
+
export type BrandArcSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BrandArc extends SvelteComponentTyped<BrandArcProps, BrandArcEvents, BrandArcSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M12
|
|
2
|
+
const iconNode = [["path", { "d": "M12 8.866l-2.733 -2.734a3.866 3.866 0 0 0 -5.467 5.467l2.733 2.734l5.467 5.467l8.202 -8.201a3.866 3.866 0 0 0 -5.469 -5.466l-8.201 8.2" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="brand-google-fit" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.4 2a6.33 6.33 0 0 1 5.491 3.176l.09 .162l.126 .027a6.335 6.335 0 0 1 4.889 5.934l.004 .234a6.333 6.333 0 0 1 -6.333 6.334l-.035 -.002l-.035 .05a5.26 5.26 0 0 1 -3.958 2.08l-.239 .005q -.722 0 -1.404 -.19l-.047 -.014l-3.434 2.061a1 1 0 0 1 -1.509 -.743l-.006 -.114v-2.434l-.121 -.06a3.67 3.67 0 0 1 -1.94 -3.042l-.006 -.197q 0 -.365 .07 -.717l.013 -.058l-.113 -.09a5.8 5.8 0 0 1 -2.098 -4.218l-.005 -.25a5.8 5.8 0 0 1 5.8 -5.8l.058 .001l.15 -.163a6.32 6.32 0 0 1 4.328 -1.967z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="bubble-filled" {...$$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 BubbleFilledProps = typeof __propDef.props;
|
|
13
|
+
export type BubbleFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type BubbleFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BubbleFilled extends SvelteComponentTyped<BubbleFilledProps, BubbleFilledEvents, BubbleFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.4 19a4.2 4.2 0 0 1 -1.57 -.298l-3.83 2.298v-3.134a2.668 2.668 0 0 1 -1.795 -3.773a4.8 4.8 0 0 1 2.908 -8.933a5.335 5.335 0 0 1 9.194 1.078a5.333 5.333 0 0 1 3.404 8.771" }], ["path", { "d": "M16 19h6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="bubble-minus" {...$$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 BubbleMinusProps = typeof __propDef.props;
|
|
13
|
+
export type BubbleMinusEvents = typeof __propDef.events;
|
|
14
|
+
export type BubbleMinusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BubbleMinus extends SvelteComponentTyped<BubbleMinusProps, BubbleMinusEvents, BubbleMinusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.4 19a4.2 4.2 0 0 1 -1.57 -.298l-3.83 2.298v-3.134a2.668 2.668 0 0 1 -1.795 -3.773a4.8 4.8 0 0 1 2.908 -8.933a5.335 5.335 0 0 1 9.194 1.078a5.333 5.333 0 0 1 4.45 6.89" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16v6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="bubble-plus" {...$$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 BubblePlusProps = typeof __propDef.props;
|
|
13
|
+
export type BubblePlusEvents = typeof __propDef.events;
|
|
14
|
+
export type BubblePlusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BubblePlus extends SvelteComponentTyped<BubblePlusProps, BubblePlusEvents, BubblePlusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M7 10h10" }], ["path", { "d": "M9 14h5" }], ["path", { "d": "M12.4 3a5.34 5.34 0 0 1 4.906 3.239a5.333 5.333 0 0 1 -1.195 10.6a4.26 4.26 0 0 1 -5.28 1.863l-3.831 2.298v-3.134a2.668 2.668 0 0 1 -1.795 -3.773a4.8 4.8 0 0 1 2.908 -8.933a5.33 5.33 0 0 1 4.287 -2.16" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="bubble-text" {...$$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 BubbleTextProps = typeof __propDef.props;
|
|
13
|
+
export type BubbleTextEvents = typeof __propDef.events;
|
|
14
|
+
export type BubbleTextSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BubbleText extends SvelteComponentTyped<BubbleTextProps, BubbleTextEvents, BubbleTextSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M13.5 18.75c-.345 .09 -.727 .25 -1.1 .25a4.3 4.3 0 0 1 -1.57 -.298l-3.83 2.298v-3.134a2.668 2.668 0 0 1 -1.795 -3.773a4.8 4.8 0 0 1 2.908 -8.933a5.335 5.335 0 0 1 9.194 1.078a5.333 5.333 0 0 1 4.484 6.778" }], ["path", { "d": "M22 22l-5 -5" }], ["path", { "d": "M17 22l5 -5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="bubble-x" {...$$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 BubbleXProps = typeof __propDef.props;
|
|
13
|
+
export type BubbleXEvents = typeof __propDef.events;
|
|
14
|
+
export type BubbleXSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BubbleX extends SvelteComponentTyped<BubbleXProps, BubbleXEvents, BubbleXSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.4 3a5.34 5.34 0 0 1 4.906 3.239a5.333 5.333 0 0 1 -1.195 10.6a4.26 4.26 0 0 1 -5.28 1.863l-3.831 2.298v-3.134a2.668 2.668 0 0 1 -1.795 -3.773a4.8 4.8 0 0 1 2.908 -8.933a5.33 5.33 0 0 1 4.287 -2.16" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="bubble" {...$$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 BubbleProps = typeof __propDef.props;
|
|
13
|
+
export type BubbleEvents = typeof __propDef.events;
|
|
14
|
+
export type BubbleSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Bubble extends SvelteComponentTyped<BubbleProps, BubbleEvents, BubbleSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17.286 21.09q -1.69 .001 -5.288 -2.615q -3.596 2.617 -5.288 2.616q -2.726 0 -.495 -6.8q -9.389 -6.775 2.135 -6.775h.076q 1.785 -5.516 3.574 -5.516q 1.785 0 3.574 5.516h.076q 11.525 0 2.133 6.774q 2.23 6.802 -.497 6.8" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="carambola" {...$$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 CarambolaProps = typeof __propDef.props;
|
|
13
|
+
export type CarambolaEvents = typeof __propDef.events;
|
|
14
|
+
export type CarambolaSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Carambola extends SvelteComponentTyped<CarambolaProps, CarambolaEvents, CarambolaSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8.56 3.69a9 9 0 0 0 -2.92 1.95" }], ["path", { "d": "M3.69 8.56a9 9 0 0 0 -.69 3.44" }], ["path", { "d": "M3.69 15.44a9 9 0 0 0 1.95 2.92" }], ["path", { "d": "M8.56 20.31a9 9 0 0 0 3.44 .69" }], ["path", { "d": "M15.44 20.31a9 9 0 0 0 2.92 -1.95" }], ["path", { "d": "M20.31 15.44a9 9 0 0 0 .69 -3.44" }], ["path", { "d": "M20.31 8.56a9 9 0 0 0 -1.95 -2.92" }], ["path", { "d": "M15.44 3.69a9 9 0 0 0 -3.44 -.69" }], ["path", { "d": "M9 12l2 2l4 -4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="circle-dashed-check" {...$$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 CircleDashedCheckProps = typeof __propDef.props;
|
|
13
|
+
export type CircleDashedCheckEvents = typeof __propDef.events;
|
|
14
|
+
export type CircleDashedCheckSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CircleDashedCheck extends SvelteComponentTyped<CircleDashedCheckProps, CircleDashedCheckEvents, CircleDashedCheckSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8.56 3.69a9 9 0 0 0 -2.92 1.95" }], ["path", { "d": "M3.69 8.56a9 9 0 0 0 -.69 3.44" }], ["path", { "d": "M3.69 15.44a9 9 0 0 0 1.95 2.92" }], ["path", { "d": "M8.56 20.31a9 9 0 0 0 3.44 .69" }], ["path", { "d": "M15.44 20.31a9 9 0 0 0 2.92 -1.95" }], ["path", { "d": "M20.31 15.44a9 9 0 0 0 .69 -3.44" }], ["path", { "d": "M20.31 8.56a9 9 0 0 0 -1.95 -2.92" }], ["path", { "d": "M15.44 3.69a9 9 0 0 0 -3.44 -.69" }], ["path", { "d": "M9 12h6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="circle-dashed-minus" {...$$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 CircleDashedMinusProps = typeof __propDef.props;
|
|
13
|
+
export type CircleDashedMinusEvents = typeof __propDef.events;
|
|
14
|
+
export type CircleDashedMinusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CircleDashedMinus extends SvelteComponentTyped<CircleDashedMinusProps, CircleDashedMinusEvents, CircleDashedMinusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8.56 3.69a9 9 0 0 0 -2.92 1.95" }], ["path", { "d": "M3.69 8.56a9 9 0 0 0 -.69 3.44" }], ["path", { "d": "M3.69 15.44a9 9 0 0 0 1.95 2.92" }], ["path", { "d": "M8.56 20.31a9 9 0 0 0 3.44 .69" }], ["path", { "d": "M15.44 20.31a9 9 0 0 0 2.92 -1.95" }], ["path", { "d": "M20.31 15.44a9 9 0 0 0 .69 -3.44" }], ["path", { "d": "M20.31 8.56a9 9 0 0 0 -1.95 -2.92" }], ["path", { "d": "M15.44 3.69a9 9 0 0 0 -3.44 -.69" }], ["path", { "d": "M9 12h6" }], ["path", { "d": "M12 9v6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="circle-dashed-plus" {...$$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 CircleDashedPlusProps = typeof __propDef.props;
|
|
13
|
+
export type CircleDashedPlusEvents = typeof __propDef.events;
|
|
14
|
+
export type CircleDashedPlusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CircleDashedPlus extends SvelteComponentTyped<CircleDashedPlusProps, CircleDashedPlusEvents, CircleDashedPlusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5.532 5.532a2.53 2.53 0 0 1 2.56 -.623a2.532 2.532 0 0 1 4.604 -.717q .146 -.24 .356 -.45a2.532 2.532 0 0 1 4.318 1.637a2.53 2.53 0 0 1 2.844 .511l.358 .358c1.384 1.385 -.7 5.713 -4.655 9.669c-3.956 3.955 -8.284 6.04 -9.669 4.655l-.358 -.358l-.114 -.122a2.53 2.53 0 0 1 -.398 -2.724a2.532 2.532 0 0 1 -1.186 -4.675a2.532 2.532 0 0 1 .718 -4.603a2.53 2.53 0 0 1 .622 -2.558" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="dumpling" {...$$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 DumplingProps = typeof __propDef.props;
|
|
13
|
+
export type DumplingEvents = typeof __propDef.events;
|
|
14
|
+
export type DumplingSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Dumpling extends SvelteComponentTyped<DumplingProps, DumplingEvents, DumplingSlots> {
|
|
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": "M21 12h.01" }], ["path", { "d": "M3 12h.01" }], ["path", { "d": "M5 15h.01" }], ["path", { "d": "M5 9h.01" }], ["path", { "d": "M19 15h.01" }], ["path", { "d": "M12 18h.01" }], ["path", { "d": "M12 6h.01" }], ["path", { "d": "M8 17h.01" }], ["path", { "d": "M8 7h.01" }], ["path", { "d": "M16 17h.01" }], ["path", { "d": "M16 7h.01" }], ["path", { "d": "M19 9h.01" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="eye-dotted" {...$$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 EyeDottedProps = typeof __propDef.props;
|
|
13
|
+
export type EyeDottedEvents = typeof __propDef.events;
|
|
14
|
+
export type EyeDottedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class EyeDotted extends SvelteComponentTyped<EyeDottedProps, EyeDottedEvents, EyeDottedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M15 3v4a1 1 0 0 0 1 1h4" }], ["path", { "d": "M15 3v4a1 1 0 0 0 1 1h4" }], ["path", { "d": "M6 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7" }], ["path", { "d": "M3 15l3 -3l3 3" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="file-isr" {...$$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 FileIsrProps = typeof __propDef.props;
|
|
13
|
+
export type FileIsrEvents = typeof __propDef.events;
|
|
14
|
+
export type FileIsrSlots = typeof __propDef.slots;
|
|
15
|
+
export default class FileIsr extends SvelteComponentTyped<FileIsrProps, FileIsrEvents, FileIsrSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|