@tabler/icons-svelte 3.11.0 → 3.12.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/aliases.d.ts +1 -0
- package/dist/aliases.js +1 -0
- package/dist/icons/arrows-transfer-up-down.svelte +6 -0
- package/dist/icons/arrows-transfer-up-down.svelte.d.ts +17 -0
- package/dist/icons/brand-amie.svelte +6 -0
- package/dist/icons/brand-amie.svelte.d.ts +17 -0
- package/dist/icons/brand-bebo.svelte +6 -0
- package/dist/icons/brand-bebo.svelte.d.ts +17 -0
- package/dist/icons/building-airport.svelte +6 -0
- package/dist/icons/building-airport.svelte.d.ts +17 -0
- package/dist/icons/camera-ai.svelte +6 -0
- package/dist/icons/camera-ai.svelte.d.ts +17 -0
- package/dist/icons/camera-bitcoin.svelte +6 -0
- package/dist/icons/camera-bitcoin.svelte.d.ts +17 -0
- package/dist/icons/camera-moon.svelte +6 -0
- package/dist/icons/camera-moon.svelte.d.ts +17 -0
- package/dist/icons/chart-column.svelte +6 -0
- package/dist/icons/chart-column.svelte.d.ts +17 -0
- package/dist/icons/chart-covariate.svelte +6 -0
- package/dist/icons/chart-covariate.svelte.d.ts +17 -0
- package/dist/icons/congruent-to.svelte +6 -0
- package/dist/icons/congruent-to.svelte.d.ts +17 -0
- package/dist/icons/diaper.svelte +6 -0
- package/dist/icons/diaper.svelte.d.ts +17 -0
- package/dist/icons/file-ai.svelte +6 -0
- package/dist/icons/file-ai.svelte.d.ts +17 -0
- package/dist/icons/file-bitcoin.svelte +6 -0
- package/dist/icons/file-bitcoin.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +18 -1
- package/dist/icons/index.js +18 -1
- package/dist/icons/lock-password.svelte +6 -0
- package/dist/icons/lock-password.svelte.d.ts +17 -0
- package/dist/icons/phone-done.svelte +6 -0
- package/dist/icons/phone-done.svelte.d.ts +17 -0
- package/dist/icons/phone-end.svelte +6 -0
- package/dist/icons/phone-end.svelte.d.ts +17 -0
- package/dist/icons/phone-outgoing.svelte +1 -1
- package/dist/icons/phone-pause.svelte +1 -1
- package/dist/icons/phone-ringing.svelte +6 -0
- package/dist/icons/phone-ringing.svelte.d.ts +17 -0
- package/dist/icons/stopwatch.svelte +6 -0
- package/dist/icons/stopwatch.svelte.d.ts +17 -0
- package/dist/icons-list.js +18 -1
- package/package.json +3 -3
- package/dist/icons/circle-dashed-letter-letter-v.svelte +0 -6
- package/dist/icons/circle-dashed-letter-letter-v.svelte.d.ts +0 -17
package/dist/aliases.d.ts
CHANGED
|
@@ -48,5 +48,6 @@ export { default as IconSquare8 } from './icons/square-number-8.svelte';
|
|
|
48
48
|
export { default as IconSquare9 } from './icons/square-number-9.svelte';
|
|
49
49
|
export { default as IconMessageCircle2 } from './icons/message-circle.svelte';
|
|
50
50
|
export { default as IconMoodSuprised } from './icons/mood-surprised.svelte';
|
|
51
|
+
export { default as IconCircleDashedLetterLetterV } from './icons/circle-dashed-letter-v.svelte';
|
|
51
52
|
export { default as IconDiscountCheckFilled } from './icons/rosette-discount-check-filled.svelte';
|
|
52
53
|
export { default as IconMessageCircle2Filled } from './icons/message-circle-filled.svelte';
|
package/dist/aliases.js
CHANGED
|
@@ -48,5 +48,6 @@ export { default as IconSquare8 } from './icons/square-number-8.svelte';
|
|
|
48
48
|
export { default as IconSquare9 } from './icons/square-number-9.svelte';
|
|
49
49
|
export { default as IconMessageCircle2 } from './icons/message-circle.svelte';
|
|
50
50
|
export { default as IconMoodSuprised } from './icons/mood-surprised.svelte';
|
|
51
|
+
export { default as IconCircleDashedLetterLetterV } from './icons/circle-dashed-letter-v.svelte';
|
|
51
52
|
export { default as IconDiscountCheckFilled } from './icons/rosette-discount-check-filled.svelte';
|
|
52
53
|
export { default as IconMessageCircle2Filled } from './icons/message-circle-filled.svelte';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M7 21v-6" }], ["path", { "d": "M20 6l-3 -3l-3 3" }], ["path", { "d": "M10 18l-3 3l-3 -3" }], ["path", { "d": "M7 3v2" }], ["path", { "d": "M7 9v2" }], ["path", { "d": "M17 3v6" }], ["path", { "d": "M17 21v-2" }], ["path", { "d": "M17 15v-2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="arrows-transfer-up-down" {...$$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 ArrowsTransferUpDownProps = typeof __propDef.props;
|
|
13
|
+
export type ArrowsTransferUpDownEvents = typeof __propDef.events;
|
|
14
|
+
export type ArrowsTransferUpDownSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ArrowsTransferUpDown extends SvelteComponentTyped<ArrowsTransferUpDownProps, ArrowsTransferUpDownEvents, ArrowsTransferUpDownSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 8.5c0 1.33 .472 2.55 1.257 3.5a5.5 5.5 0 0 0 7.743 7.743a5.5 5.5 0 0 0 7.743 -7.743a5.5 5.5 0 0 0 -7.743 -7.743a5.5 5.5 0 0 0 -9 4.243" }], ["path", { "d": "M10 9.5c0 -.828 .895 -1.5 2 -1.5s2 .672 2 1.5v5c0 .828 -.895 1.5 -2 1.5s-2 -.672 -2 -1.5z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="brand-amie" {...$$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 BrandAmieProps = typeof __propDef.props;
|
|
13
|
+
export type BrandAmieEvents = typeof __propDef.events;
|
|
14
|
+
export type BrandAmieSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BrandAmie extends SvelteComponentTyped<BrandAmieProps, BrandAmieEvents, BrandAmieSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 17.5a3.5 3.5 0 0 0 3.5 -3.5c0 -1.838 -1.159 -3.002 -3.005 -3.372c-.746 -.15 -1.37 -.745 -1.37 -1.506c0 -1.142 .934 -2.095 2.058 -1.894c3.61 .645 5.817 3.058 5.817 6.772a7 7 0 1 1 -14 0v-9.25a1.75 1.75 0 1 1 3.5 0v9.25a3.5 3.5 0 0 0 3.5 3.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="brand-bebo" {...$$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 BrandBeboProps = typeof __propDef.props;
|
|
13
|
+
export type BrandBeboEvents = typeof __propDef.events;
|
|
14
|
+
export type BrandBeboSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BrandBebo extends SvelteComponentTyped<BrandBeboProps, BrandBeboEvents, BrandBeboSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3.59 7h8.82a1 1 0 0 1 .902 1.433l-1.44 3a1 1 0 0 1 -.901 .567h-5.942a1 1 0 0 1 -.901 -.567l-1.44 -3a1 1 0 0 1 .901 -1.433" }], ["path", { "d": "M6 7l-.78 -2.342a.5 .5 0 0 1 .473 -.658h4.612a.5 .5 0 0 1 .475 .658l-.78 2.342" }], ["path", { "d": "M8 2v2" }], ["path", { "d": "M6 12v9h4v-9" }], ["path", { "d": "M3 21h18" }], ["path", { "d": "M22 5h-6l-1 -1" }], ["path", { "d": "M18 3l2 2l-2 2" }], ["path", { "d": "M10 17h7a2 2 0 0 1 2 2v2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="building-airport" {...$$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 BuildingAirportProps = typeof __propDef.props;
|
|
13
|
+
export type BuildingAirportEvents = typeof __propDef.events;
|
|
14
|
+
export type BuildingAirportSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BuildingAirport extends SvelteComponentTyped<BuildingAirportProps, BuildingAirportEvents, BuildingAirportSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M10 20h-5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2" }], ["path", { "d": "M14.362 11.15a3 3 0 1 0 -4.144 4.263" }], ["path", { "d": "M14 21v-4a2 2 0 1 1 4 0v4" }], ["path", { "d": "M14 19h4" }], ["path", { "d": "M21 15v6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="camera-ai" {...$$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 CameraAiProps = typeof __propDef.props;
|
|
13
|
+
export type CameraAiEvents = typeof __propDef.events;
|
|
14
|
+
export type CameraAiSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CameraAi extends SvelteComponentTyped<CameraAiProps, CameraAiEvents, CameraAiSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1" }], ["path", { "d": "M14.477 11.307a3 3 0 1 0 -2.477 4.693" }], ["path", { "d": "M17 21v-6" }], ["path", { "d": "M19 15v-1.5" }], ["path", { "d": "M19 22.5v-1.5" }], ["path", { "d": "M17 18h3" }], ["path", { "d": "M19 18h.5a1.5 1.5 0 0 1 0 3h-3.5" }], ["path", { "d": "M19 18h.5a1.5 1.5 0 0 0 0 -3h-3.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="camera-bitcoin" {...$$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 CameraBitcoinProps = typeof __propDef.props;
|
|
13
|
+
export type CameraBitcoinEvents = typeof __propDef.events;
|
|
14
|
+
export type CameraBitcoinSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CameraBitcoin extends SvelteComponentTyped<CameraBitcoinProps, CameraBitcoinEvents, CameraBitcoinSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5" }], ["path", { "d": "M14.815 11.96a3.001 3.001 0 1 0 -3.398 3.983" }], ["path", { "d": "M18.62 22c-2 0 -3.62 -1.58 -3.62 -3.53c0 -1.727 1.273 -3.165 2.954 -3.47a3.4 3.4 0 0 0 -.24 1.264c0 1.95 1.621 3.53 3.62 3.53q .342 0 .666 -.06c-.521 1.326 -1.838 2.266 -3.38 2.266" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="camera-moon" {...$$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 CameraMoonProps = typeof __propDef.props;
|
|
13
|
+
export type CameraMoonEvents = typeof __propDef.events;
|
|
14
|
+
export type CameraMoonSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CameraMoon extends SvelteComponentTyped<CameraMoonProps, CameraMoonEvents, CameraMoonSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 20h3" }], ["path", { "d": "M17 20h3" }], ["path", { "d": "M10.5 20h3" }], ["path", { "d": "M4 16h3" }], ["path", { "d": "M17 16h3" }], ["path", { "d": "M10.5 16h3" }], ["path", { "d": "M4 12h3" }], ["path", { "d": "M17 12h3" }], ["path", { "d": "M10.5 12h3" }], ["path", { "d": "M4 8h3" }], ["path", { "d": "M17 8h3" }], ["path", { "d": "M4 4h3" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="chart-column" {...$$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 ChartColumnProps = typeof __propDef.props;
|
|
13
|
+
export type ChartColumnEvents = typeof __propDef.events;
|
|
14
|
+
export type ChartColumnSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ChartColumn extends SvelteComponentTyped<ChartColumnProps, ChartColumnEvents, ChartColumnSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M18 11h.009" }], ["path", { "d": "M14 15h.009" }], ["path", { "d": "M12 6h.009" }], ["path", { "d": "M8 10h.009" }], ["path", { "d": "M3 21l17 -17" }], ["path", { "d": "M3 3v18h18" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="chart-covariate" {...$$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 ChartCovariateProps = typeof __propDef.props;
|
|
13
|
+
export type ChartCovariateEvents = typeof __propDef.events;
|
|
14
|
+
export type ChartCovariateSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ChartCovariate extends SvelteComponentTyped<ChartCovariateProps, ChartCovariateEvents, ChartCovariateSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 13h14" }], ["path", { "d": "M5 17h14" }], ["path", { "d": "M5 7.686c2.333 -2.624 4.667 -1.856 7 .064s4.667 2.688 7 .064" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="congruent-to" {...$$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 CongruentToProps = typeof __propDef.props;
|
|
13
|
+
export type CongruentToEvents = typeof __propDef.events;
|
|
14
|
+
export type CongruentToSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CongruentTo extends SvelteComponentTyped<CongruentToProps, CongruentToEvents, CongruentToSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 8.323c0 -.579 0 -.868 .044 -1.11a2.7 2.7 0 0 1 2.17 -2.169c.239 -.044 .529 -.044 1.109 -.044h11.353c.579 0 .868 0 1.11 .044a2.7 2.7 0 0 1 2.169 2.17c.044 .24 .044 .53 .044 1.11v2.676a9 9 0 0 1 -18 0z" }], ["path", { "d": "M17 9h4" }], ["path", { "d": "M3 9h4" }], ["path", { "d": "M14.25 19.7v-1.4a6.3 6.3 0 0 1 6.3 -6.3" }], ["path", { "d": "M9.75 19.7v-1.4a6.3 6.3 0 0 0 -6.3 -6.3" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="diaper" {...$$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 DiaperProps = typeof __propDef.props;
|
|
13
|
+
export type DiaperEvents = typeof __propDef.events;
|
|
14
|
+
export type DiaperSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Diaper extends SvelteComponentTyped<DiaperProps, DiaperEvents, DiaperSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -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": "M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4" }], ["path", { "d": "M14 21v-4a2 2 0 1 1 4 0v4" }], ["path", { "d": "M14 19h4" }], ["path", { "d": "M21 15v6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="file-ai" {...$$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 FileAiProps = typeof __propDef.props;
|
|
13
|
+
export type FileAiEvents = typeof __propDef.events;
|
|
14
|
+
export type FileAiSlots = typeof __propDef.slots;
|
|
15
|
+
export default class FileAi extends SvelteComponentTyped<FileAiProps, FileAiEvents, FileAiSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -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": "M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2" }], ["path", { "d": "M17 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="file-bitcoin" {...$$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 FileBitcoinProps = typeof __propDef.props;
|
|
13
|
+
export type FileBitcoinEvents = typeof __propDef.events;
|
|
14
|
+
export type FileBitcoinSlots = typeof __propDef.slots;
|
|
15
|
+
export default class FileBitcoin extends SvelteComponentTyped<FileBitcoinProps, FileBitcoinEvents, FileBitcoinSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -302,6 +302,7 @@ export { default as IconArrowsSort } from './arrows-sort.svelte';
|
|
|
302
302
|
export { default as IconArrowsSplit2 } from './arrows-split-2.svelte';
|
|
303
303
|
export { default as IconArrowsSplit } from './arrows-split.svelte';
|
|
304
304
|
export { default as IconArrowsTransferDown } from './arrows-transfer-down.svelte';
|
|
305
|
+
export { default as IconArrowsTransferUpDown } from './arrows-transfer-up-down.svelte';
|
|
305
306
|
export { default as IconArrowsTransferUp } from './arrows-transfer-up.svelte';
|
|
306
307
|
export { default as IconArrowsUpDown } from './arrows-up-down.svelte';
|
|
307
308
|
export { default as IconArrowsUpLeft } from './arrows-up-left.svelte';
|
|
@@ -608,6 +609,7 @@ export { default as IconBrandAlipay } from './brand-alipay.svelte';
|
|
|
608
609
|
export { default as IconBrandAlpineJs } from './brand-alpine-js.svelte';
|
|
609
610
|
export { default as IconBrandAmazon } from './brand-amazon.svelte';
|
|
610
611
|
export { default as IconBrandAmd } from './brand-amd.svelte';
|
|
612
|
+
export { default as IconBrandAmie } from './brand-amie.svelte';
|
|
611
613
|
export { default as IconBrandAmigo } from './brand-amigo.svelte';
|
|
612
614
|
export { default as IconBrandAmongUs } from './brand-among-us.svelte';
|
|
613
615
|
export { default as IconBrandAndroid } from './brand-android.svelte';
|
|
@@ -632,6 +634,7 @@ export { default as IconBrandBaidu } from './brand-baidu.svelte';
|
|
|
632
634
|
export { default as IconBrandBandcamp } from './brand-bandcamp.svelte';
|
|
633
635
|
export { default as IconBrandBandlab } from './brand-bandlab.svelte';
|
|
634
636
|
export { default as IconBrandBeats } from './brand-beats.svelte';
|
|
637
|
+
export { default as IconBrandBebo } from './brand-bebo.svelte';
|
|
635
638
|
export { default as IconBrandBehance } from './brand-behance.svelte';
|
|
636
639
|
export { default as IconBrandBilibili } from './brand-bilibili.svelte';
|
|
637
640
|
export { default as IconBrandBinance } from './brand-binance.svelte';
|
|
@@ -989,6 +992,7 @@ export { default as IconBucketOff } from './bucket-off.svelte';
|
|
|
989
992
|
export { default as IconBucket } from './bucket.svelte';
|
|
990
993
|
export { default as IconBugOff } from './bug-off.svelte';
|
|
991
994
|
export { default as IconBug } from './bug.svelte';
|
|
995
|
+
export { default as IconBuildingAirport } from './building-airport.svelte';
|
|
992
996
|
export { default as IconBuildingArch } from './building-arch.svelte';
|
|
993
997
|
export { default as IconBuildingBank } from './building-bank.svelte';
|
|
994
998
|
export { default as IconBuildingBridge2 } from './building-bridge-2.svelte';
|
|
@@ -1067,6 +1071,8 @@ export { default as IconCalendarUser } from './calendar-user.svelte';
|
|
|
1067
1071
|
export { default as IconCalendarWeek } from './calendar-week.svelte';
|
|
1068
1072
|
export { default as IconCalendarX } from './calendar-x.svelte';
|
|
1069
1073
|
export { default as IconCalendar } from './calendar.svelte';
|
|
1074
|
+
export { default as IconCameraAi } from './camera-ai.svelte';
|
|
1075
|
+
export { default as IconCameraBitcoin } from './camera-bitcoin.svelte';
|
|
1070
1076
|
export { default as IconCameraBolt } from './camera-bolt.svelte';
|
|
1071
1077
|
export { default as IconCameraCancel } from './camera-cancel.svelte';
|
|
1072
1078
|
export { default as IconCameraCheck } from './camera-check.svelte';
|
|
@@ -1077,6 +1083,7 @@ export { default as IconCameraDown } from './camera-down.svelte';
|
|
|
1077
1083
|
export { default as IconCameraExclamation } from './camera-exclamation.svelte';
|
|
1078
1084
|
export { default as IconCameraHeart } from './camera-heart.svelte';
|
|
1079
1085
|
export { default as IconCameraMinus } from './camera-minus.svelte';
|
|
1086
|
+
export { default as IconCameraMoon } from './camera-moon.svelte';
|
|
1080
1087
|
export { default as IconCameraOff } from './camera-off.svelte';
|
|
1081
1088
|
export { default as IconCameraPause } from './camera-pause.svelte';
|
|
1082
1089
|
export { default as IconCameraPin } from './camera-pin.svelte';
|
|
@@ -1175,6 +1182,8 @@ export { default as IconChartBubble } from './chart-bubble.svelte';
|
|
|
1175
1182
|
export { default as IconChartCandle } from './chart-candle.svelte';
|
|
1176
1183
|
export { default as IconChartCircles } from './chart-circles.svelte';
|
|
1177
1184
|
export { default as IconChartCohort } from './chart-cohort.svelte';
|
|
1185
|
+
export { default as IconChartColumn } from './chart-column.svelte';
|
|
1186
|
+
export { default as IconChartCovariate } from './chart-covariate.svelte';
|
|
1178
1187
|
export { default as IconChartDonut2 } from './chart-donut-2.svelte';
|
|
1179
1188
|
export { default as IconChartDonut3 } from './chart-donut-3.svelte';
|
|
1180
1189
|
export { default as IconChartDonut4 } from './chart-donut-4.svelte';
|
|
@@ -1273,7 +1282,6 @@ export { default as IconCircleDashedLetterI } from './circle-dashed-letter-i.sve
|
|
|
1273
1282
|
export { default as IconCircleDashedLetterJ } from './circle-dashed-letter-j.svelte';
|
|
1274
1283
|
export { default as IconCircleDashedLetterK } from './circle-dashed-letter-k.svelte';
|
|
1275
1284
|
export { default as IconCircleDashedLetterL } from './circle-dashed-letter-l.svelte';
|
|
1276
|
-
export { default as IconCircleDashedLetterLetterV } from './circle-dashed-letter-letter-v.svelte';
|
|
1277
1285
|
export { default as IconCircleDashedLetterM } from './circle-dashed-letter-m.svelte';
|
|
1278
1286
|
export { default as IconCircleDashedLetterN } from './circle-dashed-letter-n.svelte';
|
|
1279
1287
|
export { default as IconCircleDashedLetterO } from './circle-dashed-letter-o.svelte';
|
|
@@ -1549,6 +1557,7 @@ export { default as IconCone } from './cone.svelte';
|
|
|
1549
1557
|
export { default as IconConfettiOff } from './confetti-off.svelte';
|
|
1550
1558
|
export { default as IconConfetti } from './confetti.svelte';
|
|
1551
1559
|
export { default as IconConfucius } from './confucius.svelte';
|
|
1560
|
+
export { default as IconCongruentTo } from './congruent-to.svelte';
|
|
1552
1561
|
export { default as IconContainerOff } from './container-off.svelte';
|
|
1553
1562
|
export { default as IconContainer } from './container.svelte';
|
|
1554
1563
|
export { default as IconContract } from './contract.svelte';
|
|
@@ -1956,6 +1965,7 @@ export { default as IconDialpad } from './dialpad.svelte';
|
|
|
1956
1965
|
export { default as IconDiamondOff } from './diamond-off.svelte';
|
|
1957
1966
|
export { default as IconDiamond } from './diamond.svelte';
|
|
1958
1967
|
export { default as IconDiamonds } from './diamonds.svelte';
|
|
1968
|
+
export { default as IconDiaper } from './diaper.svelte';
|
|
1959
1969
|
export { default as IconDice1 } from './dice-1.svelte';
|
|
1960
1970
|
export { default as IconDice2 } from './dice-2.svelte';
|
|
1961
1971
|
export { default as IconDice3 } from './dice-3.svelte';
|
|
@@ -2123,11 +2133,13 @@ export { default as IconFenceOff } from './fence-off.svelte';
|
|
|
2123
2133
|
export { default as IconFence } from './fence.svelte';
|
|
2124
2134
|
export { default as IconFidgetSpinner } from './fidget-spinner.svelte';
|
|
2125
2135
|
export { default as IconFile3d } from './file-3d.svelte';
|
|
2136
|
+
export { default as IconFileAi } from './file-ai.svelte';
|
|
2126
2137
|
export { default as IconFileAlert } from './file-alert.svelte';
|
|
2127
2138
|
export { default as IconFileAnalytics } from './file-analytics.svelte';
|
|
2128
2139
|
export { default as IconFileArrowLeft } from './file-arrow-left.svelte';
|
|
2129
2140
|
export { default as IconFileArrowRight } from './file-arrow-right.svelte';
|
|
2130
2141
|
export { default as IconFileBarcode } from './file-barcode.svelte';
|
|
2142
|
+
export { default as IconFileBitcoin } from './file-bitcoin.svelte';
|
|
2131
2143
|
export { default as IconFileBroken } from './file-broken.svelte';
|
|
2132
2144
|
export { default as IconFileCertificate } from './file-certificate.svelte';
|
|
2133
2145
|
export { default as IconFileChart } from './file-chart.svelte';
|
|
@@ -2907,6 +2919,7 @@ export { default as IconLockOff } from './lock-off.svelte';
|
|
|
2907
2919
|
export { default as IconLockOpen2 } from './lock-open-2.svelte';
|
|
2908
2920
|
export { default as IconLockOpenOff } from './lock-open-off.svelte';
|
|
2909
2921
|
export { default as IconLockOpen } from './lock-open.svelte';
|
|
2922
|
+
export { default as IconLockPassword } from './lock-password.svelte';
|
|
2910
2923
|
export { default as IconLockPause } from './lock-pause.svelte';
|
|
2911
2924
|
export { default as IconLockPin } from './lock-pin.svelte';
|
|
2912
2925
|
export { default as IconLockPlus } from './lock-plus.svelte';
|
|
@@ -3502,11 +3515,14 @@ export { default as IconPerspective } from './perspective.svelte';
|
|
|
3502
3515
|
export { default as IconPhoneCall } from './phone-call.svelte';
|
|
3503
3516
|
export { default as IconPhoneCalling } from './phone-calling.svelte';
|
|
3504
3517
|
export { default as IconPhoneCheck } from './phone-check.svelte';
|
|
3518
|
+
export { default as IconPhoneDone } from './phone-done.svelte';
|
|
3519
|
+
export { default as IconPhoneEnd } from './phone-end.svelte';
|
|
3505
3520
|
export { default as IconPhoneIncoming } from './phone-incoming.svelte';
|
|
3506
3521
|
export { default as IconPhoneOff } from './phone-off.svelte';
|
|
3507
3522
|
export { default as IconPhoneOutgoing } from './phone-outgoing.svelte';
|
|
3508
3523
|
export { default as IconPhonePause } from './phone-pause.svelte';
|
|
3509
3524
|
export { default as IconPhonePlus } from './phone-plus.svelte';
|
|
3525
|
+
export { default as IconPhoneRinging } from './phone-ringing.svelte';
|
|
3510
3526
|
export { default as IconPhoneX } from './phone-x.svelte';
|
|
3511
3527
|
export { default as IconPhone } from './phone.svelte';
|
|
3512
3528
|
export { default as IconPhotoAi } from './photo-ai.svelte';
|
|
@@ -4261,6 +4277,7 @@ export { default as IconStethoscopeOff } from './stethoscope-off.svelte';
|
|
|
4261
4277
|
export { default as IconStethoscope } from './stethoscope.svelte';
|
|
4262
4278
|
export { default as IconSticker2 } from './sticker-2.svelte';
|
|
4263
4279
|
export { default as IconSticker } from './sticker.svelte';
|
|
4280
|
+
export { default as IconStopwatch } from './stopwatch.svelte';
|
|
4264
4281
|
export { default as IconStormOff } from './storm-off.svelte';
|
|
4265
4282
|
export { default as IconStorm } from './storm.svelte';
|
|
4266
4283
|
export { default as IconStretching2 } from './stretching-2.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -302,6 +302,7 @@ export { default as IconArrowsSort } from './arrows-sort.svelte';
|
|
|
302
302
|
export { default as IconArrowsSplit2 } from './arrows-split-2.svelte';
|
|
303
303
|
export { default as IconArrowsSplit } from './arrows-split.svelte';
|
|
304
304
|
export { default as IconArrowsTransferDown } from './arrows-transfer-down.svelte';
|
|
305
|
+
export { default as IconArrowsTransferUpDown } from './arrows-transfer-up-down.svelte';
|
|
305
306
|
export { default as IconArrowsTransferUp } from './arrows-transfer-up.svelte';
|
|
306
307
|
export { default as IconArrowsUpDown } from './arrows-up-down.svelte';
|
|
307
308
|
export { default as IconArrowsUpLeft } from './arrows-up-left.svelte';
|
|
@@ -608,6 +609,7 @@ export { default as IconBrandAlipay } from './brand-alipay.svelte';
|
|
|
608
609
|
export { default as IconBrandAlpineJs } from './brand-alpine-js.svelte';
|
|
609
610
|
export { default as IconBrandAmazon } from './brand-amazon.svelte';
|
|
610
611
|
export { default as IconBrandAmd } from './brand-amd.svelte';
|
|
612
|
+
export { default as IconBrandAmie } from './brand-amie.svelte';
|
|
611
613
|
export { default as IconBrandAmigo } from './brand-amigo.svelte';
|
|
612
614
|
export { default as IconBrandAmongUs } from './brand-among-us.svelte';
|
|
613
615
|
export { default as IconBrandAndroid } from './brand-android.svelte';
|
|
@@ -632,6 +634,7 @@ export { default as IconBrandBaidu } from './brand-baidu.svelte';
|
|
|
632
634
|
export { default as IconBrandBandcamp } from './brand-bandcamp.svelte';
|
|
633
635
|
export { default as IconBrandBandlab } from './brand-bandlab.svelte';
|
|
634
636
|
export { default as IconBrandBeats } from './brand-beats.svelte';
|
|
637
|
+
export { default as IconBrandBebo } from './brand-bebo.svelte';
|
|
635
638
|
export { default as IconBrandBehance } from './brand-behance.svelte';
|
|
636
639
|
export { default as IconBrandBilibili } from './brand-bilibili.svelte';
|
|
637
640
|
export { default as IconBrandBinance } from './brand-binance.svelte';
|
|
@@ -989,6 +992,7 @@ export { default as IconBucketOff } from './bucket-off.svelte';
|
|
|
989
992
|
export { default as IconBucket } from './bucket.svelte';
|
|
990
993
|
export { default as IconBugOff } from './bug-off.svelte';
|
|
991
994
|
export { default as IconBug } from './bug.svelte';
|
|
995
|
+
export { default as IconBuildingAirport } from './building-airport.svelte';
|
|
992
996
|
export { default as IconBuildingArch } from './building-arch.svelte';
|
|
993
997
|
export { default as IconBuildingBank } from './building-bank.svelte';
|
|
994
998
|
export { default as IconBuildingBridge2 } from './building-bridge-2.svelte';
|
|
@@ -1067,6 +1071,8 @@ export { default as IconCalendarUser } from './calendar-user.svelte';
|
|
|
1067
1071
|
export { default as IconCalendarWeek } from './calendar-week.svelte';
|
|
1068
1072
|
export { default as IconCalendarX } from './calendar-x.svelte';
|
|
1069
1073
|
export { default as IconCalendar } from './calendar.svelte';
|
|
1074
|
+
export { default as IconCameraAi } from './camera-ai.svelte';
|
|
1075
|
+
export { default as IconCameraBitcoin } from './camera-bitcoin.svelte';
|
|
1070
1076
|
export { default as IconCameraBolt } from './camera-bolt.svelte';
|
|
1071
1077
|
export { default as IconCameraCancel } from './camera-cancel.svelte';
|
|
1072
1078
|
export { default as IconCameraCheck } from './camera-check.svelte';
|
|
@@ -1077,6 +1083,7 @@ export { default as IconCameraDown } from './camera-down.svelte';
|
|
|
1077
1083
|
export { default as IconCameraExclamation } from './camera-exclamation.svelte';
|
|
1078
1084
|
export { default as IconCameraHeart } from './camera-heart.svelte';
|
|
1079
1085
|
export { default as IconCameraMinus } from './camera-minus.svelte';
|
|
1086
|
+
export { default as IconCameraMoon } from './camera-moon.svelte';
|
|
1080
1087
|
export { default as IconCameraOff } from './camera-off.svelte';
|
|
1081
1088
|
export { default as IconCameraPause } from './camera-pause.svelte';
|
|
1082
1089
|
export { default as IconCameraPin } from './camera-pin.svelte';
|
|
@@ -1175,6 +1182,8 @@ export { default as IconChartBubble } from './chart-bubble.svelte';
|
|
|
1175
1182
|
export { default as IconChartCandle } from './chart-candle.svelte';
|
|
1176
1183
|
export { default as IconChartCircles } from './chart-circles.svelte';
|
|
1177
1184
|
export { default as IconChartCohort } from './chart-cohort.svelte';
|
|
1185
|
+
export { default as IconChartColumn } from './chart-column.svelte';
|
|
1186
|
+
export { default as IconChartCovariate } from './chart-covariate.svelte';
|
|
1178
1187
|
export { default as IconChartDonut2 } from './chart-donut-2.svelte';
|
|
1179
1188
|
export { default as IconChartDonut3 } from './chart-donut-3.svelte';
|
|
1180
1189
|
export { default as IconChartDonut4 } from './chart-donut-4.svelte';
|
|
@@ -1273,7 +1282,6 @@ export { default as IconCircleDashedLetterI } from './circle-dashed-letter-i.sve
|
|
|
1273
1282
|
export { default as IconCircleDashedLetterJ } from './circle-dashed-letter-j.svelte';
|
|
1274
1283
|
export { default as IconCircleDashedLetterK } from './circle-dashed-letter-k.svelte';
|
|
1275
1284
|
export { default as IconCircleDashedLetterL } from './circle-dashed-letter-l.svelte';
|
|
1276
|
-
export { default as IconCircleDashedLetterLetterV } from './circle-dashed-letter-letter-v.svelte';
|
|
1277
1285
|
export { default as IconCircleDashedLetterM } from './circle-dashed-letter-m.svelte';
|
|
1278
1286
|
export { default as IconCircleDashedLetterN } from './circle-dashed-letter-n.svelte';
|
|
1279
1287
|
export { default as IconCircleDashedLetterO } from './circle-dashed-letter-o.svelte';
|
|
@@ -1549,6 +1557,7 @@ export { default as IconCone } from './cone.svelte';
|
|
|
1549
1557
|
export { default as IconConfettiOff } from './confetti-off.svelte';
|
|
1550
1558
|
export { default as IconConfetti } from './confetti.svelte';
|
|
1551
1559
|
export { default as IconConfucius } from './confucius.svelte';
|
|
1560
|
+
export { default as IconCongruentTo } from './congruent-to.svelte';
|
|
1552
1561
|
export { default as IconContainerOff } from './container-off.svelte';
|
|
1553
1562
|
export { default as IconContainer } from './container.svelte';
|
|
1554
1563
|
export { default as IconContract } from './contract.svelte';
|
|
@@ -1956,6 +1965,7 @@ export { default as IconDialpad } from './dialpad.svelte';
|
|
|
1956
1965
|
export { default as IconDiamondOff } from './diamond-off.svelte';
|
|
1957
1966
|
export { default as IconDiamond } from './diamond.svelte';
|
|
1958
1967
|
export { default as IconDiamonds } from './diamonds.svelte';
|
|
1968
|
+
export { default as IconDiaper } from './diaper.svelte';
|
|
1959
1969
|
export { default as IconDice1 } from './dice-1.svelte';
|
|
1960
1970
|
export { default as IconDice2 } from './dice-2.svelte';
|
|
1961
1971
|
export { default as IconDice3 } from './dice-3.svelte';
|
|
@@ -2123,11 +2133,13 @@ export { default as IconFenceOff } from './fence-off.svelte';
|
|
|
2123
2133
|
export { default as IconFence } from './fence.svelte';
|
|
2124
2134
|
export { default as IconFidgetSpinner } from './fidget-spinner.svelte';
|
|
2125
2135
|
export { default as IconFile3d } from './file-3d.svelte';
|
|
2136
|
+
export { default as IconFileAi } from './file-ai.svelte';
|
|
2126
2137
|
export { default as IconFileAlert } from './file-alert.svelte';
|
|
2127
2138
|
export { default as IconFileAnalytics } from './file-analytics.svelte';
|
|
2128
2139
|
export { default as IconFileArrowLeft } from './file-arrow-left.svelte';
|
|
2129
2140
|
export { default as IconFileArrowRight } from './file-arrow-right.svelte';
|
|
2130
2141
|
export { default as IconFileBarcode } from './file-barcode.svelte';
|
|
2142
|
+
export { default as IconFileBitcoin } from './file-bitcoin.svelte';
|
|
2131
2143
|
export { default as IconFileBroken } from './file-broken.svelte';
|
|
2132
2144
|
export { default as IconFileCertificate } from './file-certificate.svelte';
|
|
2133
2145
|
export { default as IconFileChart } from './file-chart.svelte';
|
|
@@ -2907,6 +2919,7 @@ export { default as IconLockOff } from './lock-off.svelte';
|
|
|
2907
2919
|
export { default as IconLockOpen2 } from './lock-open-2.svelte';
|
|
2908
2920
|
export { default as IconLockOpenOff } from './lock-open-off.svelte';
|
|
2909
2921
|
export { default as IconLockOpen } from './lock-open.svelte';
|
|
2922
|
+
export { default as IconLockPassword } from './lock-password.svelte';
|
|
2910
2923
|
export { default as IconLockPause } from './lock-pause.svelte';
|
|
2911
2924
|
export { default as IconLockPin } from './lock-pin.svelte';
|
|
2912
2925
|
export { default as IconLockPlus } from './lock-plus.svelte';
|
|
@@ -3502,11 +3515,14 @@ export { default as IconPerspective } from './perspective.svelte';
|
|
|
3502
3515
|
export { default as IconPhoneCall } from './phone-call.svelte';
|
|
3503
3516
|
export { default as IconPhoneCalling } from './phone-calling.svelte';
|
|
3504
3517
|
export { default as IconPhoneCheck } from './phone-check.svelte';
|
|
3518
|
+
export { default as IconPhoneDone } from './phone-done.svelte';
|
|
3519
|
+
export { default as IconPhoneEnd } from './phone-end.svelte';
|
|
3505
3520
|
export { default as IconPhoneIncoming } from './phone-incoming.svelte';
|
|
3506
3521
|
export { default as IconPhoneOff } from './phone-off.svelte';
|
|
3507
3522
|
export { default as IconPhoneOutgoing } from './phone-outgoing.svelte';
|
|
3508
3523
|
export { default as IconPhonePause } from './phone-pause.svelte';
|
|
3509
3524
|
export { default as IconPhonePlus } from './phone-plus.svelte';
|
|
3525
|
+
export { default as IconPhoneRinging } from './phone-ringing.svelte';
|
|
3510
3526
|
export { default as IconPhoneX } from './phone-x.svelte';
|
|
3511
3527
|
export { default as IconPhone } from './phone.svelte';
|
|
3512
3528
|
export { default as IconPhotoAi } from './photo-ai.svelte';
|
|
@@ -4261,6 +4277,7 @@ export { default as IconStethoscopeOff } from './stethoscope-off.svelte';
|
|
|
4261
4277
|
export { default as IconStethoscope } from './stethoscope.svelte';
|
|
4262
4278
|
export { default as IconSticker2 } from './sticker-2.svelte';
|
|
4263
4279
|
export { default as IconSticker } from './sticker.svelte';
|
|
4280
|
+
export { default as IconStopwatch } from './stopwatch.svelte';
|
|
4264
4281
|
export { default as IconStormOff } from './storm-off.svelte';
|
|
4265
4282
|
export { default as IconStorm } from './storm.svelte';
|
|
4266
4283
|
export { default as IconStretching2 } from './stretching-2.svelte';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 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": "M8 11v-4a4 4 0 1 1 8 0v4" }], ["path", { "d": "M15 16h.01" }], ["path", { "d": "M12.01 16h.01" }], ["path", { "d": "M9.02 16h.01" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="lock-password" {...$$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 LockPasswordProps = typeof __propDef.props;
|
|
13
|
+
export type LockPasswordEvents = typeof __propDef.events;
|
|
14
|
+
export type LockPasswordSlots = typeof __propDef.slots;
|
|
15
|
+
export default class LockPassword extends SvelteComponentTyped<LockPasswordProps, LockPasswordEvents, LockPasswordSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2c-8.072 -.49 -14.51 -6.928 -15 -15a2 2 0 0 1 2 -2" }], ["path", { "d": "M15 5l2 2l4 -4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="phone-done" {...$$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 PhoneDoneProps = typeof __propDef.props;
|
|
13
|
+
export type PhoneDoneEvents = typeof __propDef.events;
|
|
14
|
+
export type PhoneDoneSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhoneDone extends SvelteComponentTyped<PhoneDoneProps, PhoneDoneEvents, PhoneDoneSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2c-8.072 -.49 -14.51 -6.928 -15 -15a2 2 0 0 1 2 -2" }], ["path", { "d": "M17 3l4 4" }], ["path", { "d": "M21 3l-4 4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="phone-end" {...$$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 PhoneEndProps = typeof __propDef.props;
|
|
13
|
+
export type PhoneEndEvents = typeof __propDef.events;
|
|
14
|
+
export type PhoneEndSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhoneEnd extends SvelteComponentTyped<PhoneEndProps, PhoneEndEvents, PhoneEndSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2
|
|
2
|
+
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2c-8.072 -.49 -14.51 -6.928 -15 -15a2 2 0 0 1 2 -2" }], ["path", { "d": "M15 5h6" }], ["path", { "d": "M18.5 7.5l2.5 -2.5l-2.5 -2.5" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="phone-outgoing" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2
|
|
2
|
+
const iconNode = [["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2c-8.072 -.49 -14.51 -6.928 -15 -15a2 2 0 0 1 2 -2" }], ["path", { "d": "M17 3v5" }], ["path", { "d": "M21 3v5" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="phone-pause" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M20 4l-2 2" }], ["path", { "d": "M22 10.5l-2.5 -.5" }], ["path", { "d": "M13.5 2l.5 2.5" }], ["path", { "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2c-8.072 -.49 -14.51 -6.928 -15 -15a2 2 0 0 1 2 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="phone-ringing" {...$$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 PhoneRingingProps = typeof __propDef.props;
|
|
13
|
+
export type PhoneRingingEvents = typeof __propDef.events;
|
|
14
|
+
export type PhoneRingingSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhoneRinging extends SvelteComponentTyped<PhoneRingingProps, PhoneRingingEvents, PhoneRingingSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 13a7 7 0 1 0 14 0a7 7 0 0 0 -14 0z" }], ["path", { "d": "M14.5 10.5l-2.5 2.5" }], ["path", { "d": "M17 8l1 -1" }], ["path", { "d": "M14 3h-4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="stopwatch" {...$$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 StopwatchProps = typeof __propDef.props;
|
|
13
|
+
export type StopwatchEvents = typeof __propDef.events;
|
|
14
|
+
export type StopwatchSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Stopwatch extends SvelteComponentTyped<StopwatchProps, StopwatchEvents, StopwatchSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -303,6 +303,7 @@ export default [
|
|
|
303
303
|
"arrows-split-2",
|
|
304
304
|
"arrows-split",
|
|
305
305
|
"arrows-transfer-down",
|
|
306
|
+
"arrows-transfer-up-down",
|
|
306
307
|
"arrows-transfer-up",
|
|
307
308
|
"arrows-up-down",
|
|
308
309
|
"arrows-up-left",
|
|
@@ -609,6 +610,7 @@ export default [
|
|
|
609
610
|
"brand-alpine-js",
|
|
610
611
|
"brand-amazon",
|
|
611
612
|
"brand-amd",
|
|
613
|
+
"brand-amie",
|
|
612
614
|
"brand-amigo",
|
|
613
615
|
"brand-among-us",
|
|
614
616
|
"brand-android",
|
|
@@ -633,6 +635,7 @@ export default [
|
|
|
633
635
|
"brand-bandcamp",
|
|
634
636
|
"brand-bandlab",
|
|
635
637
|
"brand-beats",
|
|
638
|
+
"brand-bebo",
|
|
636
639
|
"brand-behance",
|
|
637
640
|
"brand-bilibili",
|
|
638
641
|
"brand-binance",
|
|
@@ -990,6 +993,7 @@ export default [
|
|
|
990
993
|
"bucket",
|
|
991
994
|
"bug-off",
|
|
992
995
|
"bug",
|
|
996
|
+
"building-airport",
|
|
993
997
|
"building-arch",
|
|
994
998
|
"building-bank",
|
|
995
999
|
"building-bridge-2",
|
|
@@ -1068,6 +1072,8 @@ export default [
|
|
|
1068
1072
|
"calendar-week",
|
|
1069
1073
|
"calendar-x",
|
|
1070
1074
|
"calendar",
|
|
1075
|
+
"camera-ai",
|
|
1076
|
+
"camera-bitcoin",
|
|
1071
1077
|
"camera-bolt",
|
|
1072
1078
|
"camera-cancel",
|
|
1073
1079
|
"camera-check",
|
|
@@ -1078,6 +1084,7 @@ export default [
|
|
|
1078
1084
|
"camera-exclamation",
|
|
1079
1085
|
"camera-heart",
|
|
1080
1086
|
"camera-minus",
|
|
1087
|
+
"camera-moon",
|
|
1081
1088
|
"camera-off",
|
|
1082
1089
|
"camera-pause",
|
|
1083
1090
|
"camera-pin",
|
|
@@ -1176,6 +1183,8 @@ export default [
|
|
|
1176
1183
|
"chart-candle",
|
|
1177
1184
|
"chart-circles",
|
|
1178
1185
|
"chart-cohort",
|
|
1186
|
+
"chart-column",
|
|
1187
|
+
"chart-covariate",
|
|
1179
1188
|
"chart-donut-2",
|
|
1180
1189
|
"chart-donut-3",
|
|
1181
1190
|
"chart-donut-4",
|
|
@@ -1274,7 +1283,6 @@ export default [
|
|
|
1274
1283
|
"circle-dashed-letter-j",
|
|
1275
1284
|
"circle-dashed-letter-k",
|
|
1276
1285
|
"circle-dashed-letter-l",
|
|
1277
|
-
"circle-dashed-letter-letter-v",
|
|
1278
1286
|
"circle-dashed-letter-m",
|
|
1279
1287
|
"circle-dashed-letter-n",
|
|
1280
1288
|
"circle-dashed-letter-o",
|
|
@@ -1550,6 +1558,7 @@ export default [
|
|
|
1550
1558
|
"confetti-off",
|
|
1551
1559
|
"confetti",
|
|
1552
1560
|
"confucius",
|
|
1561
|
+
"congruent-to",
|
|
1553
1562
|
"container-off",
|
|
1554
1563
|
"container",
|
|
1555
1564
|
"contract",
|
|
@@ -1957,6 +1966,7 @@ export default [
|
|
|
1957
1966
|
"diamond-off",
|
|
1958
1967
|
"diamond",
|
|
1959
1968
|
"diamonds",
|
|
1969
|
+
"diaper",
|
|
1960
1970
|
"dice-1",
|
|
1961
1971
|
"dice-2",
|
|
1962
1972
|
"dice-3",
|
|
@@ -2124,11 +2134,13 @@ export default [
|
|
|
2124
2134
|
"fence",
|
|
2125
2135
|
"fidget-spinner",
|
|
2126
2136
|
"file-3d",
|
|
2137
|
+
"file-ai",
|
|
2127
2138
|
"file-alert",
|
|
2128
2139
|
"file-analytics",
|
|
2129
2140
|
"file-arrow-left",
|
|
2130
2141
|
"file-arrow-right",
|
|
2131
2142
|
"file-barcode",
|
|
2143
|
+
"file-bitcoin",
|
|
2132
2144
|
"file-broken",
|
|
2133
2145
|
"file-certificate",
|
|
2134
2146
|
"file-chart",
|
|
@@ -2908,6 +2920,7 @@ export default [
|
|
|
2908
2920
|
"lock-open-2",
|
|
2909
2921
|
"lock-open-off",
|
|
2910
2922
|
"lock-open",
|
|
2923
|
+
"lock-password",
|
|
2911
2924
|
"lock-pause",
|
|
2912
2925
|
"lock-pin",
|
|
2913
2926
|
"lock-plus",
|
|
@@ -3503,11 +3516,14 @@ export default [
|
|
|
3503
3516
|
"phone-call",
|
|
3504
3517
|
"phone-calling",
|
|
3505
3518
|
"phone-check",
|
|
3519
|
+
"phone-done",
|
|
3520
|
+
"phone-end",
|
|
3506
3521
|
"phone-incoming",
|
|
3507
3522
|
"phone-off",
|
|
3508
3523
|
"phone-outgoing",
|
|
3509
3524
|
"phone-pause",
|
|
3510
3525
|
"phone-plus",
|
|
3526
|
+
"phone-ringing",
|
|
3511
3527
|
"phone-x",
|
|
3512
3528
|
"phone",
|
|
3513
3529
|
"photo-ai",
|
|
@@ -4262,6 +4278,7 @@ export default [
|
|
|
4262
4278
|
"stethoscope",
|
|
4263
4279
|
"sticker-2",
|
|
4264
4280
|
"sticker",
|
|
4281
|
+
"stopwatch",
|
|
4265
4282
|
"storm-off",
|
|
4266
4283
|
"storm",
|
|
4267
4284
|
"stretching-2",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.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.",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"imports-check": "attw $(npm pack)"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@tabler/icons": "3.
|
|
52
|
+
"@tabler/icons": "3.12.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@sveltejs/package": "^2.2.7",
|
|
@@ -61,6 +61,6 @@
|
|
|
61
61
|
"svelte-preprocess": "^5.1.3"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
|
-
"svelte": ">=3 <6"
|
|
64
|
+
"svelte": ">=3 <6 || >=5.0.0-next.0"
|
|
65
65
|
}
|
|
66
66
|
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M10 8l2 8l2 -8" }], ["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" }]];
|
|
3
|
-
</script>
|
|
4
|
-
<Icon type="outline" name="circle-dashed-letter-letter-v" {...$$props} iconNode={iconNode}>
|
|
5
|
-
<slot/>
|
|
6
|
-
</Icon>
|
|
@@ -1,17 +0,0 @@
|
|
|
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 CircleDashedLetterLetterVProps = typeof __propDef.props;
|
|
13
|
-
export type CircleDashedLetterLetterVEvents = typeof __propDef.events;
|
|
14
|
-
export type CircleDashedLetterLetterVSlots = typeof __propDef.slots;
|
|
15
|
-
export default class CircleDashedLetterLetterV extends SvelteComponentTyped<CircleDashedLetterLetterVProps, CircleDashedLetterLetterVEvents, CircleDashedLetterLetterVSlots> {
|
|
16
|
-
}
|
|
17
|
-
export {};
|