@tabler/icons-svelte 3.0.2 → 3.1.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/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 +18 -0
- package/dist/icons/index.js +18 -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/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/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 +18 -0
- package/package.json +74 -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 {};
|
|
@@ -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 {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -463,7 +463,9 @@ export { default as IconBleachChlorine } from './bleach-chlorine.svelte';
|
|
|
463
463
|
export { default as IconBleachNoChlorine } from './bleach-no-chlorine.svelte';
|
|
464
464
|
export { default as IconBleachOff } from './bleach-off.svelte';
|
|
465
465
|
export { default as IconBleach } from './bleach.svelte';
|
|
466
|
+
export { default as IconBlendMode } from './blend-mode.svelte';
|
|
466
467
|
export { default as IconBlender } from './blender.svelte';
|
|
468
|
+
export { default as IconBlob } from './blob.svelte';
|
|
467
469
|
export { default as IconBlockquote } from './blockquote.svelte';
|
|
468
470
|
export { default as IconBluetoothConnected } from './bluetooth-connected.svelte';
|
|
469
471
|
export { default as IconBluetoothOff } from './bluetooth-off.svelte';
|
|
@@ -590,6 +592,7 @@ export { default as IconBrandAppleArcade } from './brand-apple-arcade.svelte';
|
|
|
590
592
|
export { default as IconBrandApplePodcast } from './brand-apple-podcast.svelte';
|
|
591
593
|
export { default as IconBrandApple } from './brand-apple.svelte';
|
|
592
594
|
export { default as IconBrandAppstore } from './brand-appstore.svelte';
|
|
595
|
+
export { default as IconBrandArc } from './brand-arc.svelte';
|
|
593
596
|
export { default as IconBrandAsana } from './brand-asana.svelte';
|
|
594
597
|
export { default as IconBrandAstro } from './brand-astro.svelte';
|
|
595
598
|
export { default as IconBrandAuth0 } from './brand-auth0.svelte';
|
|
@@ -1975,6 +1978,7 @@ export { default as IconEyeCode } from './eye-code.svelte';
|
|
|
1975
1978
|
export { default as IconEyeCog } from './eye-cog.svelte';
|
|
1976
1979
|
export { default as IconEyeDiscount } from './eye-discount.svelte';
|
|
1977
1980
|
export { default as IconEyeDollar } from './eye-dollar.svelte';
|
|
1981
|
+
export { default as IconEyeDotted } from './eye-dotted.svelte';
|
|
1978
1982
|
export { default as IconEyeDown } from './eye-down.svelte';
|
|
1979
1983
|
export { default as IconEyeEdit } from './eye-edit.svelte';
|
|
1980
1984
|
export { default as IconEyeExclamation } from './eye-exclamation.svelte';
|
|
@@ -2036,6 +2040,7 @@ export { default as IconFileImport } from './file-import.svelte';
|
|
|
2036
2040
|
export { default as IconFileInfinity } from './file-infinity.svelte';
|
|
2037
2041
|
export { default as IconFileInfo } from './file-info.svelte';
|
|
2038
2042
|
export { default as IconFileInvoice } from './file-invoice.svelte';
|
|
2043
|
+
export { default as IconFileIsr } from './file-isr.svelte';
|
|
2039
2044
|
export { default as IconFileLambda } from './file-lambda.svelte';
|
|
2040
2045
|
export { default as IconFileLike } from './file-like.svelte';
|
|
2041
2046
|
export { default as IconFileMinus } from './file-minus.svelte';
|
|
@@ -2539,6 +2544,7 @@ export { default as IconInputAi } from './input-ai.svelte';
|
|
|
2539
2544
|
export { default as IconInputCheck } from './input-check.svelte';
|
|
2540
2545
|
export { default as IconInputSearch } from './input-search.svelte';
|
|
2541
2546
|
export { default as IconInputX } from './input-x.svelte';
|
|
2547
|
+
export { default as IconInvoice } from './invoice.svelte';
|
|
2542
2548
|
export { default as IconIroning1 } from './ironing-1.svelte';
|
|
2543
2549
|
export { default as IconIroning2 } from './ironing-2.svelte';
|
|
2544
2550
|
export { default as IconIroning3 } from './ironing-3.svelte';
|
|
@@ -2590,6 +2596,8 @@ export { default as IconLayersIntersect2 } from './layers-intersect-2.svelte';
|
|
|
2590
2596
|
export { default as IconLayersIntersect } from './layers-intersect.svelte';
|
|
2591
2597
|
export { default as IconLayersLinked } from './layers-linked.svelte';
|
|
2592
2598
|
export { default as IconLayersOff } from './layers-off.svelte';
|
|
2599
|
+
export { default as IconLayersSelectedBottom } from './layers-selected-bottom.svelte';
|
|
2600
|
+
export { default as IconLayersSelected } from './layers-selected.svelte';
|
|
2593
2601
|
export { default as IconLayersSubtract } from './layers-subtract.svelte';
|
|
2594
2602
|
export { default as IconLayersUnion } from './layers-union.svelte';
|
|
2595
2603
|
export { default as IconLayout2 } from './layout-2.svelte';
|
|
@@ -2763,6 +2771,7 @@ export { default as IconLockExclamation } from './lock-exclamation.svelte';
|
|
|
2763
2771
|
export { default as IconLockHeart } from './lock-heart.svelte';
|
|
2764
2772
|
export { default as IconLockMinus } from './lock-minus.svelte';
|
|
2765
2773
|
export { default as IconLockOff } from './lock-off.svelte';
|
|
2774
|
+
export { default as IconLockOpen2 } from './lock-open-2.svelte';
|
|
2766
2775
|
export { default as IconLockOpenOff } from './lock-open-off.svelte';
|
|
2767
2776
|
export { default as IconLockOpen } from './lock-open.svelte';
|
|
2768
2777
|
export { default as IconLockPause } from './lock-pause.svelte';
|
|
@@ -2789,6 +2798,7 @@ export { default as IconLogin2 } from './login-2.svelte';
|
|
|
2789
2798
|
export { default as IconLogin } from './login.svelte';
|
|
2790
2799
|
export { default as IconLogout2 } from './logout-2.svelte';
|
|
2791
2800
|
export { default as IconLogout } from './logout.svelte';
|
|
2801
|
+
export { default as IconLogs } from './logs.svelte';
|
|
2792
2802
|
export { default as IconLollipopOff } from './lollipop-off.svelte';
|
|
2793
2803
|
export { default as IconLollipop } from './lollipop.svelte';
|
|
2794
2804
|
export { default as IconLuggageOff } from './luggage-off.svelte';
|
|
@@ -3485,6 +3495,7 @@ export { default as IconPresentationOff } from './presentation-off.svelte';
|
|
|
3485
3495
|
export { default as IconPresentation } from './presentation.svelte';
|
|
3486
3496
|
export { default as IconPrinterOff } from './printer-off.svelte';
|
|
3487
3497
|
export { default as IconPrinter } from './printer.svelte';
|
|
3498
|
+
export { default as IconPrismLight } from './prism-light.svelte';
|
|
3488
3499
|
export { default as IconPrismOff } from './prism-off.svelte';
|
|
3489
3500
|
export { default as IconPrismPlus } from './prism-plus.svelte';
|
|
3490
3501
|
export { default as IconPrism } from './prism.svelte';
|
|
@@ -3761,6 +3772,7 @@ export { default as IconShare2 } from './share-2.svelte';
|
|
|
3761
3772
|
export { default as IconShare3 } from './share-3.svelte';
|
|
3762
3773
|
export { default as IconShareOff } from './share-off.svelte';
|
|
3763
3774
|
export { default as IconShare } from './share.svelte';
|
|
3775
|
+
export { default as IconShareplay } from './shareplay.svelte';
|
|
3764
3776
|
export { default as IconShieldBolt } from './shield-bolt.svelte';
|
|
3765
3777
|
export { default as IconShieldCancel } from './shield-cancel.svelte';
|
|
3766
3778
|
export { default as IconShieldCheck } from './shield-check.svelte';
|
|
@@ -3897,6 +3909,7 @@ export { default as IconSoup } from './soup.svelte';
|
|
|
3897
3909
|
export { default as IconSourceCode } from './source-code.svelte';
|
|
3898
3910
|
export { default as IconSpaceOff } from './space-off.svelte';
|
|
3899
3911
|
export { default as IconSpace } from './space.svelte';
|
|
3912
|
+
export { default as IconSpaces } from './spaces.svelte';
|
|
3900
3913
|
export { default as IconSpacingHorizontal } from './spacing-horizontal.svelte';
|
|
3901
3914
|
export { default as IconSpacingVertical } from './spacing-vertical.svelte';
|
|
3902
3915
|
export { default as IconSpade } from './spade.svelte';
|
|
@@ -4051,6 +4064,7 @@ export { default as IconSquareToggle } from './square-toggle.svelte';
|
|
|
4051
4064
|
export { default as IconSquareX } from './square-x.svelte';
|
|
4052
4065
|
export { default as IconSquare } from './square.svelte';
|
|
4053
4066
|
export { default as IconSquaresDiagonal } from './squares-diagonal.svelte';
|
|
4067
|
+
export { default as IconSquaresSelected } from './squares-selected.svelte';
|
|
4054
4068
|
export { default as IconSquares } from './squares.svelte';
|
|
4055
4069
|
export { default as IconStack2 } from './stack-2.svelte';
|
|
4056
4070
|
export { default as IconStack3 } from './stack-3.svelte';
|
|
@@ -4311,6 +4325,8 @@ export { default as IconTxt } from './txt.svelte';
|
|
|
4311
4325
|
export { default as IconTypeface } from './typeface.svelte';
|
|
4312
4326
|
export { default as IconTypographyOff } from './typography-off.svelte';
|
|
4313
4327
|
export { default as IconTypography } from './typography.svelte';
|
|
4328
|
+
export { default as IconUTurnLeft } from './u-turn-left.svelte';
|
|
4329
|
+
export { default as IconUTurnRight } from './u-turn-right.svelte';
|
|
4314
4330
|
export { default as IconUfoOff } from './ufo-off.svelte';
|
|
4315
4331
|
export { default as IconUfo } from './ufo.svelte';
|
|
4316
4332
|
export { default as IconUmbrellaOff } from './umbrella-off.svelte';
|
|
@@ -4341,6 +4357,7 @@ export { default as IconUserPin } from './user-pin.svelte';
|
|
|
4341
4357
|
export { default as IconUserPlus } from './user-plus.svelte';
|
|
4342
4358
|
export { default as IconUserQuestion } from './user-question.svelte';
|
|
4343
4359
|
export { default as IconUserScan } from './user-scan.svelte';
|
|
4360
|
+
export { default as IconUserScreen } from './user-screen.svelte';
|
|
4344
4361
|
export { default as IconUserSearch } from './user-search.svelte';
|
|
4345
4362
|
export { default as IconUserShare } from './user-share.svelte';
|
|
4346
4363
|
export { default as IconUserShield } from './user-shield.svelte';
|
|
@@ -4642,6 +4659,7 @@ export { default as IconBellZFilled } from './bell-z-filled.svelte';
|
|
|
4642
4659
|
export { default as IconBellFilled } from './bell-filled.svelte';
|
|
4643
4660
|
export { default as IconBiohazardFilled } from './biohazard-filled.svelte';
|
|
4644
4661
|
export { default as IconBladeFilled } from './blade-filled.svelte';
|
|
4662
|
+
export { default as IconBlobFilled } from './blob-filled.svelte';
|
|
4645
4663
|
export { default as IconBombFilled } from './bomb-filled.svelte';
|
|
4646
4664
|
export { default as IconBoneFilled } from './bone-filled.svelte';
|
|
4647
4665
|
export { default as IconBookFilled } from './book-filled.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -463,7 +463,9 @@ export { default as IconBleachChlorine } from './bleach-chlorine.svelte';
|
|
|
463
463
|
export { default as IconBleachNoChlorine } from './bleach-no-chlorine.svelte';
|
|
464
464
|
export { default as IconBleachOff } from './bleach-off.svelte';
|
|
465
465
|
export { default as IconBleach } from './bleach.svelte';
|
|
466
|
+
export { default as IconBlendMode } from './blend-mode.svelte';
|
|
466
467
|
export { default as IconBlender } from './blender.svelte';
|
|
468
|
+
export { default as IconBlob } from './blob.svelte';
|
|
467
469
|
export { default as IconBlockquote } from './blockquote.svelte';
|
|
468
470
|
export { default as IconBluetoothConnected } from './bluetooth-connected.svelte';
|
|
469
471
|
export { default as IconBluetoothOff } from './bluetooth-off.svelte';
|
|
@@ -590,6 +592,7 @@ export { default as IconBrandAppleArcade } from './brand-apple-arcade.svelte';
|
|
|
590
592
|
export { default as IconBrandApplePodcast } from './brand-apple-podcast.svelte';
|
|
591
593
|
export { default as IconBrandApple } from './brand-apple.svelte';
|
|
592
594
|
export { default as IconBrandAppstore } from './brand-appstore.svelte';
|
|
595
|
+
export { default as IconBrandArc } from './brand-arc.svelte';
|
|
593
596
|
export { default as IconBrandAsana } from './brand-asana.svelte';
|
|
594
597
|
export { default as IconBrandAstro } from './brand-astro.svelte';
|
|
595
598
|
export { default as IconBrandAuth0 } from './brand-auth0.svelte';
|
|
@@ -1975,6 +1978,7 @@ export { default as IconEyeCode } from './eye-code.svelte';
|
|
|
1975
1978
|
export { default as IconEyeCog } from './eye-cog.svelte';
|
|
1976
1979
|
export { default as IconEyeDiscount } from './eye-discount.svelte';
|
|
1977
1980
|
export { default as IconEyeDollar } from './eye-dollar.svelte';
|
|
1981
|
+
export { default as IconEyeDotted } from './eye-dotted.svelte';
|
|
1978
1982
|
export { default as IconEyeDown } from './eye-down.svelte';
|
|
1979
1983
|
export { default as IconEyeEdit } from './eye-edit.svelte';
|
|
1980
1984
|
export { default as IconEyeExclamation } from './eye-exclamation.svelte';
|
|
@@ -2036,6 +2040,7 @@ export { default as IconFileImport } from './file-import.svelte';
|
|
|
2036
2040
|
export { default as IconFileInfinity } from './file-infinity.svelte';
|
|
2037
2041
|
export { default as IconFileInfo } from './file-info.svelte';
|
|
2038
2042
|
export { default as IconFileInvoice } from './file-invoice.svelte';
|
|
2043
|
+
export { default as IconFileIsr } from './file-isr.svelte';
|
|
2039
2044
|
export { default as IconFileLambda } from './file-lambda.svelte';
|
|
2040
2045
|
export { default as IconFileLike } from './file-like.svelte';
|
|
2041
2046
|
export { default as IconFileMinus } from './file-minus.svelte';
|
|
@@ -2539,6 +2544,7 @@ export { default as IconInputAi } from './input-ai.svelte';
|
|
|
2539
2544
|
export { default as IconInputCheck } from './input-check.svelte';
|
|
2540
2545
|
export { default as IconInputSearch } from './input-search.svelte';
|
|
2541
2546
|
export { default as IconInputX } from './input-x.svelte';
|
|
2547
|
+
export { default as IconInvoice } from './invoice.svelte';
|
|
2542
2548
|
export { default as IconIroning1 } from './ironing-1.svelte';
|
|
2543
2549
|
export { default as IconIroning2 } from './ironing-2.svelte';
|
|
2544
2550
|
export { default as IconIroning3 } from './ironing-3.svelte';
|
|
@@ -2590,6 +2596,8 @@ export { default as IconLayersIntersect2 } from './layers-intersect-2.svelte';
|
|
|
2590
2596
|
export { default as IconLayersIntersect } from './layers-intersect.svelte';
|
|
2591
2597
|
export { default as IconLayersLinked } from './layers-linked.svelte';
|
|
2592
2598
|
export { default as IconLayersOff } from './layers-off.svelte';
|
|
2599
|
+
export { default as IconLayersSelectedBottom } from './layers-selected-bottom.svelte';
|
|
2600
|
+
export { default as IconLayersSelected } from './layers-selected.svelte';
|
|
2593
2601
|
export { default as IconLayersSubtract } from './layers-subtract.svelte';
|
|
2594
2602
|
export { default as IconLayersUnion } from './layers-union.svelte';
|
|
2595
2603
|
export { default as IconLayout2 } from './layout-2.svelte';
|
|
@@ -2763,6 +2771,7 @@ export { default as IconLockExclamation } from './lock-exclamation.svelte';
|
|
|
2763
2771
|
export { default as IconLockHeart } from './lock-heart.svelte';
|
|
2764
2772
|
export { default as IconLockMinus } from './lock-minus.svelte';
|
|
2765
2773
|
export { default as IconLockOff } from './lock-off.svelte';
|
|
2774
|
+
export { default as IconLockOpen2 } from './lock-open-2.svelte';
|
|
2766
2775
|
export { default as IconLockOpenOff } from './lock-open-off.svelte';
|
|
2767
2776
|
export { default as IconLockOpen } from './lock-open.svelte';
|
|
2768
2777
|
export { default as IconLockPause } from './lock-pause.svelte';
|
|
@@ -2789,6 +2798,7 @@ export { default as IconLogin2 } from './login-2.svelte';
|
|
|
2789
2798
|
export { default as IconLogin } from './login.svelte';
|
|
2790
2799
|
export { default as IconLogout2 } from './logout-2.svelte';
|
|
2791
2800
|
export { default as IconLogout } from './logout.svelte';
|
|
2801
|
+
export { default as IconLogs } from './logs.svelte';
|
|
2792
2802
|
export { default as IconLollipopOff } from './lollipop-off.svelte';
|
|
2793
2803
|
export { default as IconLollipop } from './lollipop.svelte';
|
|
2794
2804
|
export { default as IconLuggageOff } from './luggage-off.svelte';
|
|
@@ -3485,6 +3495,7 @@ export { default as IconPresentationOff } from './presentation-off.svelte';
|
|
|
3485
3495
|
export { default as IconPresentation } from './presentation.svelte';
|
|
3486
3496
|
export { default as IconPrinterOff } from './printer-off.svelte';
|
|
3487
3497
|
export { default as IconPrinter } from './printer.svelte';
|
|
3498
|
+
export { default as IconPrismLight } from './prism-light.svelte';
|
|
3488
3499
|
export { default as IconPrismOff } from './prism-off.svelte';
|
|
3489
3500
|
export { default as IconPrismPlus } from './prism-plus.svelte';
|
|
3490
3501
|
export { default as IconPrism } from './prism.svelte';
|
|
@@ -3761,6 +3772,7 @@ export { default as IconShare2 } from './share-2.svelte';
|
|
|
3761
3772
|
export { default as IconShare3 } from './share-3.svelte';
|
|
3762
3773
|
export { default as IconShareOff } from './share-off.svelte';
|
|
3763
3774
|
export { default as IconShare } from './share.svelte';
|
|
3775
|
+
export { default as IconShareplay } from './shareplay.svelte';
|
|
3764
3776
|
export { default as IconShieldBolt } from './shield-bolt.svelte';
|
|
3765
3777
|
export { default as IconShieldCancel } from './shield-cancel.svelte';
|
|
3766
3778
|
export { default as IconShieldCheck } from './shield-check.svelte';
|
|
@@ -3897,6 +3909,7 @@ export { default as IconSoup } from './soup.svelte';
|
|
|
3897
3909
|
export { default as IconSourceCode } from './source-code.svelte';
|
|
3898
3910
|
export { default as IconSpaceOff } from './space-off.svelte';
|
|
3899
3911
|
export { default as IconSpace } from './space.svelte';
|
|
3912
|
+
export { default as IconSpaces } from './spaces.svelte';
|
|
3900
3913
|
export { default as IconSpacingHorizontal } from './spacing-horizontal.svelte';
|
|
3901
3914
|
export { default as IconSpacingVertical } from './spacing-vertical.svelte';
|
|
3902
3915
|
export { default as IconSpade } from './spade.svelte';
|
|
@@ -4051,6 +4064,7 @@ export { default as IconSquareToggle } from './square-toggle.svelte';
|
|
|
4051
4064
|
export { default as IconSquareX } from './square-x.svelte';
|
|
4052
4065
|
export { default as IconSquare } from './square.svelte';
|
|
4053
4066
|
export { default as IconSquaresDiagonal } from './squares-diagonal.svelte';
|
|
4067
|
+
export { default as IconSquaresSelected } from './squares-selected.svelte';
|
|
4054
4068
|
export { default as IconSquares } from './squares.svelte';
|
|
4055
4069
|
export { default as IconStack2 } from './stack-2.svelte';
|
|
4056
4070
|
export { default as IconStack3 } from './stack-3.svelte';
|
|
@@ -4311,6 +4325,8 @@ export { default as IconTxt } from './txt.svelte';
|
|
|
4311
4325
|
export { default as IconTypeface } from './typeface.svelte';
|
|
4312
4326
|
export { default as IconTypographyOff } from './typography-off.svelte';
|
|
4313
4327
|
export { default as IconTypography } from './typography.svelte';
|
|
4328
|
+
export { default as IconUTurnLeft } from './u-turn-left.svelte';
|
|
4329
|
+
export { default as IconUTurnRight } from './u-turn-right.svelte';
|
|
4314
4330
|
export { default as IconUfoOff } from './ufo-off.svelte';
|
|
4315
4331
|
export { default as IconUfo } from './ufo.svelte';
|
|
4316
4332
|
export { default as IconUmbrellaOff } from './umbrella-off.svelte';
|
|
@@ -4341,6 +4357,7 @@ export { default as IconUserPin } from './user-pin.svelte';
|
|
|
4341
4357
|
export { default as IconUserPlus } from './user-plus.svelte';
|
|
4342
4358
|
export { default as IconUserQuestion } from './user-question.svelte';
|
|
4343
4359
|
export { default as IconUserScan } from './user-scan.svelte';
|
|
4360
|
+
export { default as IconUserScreen } from './user-screen.svelte';
|
|
4344
4361
|
export { default as IconUserSearch } from './user-search.svelte';
|
|
4345
4362
|
export { default as IconUserShare } from './user-share.svelte';
|
|
4346
4363
|
export { default as IconUserShield } from './user-shield.svelte';
|
|
@@ -4642,6 +4659,7 @@ export { default as IconBellZFilled } from './bell-z-filled.svelte';
|
|
|
4642
4659
|
export { default as IconBellFilled } from './bell-filled.svelte';
|
|
4643
4660
|
export { default as IconBiohazardFilled } from './biohazard-filled.svelte';
|
|
4644
4661
|
export { default as IconBladeFilled } from './blade-filled.svelte';
|
|
4662
|
+
export { default as IconBlobFilled } from './blob-filled.svelte';
|
|
4645
4663
|
export { default as IconBombFilled } from './bomb-filled.svelte';
|
|
4646
4664
|
export { default as IconBoneFilled } from './bone-filled.svelte';
|
|
4647
4665
|
export { default as IconBookFilled } from './book-filled.svelte';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M14 3v4a1 1 0 0 0 1 1h4" }], ["path", { "d": "M19 12v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-14a2 2 0 0 1 2 -2h7l5 5v4.25" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="invoice" {...$$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 InvoiceProps = typeof __propDef.props;
|
|
13
|
+
export type InvoiceEvents = typeof __propDef.events;
|
|
14
|
+
export type InvoiceSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Invoice extends SvelteComponentTyped<InvoiceProps, InvoiceEvents, InvoiceSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 14.5l4 -4" }], ["path", { "d": "M9.496 20l4.004 -4z" }], ["path", { "d": "M4.586 19.414l3.914 -3.914" }], ["path", { "d": "M8 6a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="layers-selected-bottom" {...$$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 LayersSelectedBottomProps = typeof __propDef.props;
|
|
13
|
+
export type LayersSelectedBottomEvents = typeof __propDef.events;
|
|
14
|
+
export type LayersSelectedBottomSlots = typeof __propDef.slots;
|
|
15
|
+
export default class LayersSelectedBottom extends SvelteComponentTyped<LayersSelectedBottomProps, LayersSelectedBottomEvents, LayersSelectedBottomSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8 10.5l6.492 -6.492" }], ["path", { "d": "M13.496 16l6.504 -6.504z" }], ["path", { "d": "M8.586 15.414l10.827 -10.827" }], ["path", { "d": "M8 6a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="layers-selected" {...$$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 LayersSelectedProps = typeof __propDef.props;
|
|
13
|
+
export type LayersSelectedEvents = typeof __propDef.events;
|
|
14
|
+
export type LayersSelectedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class LayersSelected extends SvelteComponentTyped<LayersSelectedProps, LayersSelectedEvents, LayersSelectedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M9 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0" }], ["path", { "d": "M13 11v-4a4 4 0 1 1 8 0v4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="lock-open-2" {...$$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 LockOpen_2Props = typeof __propDef.props;
|
|
13
|
+
export type LockOpen_2Events = typeof __propDef.events;
|
|
14
|
+
export type LockOpen_2Slots = typeof __propDef.slots;
|
|
15
|
+
export default class LockOpen_2 extends SvelteComponentTyped<LockOpen_2Props, LockOpen_2Events, LockOpen_2Slots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 12h.01" }], ["path", { "d": "M4 6h.01" }], ["path", { "d": "M4 18h.01" }], ["path", { "d": "M8 18h2" }], ["path", { "d": "M8 12h2" }], ["path", { "d": "M8 6h2" }], ["path", { "d": "M14 6h6" }], ["path", { "d": "M14 12h6" }], ["path", { "d": "M14 18h6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="logs" {...$$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 LogsProps = typeof __propDef.props;
|
|
13
|
+
export type LogsEvents = typeof __propDef.events;
|
|
14
|
+
export type LogsSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Logs extends SvelteComponentTyped<LogsProps, LogsEvents, LogsSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4.731 19h11.539a1 1 0 0 0 .866 -1.5l-5.769 -10a1 1 0 0 0 -1.732 0l-5.769 10a1 1 0 0 0 .865 1.5" }], ["path", { "d": "M2 13h4.45" }], ["path", { "d": "M18 5l-4.5 6" }], ["path", { "d": "M22 9l-7.75 3.25" }], ["path", { "d": "M22 15l-7 -1.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="prism-light" {...$$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 PrismLightProps = typeof __propDef.props;
|
|
13
|
+
export type PrismLightEvents = typeof __propDef.events;
|
|
14
|
+
export type PrismLightSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PrismLight extends SvelteComponentTyped<PrismLightProps, PrismLightEvents, PrismLightSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M18 18a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8a3 3 0 0 0 3 3" }], ["path", { "d": "M9 20h6l-3 -5z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="shareplay" {...$$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 ShareplayProps = typeof __propDef.props;
|
|
13
|
+
export type ShareplayEvents = typeof __propDef.events;
|
|
14
|
+
export type ShareplaySlots = typeof __propDef.slots;
|
|
15
|
+
export default class Shareplay extends SvelteComponentTyped<ShareplayProps, ShareplayEvents, ShareplaySlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M6.045 9.777a6 6 0 1 0 5.951 .023" }], ["path", { "d": "M11.997 20.196a6 6 0 1 0 -2.948 -5.97" }], ["path", { "d": "M17.95 9.785q .05 -.386 .05 -.785a6 6 0 1 0 -3.056 5.23" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="spaces" {...$$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 SpacesProps = typeof __propDef.props;
|
|
13
|
+
export type SpacesEvents = typeof __propDef.events;
|
|
14
|
+
export type SpacesSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Spaces extends SvelteComponentTyped<SpacesProps, SpacesEvents, SpacesSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8 10a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M8 14.5l6.492 -6.492" }], ["path", { "d": "M13.496 20l6.504 -6.504z" }], ["path", { "d": "M8.586 19.414l10.827 -10.827" }], ["path", { "d": "M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="squares-selected" {...$$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 SquaresSelectedProps = typeof __propDef.props;
|
|
13
|
+
export type SquaresSelectedEvents = typeof __propDef.events;
|
|
14
|
+
export type SquaresSelectedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class SquaresSelected extends SvelteComponentTyped<SquaresSelectedProps, SquaresSelectedEvents, SquaresSelectedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -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 UTurnLeftProps = typeof __propDef.props;
|
|
13
|
+
export type UTurnLeftEvents = typeof __propDef.events;
|
|
14
|
+
export type UTurnLeftSlots = typeof __propDef.slots;
|
|
15
|
+
export default class UTurnLeft extends SvelteComponentTyped<UTurnLeftProps, UTurnLeftEvents, UTurnLeftSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -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 UTurnRightProps = typeof __propDef.props;
|
|
13
|
+
export type UTurnRightEvents = typeof __propDef.events;
|
|
14
|
+
export type UTurnRightSlots = typeof __propDef.slots;
|
|
15
|
+
export default class UTurnRight extends SvelteComponentTyped<UTurnRightProps, UTurnRightEvents, UTurnRightSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M19.03 17.818a3 3 0 0 0 1.97 -2.818v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8c0 1.317 .85 2.436 2.03 2.84" }], ["path", { "d": "M10 14a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" }], ["path", { "d": "M8 21a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="user-screen" {...$$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 UserScreenProps = typeof __propDef.props;
|
|
13
|
+
export type UserScreenEvents = typeof __propDef.events;
|
|
14
|
+
export type UserScreenSlots = typeof __propDef.slots;
|
|
15
|
+
export default class UserScreen extends SvelteComponentTyped<UserScreenProps, UserScreenEvents, UserScreenSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -464,7 +464,9 @@ export default [
|
|
|
464
464
|
"bleach-no-chlorine",
|
|
465
465
|
"bleach-off",
|
|
466
466
|
"bleach",
|
|
467
|
+
"blend-mode",
|
|
467
468
|
"blender",
|
|
469
|
+
"blob",
|
|
468
470
|
"blockquote",
|
|
469
471
|
"bluetooth-connected",
|
|
470
472
|
"bluetooth-off",
|
|
@@ -591,6 +593,7 @@ export default [
|
|
|
591
593
|
"brand-apple-podcast",
|
|
592
594
|
"brand-apple",
|
|
593
595
|
"brand-appstore",
|
|
596
|
+
"brand-arc",
|
|
594
597
|
"brand-asana",
|
|
595
598
|
"brand-astro",
|
|
596
599
|
"brand-auth0",
|
|
@@ -1976,6 +1979,7 @@ export default [
|
|
|
1976
1979
|
"eye-cog",
|
|
1977
1980
|
"eye-discount",
|
|
1978
1981
|
"eye-dollar",
|
|
1982
|
+
"eye-dotted",
|
|
1979
1983
|
"eye-down",
|
|
1980
1984
|
"eye-edit",
|
|
1981
1985
|
"eye-exclamation",
|
|
@@ -2037,6 +2041,7 @@ export default [
|
|
|
2037
2041
|
"file-infinity",
|
|
2038
2042
|
"file-info",
|
|
2039
2043
|
"file-invoice",
|
|
2044
|
+
"file-isr",
|
|
2040
2045
|
"file-lambda",
|
|
2041
2046
|
"file-like",
|
|
2042
2047
|
"file-minus",
|
|
@@ -2540,6 +2545,7 @@ export default [
|
|
|
2540
2545
|
"input-check",
|
|
2541
2546
|
"input-search",
|
|
2542
2547
|
"input-x",
|
|
2548
|
+
"invoice",
|
|
2543
2549
|
"ironing-1",
|
|
2544
2550
|
"ironing-2",
|
|
2545
2551
|
"ironing-3",
|
|
@@ -2591,6 +2597,8 @@ export default [
|
|
|
2591
2597
|
"layers-intersect",
|
|
2592
2598
|
"layers-linked",
|
|
2593
2599
|
"layers-off",
|
|
2600
|
+
"layers-selected-bottom",
|
|
2601
|
+
"layers-selected",
|
|
2594
2602
|
"layers-subtract",
|
|
2595
2603
|
"layers-union",
|
|
2596
2604
|
"layout-2",
|
|
@@ -2764,6 +2772,7 @@ export default [
|
|
|
2764
2772
|
"lock-heart",
|
|
2765
2773
|
"lock-minus",
|
|
2766
2774
|
"lock-off",
|
|
2775
|
+
"lock-open-2",
|
|
2767
2776
|
"lock-open-off",
|
|
2768
2777
|
"lock-open",
|
|
2769
2778
|
"lock-pause",
|
|
@@ -2790,6 +2799,7 @@ export default [
|
|
|
2790
2799
|
"login",
|
|
2791
2800
|
"logout-2",
|
|
2792
2801
|
"logout",
|
|
2802
|
+
"logs",
|
|
2793
2803
|
"lollipop-off",
|
|
2794
2804
|
"lollipop",
|
|
2795
2805
|
"luggage-off",
|
|
@@ -3486,6 +3496,7 @@ export default [
|
|
|
3486
3496
|
"presentation",
|
|
3487
3497
|
"printer-off",
|
|
3488
3498
|
"printer",
|
|
3499
|
+
"prism-light",
|
|
3489
3500
|
"prism-off",
|
|
3490
3501
|
"prism-plus",
|
|
3491
3502
|
"prism",
|
|
@@ -3762,6 +3773,7 @@ export default [
|
|
|
3762
3773
|
"share-3",
|
|
3763
3774
|
"share-off",
|
|
3764
3775
|
"share",
|
|
3776
|
+
"shareplay",
|
|
3765
3777
|
"shield-bolt",
|
|
3766
3778
|
"shield-cancel",
|
|
3767
3779
|
"shield-check",
|
|
@@ -3898,6 +3910,7 @@ export default [
|
|
|
3898
3910
|
"source-code",
|
|
3899
3911
|
"space-off",
|
|
3900
3912
|
"space",
|
|
3913
|
+
"spaces",
|
|
3901
3914
|
"spacing-horizontal",
|
|
3902
3915
|
"spacing-vertical",
|
|
3903
3916
|
"spade",
|
|
@@ -4052,6 +4065,7 @@ export default [
|
|
|
4052
4065
|
"square-x",
|
|
4053
4066
|
"square",
|
|
4054
4067
|
"squares-diagonal",
|
|
4068
|
+
"squares-selected",
|
|
4055
4069
|
"squares",
|
|
4056
4070
|
"stack-2",
|
|
4057
4071
|
"stack-3",
|
|
@@ -4312,6 +4326,8 @@ export default [
|
|
|
4312
4326
|
"typeface",
|
|
4313
4327
|
"typography-off",
|
|
4314
4328
|
"typography",
|
|
4329
|
+
"u-turn-left",
|
|
4330
|
+
"u-turn-right",
|
|
4315
4331
|
"ufo-off",
|
|
4316
4332
|
"ufo",
|
|
4317
4333
|
"umbrella-off",
|
|
@@ -4342,6 +4358,7 @@ export default [
|
|
|
4342
4358
|
"user-plus",
|
|
4343
4359
|
"user-question",
|
|
4344
4360
|
"user-scan",
|
|
4361
|
+
"user-screen",
|
|
4345
4362
|
"user-search",
|
|
4346
4363
|
"user-share",
|
|
4347
4364
|
"user-shield",
|
|
@@ -4643,6 +4660,7 @@ export default [
|
|
|
4643
4660
|
"bell-filled",
|
|
4644
4661
|
"biohazard-filled",
|
|
4645
4662
|
"blade-filled",
|
|
4663
|
+
"blob-filled",
|
|
4646
4664
|
"bomb-filled",
|
|
4647
4665
|
"bone-filled",
|
|
4648
4666
|
"book-filled",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "codecalm",
|
|
6
6
|
"description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
|
|
@@ -1889,10 +1889,18 @@
|
|
|
1889
1889
|
"types": "./dist/icons/bleach.svelte.d.ts",
|
|
1890
1890
|
"svelte": "./dist/icons/bleach.svelte"
|
|
1891
1891
|
},
|
|
1892
|
+
"./IconBlendMode.svelte": {
|
|
1893
|
+
"types": "./dist/icons/blend-mode.svelte.d.ts",
|
|
1894
|
+
"svelte": "./dist/icons/blend-mode.svelte"
|
|
1895
|
+
},
|
|
1892
1896
|
"./IconBlender.svelte": {
|
|
1893
1897
|
"types": "./dist/icons/blender.svelte.d.ts",
|
|
1894
1898
|
"svelte": "./dist/icons/blender.svelte"
|
|
1895
1899
|
},
|
|
1900
|
+
"./IconBlob.svelte": {
|
|
1901
|
+
"types": "./dist/icons/blob.svelte.d.ts",
|
|
1902
|
+
"svelte": "./dist/icons/blob.svelte"
|
|
1903
|
+
},
|
|
1896
1904
|
"./IconBlockquote.svelte": {
|
|
1897
1905
|
"types": "./dist/icons/blockquote.svelte.d.ts",
|
|
1898
1906
|
"svelte": "./dist/icons/blockquote.svelte"
|
|
@@ -2397,6 +2405,10 @@
|
|
|
2397
2405
|
"types": "./dist/icons/brand-appstore.svelte.d.ts",
|
|
2398
2406
|
"svelte": "./dist/icons/brand-appstore.svelte"
|
|
2399
2407
|
},
|
|
2408
|
+
"./IconBrandArc.svelte": {
|
|
2409
|
+
"types": "./dist/icons/brand-arc.svelte.d.ts",
|
|
2410
|
+
"svelte": "./dist/icons/brand-arc.svelte"
|
|
2411
|
+
},
|
|
2400
2412
|
"./IconBrandAsana.svelte": {
|
|
2401
2413
|
"types": "./dist/icons/brand-asana.svelte.d.ts",
|
|
2402
2414
|
"svelte": "./dist/icons/brand-asana.svelte"
|
|
@@ -7937,6 +7949,10 @@
|
|
|
7937
7949
|
"types": "./dist/icons/eye-dollar.svelte.d.ts",
|
|
7938
7950
|
"svelte": "./dist/icons/eye-dollar.svelte"
|
|
7939
7951
|
},
|
|
7952
|
+
"./IconEyeDotted.svelte": {
|
|
7953
|
+
"types": "./dist/icons/eye-dotted.svelte.d.ts",
|
|
7954
|
+
"svelte": "./dist/icons/eye-dotted.svelte"
|
|
7955
|
+
},
|
|
7940
7956
|
"./IconEyeDown.svelte": {
|
|
7941
7957
|
"types": "./dist/icons/eye-down.svelte.d.ts",
|
|
7942
7958
|
"svelte": "./dist/icons/eye-down.svelte"
|
|
@@ -8181,6 +8197,10 @@
|
|
|
8181
8197
|
"types": "./dist/icons/file-invoice.svelte.d.ts",
|
|
8182
8198
|
"svelte": "./dist/icons/file-invoice.svelte"
|
|
8183
8199
|
},
|
|
8200
|
+
"./IconFileIsr.svelte": {
|
|
8201
|
+
"types": "./dist/icons/file-isr.svelte.d.ts",
|
|
8202
|
+
"svelte": "./dist/icons/file-isr.svelte"
|
|
8203
|
+
},
|
|
8184
8204
|
"./IconFileLambda.svelte": {
|
|
8185
8205
|
"types": "./dist/icons/file-lambda.svelte.d.ts",
|
|
8186
8206
|
"svelte": "./dist/icons/file-lambda.svelte"
|
|
@@ -10193,6 +10213,10 @@
|
|
|
10193
10213
|
"types": "./dist/icons/input-x.svelte.d.ts",
|
|
10194
10214
|
"svelte": "./dist/icons/input-x.svelte"
|
|
10195
10215
|
},
|
|
10216
|
+
"./IconInvoice.svelte": {
|
|
10217
|
+
"types": "./dist/icons/invoice.svelte.d.ts",
|
|
10218
|
+
"svelte": "./dist/icons/invoice.svelte"
|
|
10219
|
+
},
|
|
10196
10220
|
"./IconIroning1.svelte": {
|
|
10197
10221
|
"types": "./dist/icons/ironing-1.svelte.d.ts",
|
|
10198
10222
|
"svelte": "./dist/icons/ironing-1.svelte"
|
|
@@ -10397,6 +10421,14 @@
|
|
|
10397
10421
|
"types": "./dist/icons/layers-off.svelte.d.ts",
|
|
10398
10422
|
"svelte": "./dist/icons/layers-off.svelte"
|
|
10399
10423
|
},
|
|
10424
|
+
"./IconLayersSelectedBottom.svelte": {
|
|
10425
|
+
"types": "./dist/icons/layers-selected-bottom.svelte.d.ts",
|
|
10426
|
+
"svelte": "./dist/icons/layers-selected-bottom.svelte"
|
|
10427
|
+
},
|
|
10428
|
+
"./IconLayersSelected.svelte": {
|
|
10429
|
+
"types": "./dist/icons/layers-selected.svelte.d.ts",
|
|
10430
|
+
"svelte": "./dist/icons/layers-selected.svelte"
|
|
10431
|
+
},
|
|
10400
10432
|
"./IconLayersSubtract.svelte": {
|
|
10401
10433
|
"types": "./dist/icons/layers-subtract.svelte.d.ts",
|
|
10402
10434
|
"svelte": "./dist/icons/layers-subtract.svelte"
|
|
@@ -11089,6 +11121,10 @@
|
|
|
11089
11121
|
"types": "./dist/icons/lock-off.svelte.d.ts",
|
|
11090
11122
|
"svelte": "./dist/icons/lock-off.svelte"
|
|
11091
11123
|
},
|
|
11124
|
+
"./IconLockOpen2.svelte": {
|
|
11125
|
+
"types": "./dist/icons/lock-open-2.svelte.d.ts",
|
|
11126
|
+
"svelte": "./dist/icons/lock-open-2.svelte"
|
|
11127
|
+
},
|
|
11092
11128
|
"./IconLockOpenOff.svelte": {
|
|
11093
11129
|
"types": "./dist/icons/lock-open-off.svelte.d.ts",
|
|
11094
11130
|
"svelte": "./dist/icons/lock-open-off.svelte"
|
|
@@ -11193,6 +11229,10 @@
|
|
|
11193
11229
|
"types": "./dist/icons/logout.svelte.d.ts",
|
|
11194
11230
|
"svelte": "./dist/icons/logout.svelte"
|
|
11195
11231
|
},
|
|
11232
|
+
"./IconLogs.svelte": {
|
|
11233
|
+
"types": "./dist/icons/logs.svelte.d.ts",
|
|
11234
|
+
"svelte": "./dist/icons/logs.svelte"
|
|
11235
|
+
},
|
|
11196
11236
|
"./IconLollipopOff.svelte": {
|
|
11197
11237
|
"types": "./dist/icons/lollipop-off.svelte.d.ts",
|
|
11198
11238
|
"svelte": "./dist/icons/lollipop-off.svelte"
|
|
@@ -13977,6 +14017,10 @@
|
|
|
13977
14017
|
"types": "./dist/icons/printer.svelte.d.ts",
|
|
13978
14018
|
"svelte": "./dist/icons/printer.svelte"
|
|
13979
14019
|
},
|
|
14020
|
+
"./IconPrismLight.svelte": {
|
|
14021
|
+
"types": "./dist/icons/prism-light.svelte.d.ts",
|
|
14022
|
+
"svelte": "./dist/icons/prism-light.svelte"
|
|
14023
|
+
},
|
|
13980
14024
|
"./IconPrismOff.svelte": {
|
|
13981
14025
|
"types": "./dist/icons/prism-off.svelte.d.ts",
|
|
13982
14026
|
"svelte": "./dist/icons/prism-off.svelte"
|
|
@@ -15081,6 +15125,10 @@
|
|
|
15081
15125
|
"types": "./dist/icons/share.svelte.d.ts",
|
|
15082
15126
|
"svelte": "./dist/icons/share.svelte"
|
|
15083
15127
|
},
|
|
15128
|
+
"./IconShareplay.svelte": {
|
|
15129
|
+
"types": "./dist/icons/shareplay.svelte.d.ts",
|
|
15130
|
+
"svelte": "./dist/icons/shareplay.svelte"
|
|
15131
|
+
},
|
|
15084
15132
|
"./IconShieldBolt.svelte": {
|
|
15085
15133
|
"types": "./dist/icons/shield-bolt.svelte.d.ts",
|
|
15086
15134
|
"svelte": "./dist/icons/shield-bolt.svelte"
|
|
@@ -15625,6 +15673,10 @@
|
|
|
15625
15673
|
"types": "./dist/icons/space.svelte.d.ts",
|
|
15626
15674
|
"svelte": "./dist/icons/space.svelte"
|
|
15627
15675
|
},
|
|
15676
|
+
"./IconSpaces.svelte": {
|
|
15677
|
+
"types": "./dist/icons/spaces.svelte.d.ts",
|
|
15678
|
+
"svelte": "./dist/icons/spaces.svelte"
|
|
15679
|
+
},
|
|
15628
15680
|
"./IconSpacingHorizontal.svelte": {
|
|
15629
15681
|
"types": "./dist/icons/spacing-horizontal.svelte.d.ts",
|
|
15630
15682
|
"svelte": "./dist/icons/spacing-horizontal.svelte"
|
|
@@ -16241,6 +16293,10 @@
|
|
|
16241
16293
|
"types": "./dist/icons/squares-diagonal.svelte.d.ts",
|
|
16242
16294
|
"svelte": "./dist/icons/squares-diagonal.svelte"
|
|
16243
16295
|
},
|
|
16296
|
+
"./IconSquaresSelected.svelte": {
|
|
16297
|
+
"types": "./dist/icons/squares-selected.svelte.d.ts",
|
|
16298
|
+
"svelte": "./dist/icons/squares-selected.svelte"
|
|
16299
|
+
},
|
|
16244
16300
|
"./IconSquares.svelte": {
|
|
16245
16301
|
"types": "./dist/icons/squares.svelte.d.ts",
|
|
16246
16302
|
"svelte": "./dist/icons/squares.svelte"
|
|
@@ -17281,6 +17337,14 @@
|
|
|
17281
17337
|
"types": "./dist/icons/typography.svelte.d.ts",
|
|
17282
17338
|
"svelte": "./dist/icons/typography.svelte"
|
|
17283
17339
|
},
|
|
17340
|
+
"./IconUTurnLeft.svelte": {
|
|
17341
|
+
"types": "./dist/icons/u-turn-left.svelte.d.ts",
|
|
17342
|
+
"svelte": "./dist/icons/u-turn-left.svelte"
|
|
17343
|
+
},
|
|
17344
|
+
"./IconUTurnRight.svelte": {
|
|
17345
|
+
"types": "./dist/icons/u-turn-right.svelte.d.ts",
|
|
17346
|
+
"svelte": "./dist/icons/u-turn-right.svelte"
|
|
17347
|
+
},
|
|
17284
17348
|
"./IconUfoOff.svelte": {
|
|
17285
17349
|
"types": "./dist/icons/ufo-off.svelte.d.ts",
|
|
17286
17350
|
"svelte": "./dist/icons/ufo-off.svelte"
|
|
@@ -17401,6 +17465,10 @@
|
|
|
17401
17465
|
"types": "./dist/icons/user-scan.svelte.d.ts",
|
|
17402
17466
|
"svelte": "./dist/icons/user-scan.svelte"
|
|
17403
17467
|
},
|
|
17468
|
+
"./IconUserScreen.svelte": {
|
|
17469
|
+
"types": "./dist/icons/user-screen.svelte.d.ts",
|
|
17470
|
+
"svelte": "./dist/icons/user-screen.svelte"
|
|
17471
|
+
},
|
|
17404
17472
|
"./IconUserSearch.svelte": {
|
|
17405
17473
|
"types": "./dist/icons/user-search.svelte.d.ts",
|
|
17406
17474
|
"svelte": "./dist/icons/user-search.svelte"
|
|
@@ -18605,6 +18673,10 @@
|
|
|
18605
18673
|
"types": "./dist/icons/blade-filled.svelte.d.ts",
|
|
18606
18674
|
"svelte": "./dist/icons/blade-filled.svelte"
|
|
18607
18675
|
},
|
|
18676
|
+
"./IconBlobFilled.svelte": {
|
|
18677
|
+
"types": "./dist/icons/blob-filled.svelte.d.ts",
|
|
18678
|
+
"svelte": "./dist/icons/blob-filled.svelte"
|
|
18679
|
+
},
|
|
18608
18680
|
"./IconBombFilled.svelte": {
|
|
18609
18681
|
"types": "./dist/icons/bomb-filled.svelte.d.ts",
|
|
18610
18682
|
"svelte": "./dist/icons/bomb-filled.svelte"
|
|
@@ -20848,7 +20920,7 @@
|
|
|
20848
20920
|
"imports-check": "attw $(npm pack)"
|
|
20849
20921
|
},
|
|
20850
20922
|
"dependencies": {
|
|
20851
|
-
"@tabler/icons": "3.0
|
|
20923
|
+
"@tabler/icons": "3.1.0"
|
|
20852
20924
|
},
|
|
20853
20925
|
"devDependencies": {
|
|
20854
20926
|
"@sveltejs/package": "^2.2.7",
|