@tabler/icons-svelte 3.3.0 → 3.5.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/ai.svelte +6 -0
- package/dist/icons/ai.svelte.d.ts +17 -0
- package/dist/icons/automation.svelte +6 -0
- package/dist/icons/automation.svelte.d.ts +17 -0
- package/dist/icons/battery-automotive.svelte +1 -1
- package/dist/icons/cash-register.svelte +6 -0
- package/dist/icons/cash-register.svelte.d.ts +17 -0
- package/dist/icons/chart-bar-popular.svelte +6 -0
- package/dist/icons/chart-bar-popular.svelte.d.ts +17 -0
- package/dist/icons/chart-bar.svelte +1 -1
- package/dist/icons/chart-cohort.svelte +6 -0
- package/dist/icons/chart-cohort.svelte.d.ts +17 -0
- package/dist/icons/chart-funnel.svelte +6 -0
- package/dist/icons/chart-funnel.svelte.d.ts +17 -0
- package/dist/icons/circle-plus-filled.svelte +6 -0
- package/dist/icons/circle-plus-filled.svelte.d.ts +17 -0
- package/dist/icons/device-unknown.svelte +6 -0
- package/dist/icons/device-unknown.svelte.d.ts +17 -0
- package/dist/icons/file-excel.svelte +6 -0
- package/dist/icons/file-excel.svelte.d.ts +17 -0
- package/dist/icons/file-word.svelte +6 -0
- package/dist/icons/file-word.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +36 -0
- package/dist/icons/index.js +36 -0
- package/dist/icons/object-scan.svelte +6 -0
- package/dist/icons/object-scan.svelte.d.ts +17 -0
- package/dist/icons/percentage-0.svelte +6 -0
- package/dist/icons/percentage-0.svelte.d.ts +17 -0
- package/dist/icons/percentage-10.svelte +6 -0
- package/dist/icons/percentage-10.svelte.d.ts +17 -0
- package/dist/icons/percentage-100.svelte +6 -0
- package/dist/icons/percentage-100.svelte.d.ts +17 -0
- package/dist/icons/percentage-20.svelte +6 -0
- package/dist/icons/percentage-20.svelte.d.ts +17 -0
- package/dist/icons/percentage-25.svelte +6 -0
- package/dist/icons/percentage-25.svelte.d.ts +17 -0
- package/dist/icons/percentage-30.svelte +6 -0
- package/dist/icons/percentage-30.svelte.d.ts +17 -0
- package/dist/icons/percentage-33.svelte +6 -0
- package/dist/icons/percentage-33.svelte.d.ts +17 -0
- package/dist/icons/percentage-40.svelte +6 -0
- package/dist/icons/percentage-40.svelte.d.ts +17 -0
- package/dist/icons/percentage-50.svelte +6 -0
- package/dist/icons/percentage-50.svelte.d.ts +17 -0
- package/dist/icons/percentage-60.svelte +6 -0
- package/dist/icons/percentage-60.svelte.d.ts +17 -0
- package/dist/icons/percentage-66.svelte +6 -0
- package/dist/icons/percentage-66.svelte.d.ts +17 -0
- package/dist/icons/percentage-70.svelte +6 -0
- package/dist/icons/percentage-70.svelte.d.ts +17 -0
- package/dist/icons/percentage-75.svelte +6 -0
- package/dist/icons/percentage-75.svelte.d.ts +17 -0
- package/dist/icons/percentage-80.svelte +6 -0
- package/dist/icons/percentage-80.svelte.d.ts +17 -0
- package/dist/icons/percentage-90.svelte +6 -0
- package/dist/icons/percentage-90.svelte.d.ts +17 -0
- package/dist/icons/picnic-table.svelte +6 -0
- package/dist/icons/picnic-table.svelte.d.ts +17 -0
- package/dist/icons/tax-euro.svelte +6 -0
- package/dist/icons/tax-euro.svelte.d.ts +17 -0
- package/dist/icons/tax-pound.svelte +6 -0
- package/dist/icons/tax-pound.svelte.d.ts +17 -0
- package/dist/icons/tax.svelte +6 -0
- package/dist/icons/tax.svelte.d.ts +17 -0
- package/dist/icons/timezone.svelte +6 -0
- package/dist/icons/timezone.svelte.d.ts +17 -0
- package/dist/icons/tip-jar-euro.svelte +6 -0
- package/dist/icons/tip-jar-euro.svelte.d.ts +17 -0
- package/dist/icons/tip-jar-pound.svelte +6 -0
- package/dist/icons/tip-jar-pound.svelte.d.ts +17 -0
- package/dist/icons/tip-jar.svelte +6 -0
- package/dist/icons/tip-jar.svelte.d.ts +17 -0
- package/dist/icons/viewport-narrow.svelte +1 -1
- package/dist/icons/viewport-short.svelte +6 -0
- package/dist/icons/viewport-short.svelte.d.ts +17 -0
- package/dist/icons/viewport-tall.svelte +6 -0
- package/dist/icons/viewport-tall.svelte.d.ts +17 -0
- package/dist/icons/viewport-wide.svelte +1 -1
- package/dist/icons-list.js +36 -0
- package/package.json +146 -2
|
@@ -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 AiProps = typeof __propDef.props;
|
|
13
|
+
export type AiEvents = typeof __propDef.events;
|
|
14
|
+
export type AiSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Ai extends SvelteComponentTyped<AiProps, AiEvents, AiSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M13 20.693c-.905 .628 -2.36 .292 -2.675 -1.01a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.492 .362 1.716 2.219 .674 3.03" }], ["path", { "d": "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" }], ["path", { "d": "M17 22l5 -3l-5 -3z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="automation" {...$$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 AutomationProps = typeof __propDef.props;
|
|
13
|
+
export type AutomationEvents = typeof __propDef.events;
|
|
14
|
+
export type AutomationSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Automation extends SvelteComponentTyped<AutomationProps, AutomationEvents, AutomationSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M3
|
|
2
|
+
const iconNode = [["path", { "d": "M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M6 5v-2" }], ["path", { "d": "M19 3v2" }], ["path", { "d": "M6.5 12h3" }], ["path", { "d": "M14.5 12h3" }], ["path", { "d": "M16 10.5v3" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="battery-automotive" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M21 15h-2.5c-.398 0 -.779 .158 -1.061 .439c-.281 .281 -.439 .663 -.439 1.061c0 .398 .158 .779 .439 1.061c.281 .281 .663 .439 1.061 .439h1c.398 0 .779 .158 1.061 .439c.281 .281 .439 .663 .439 1.061c0 .398 -.158 .779 -.439 1.061c-.281 .281 -.663 .439 -1.061 .439h-2.5" }], ["path", { "d": "M19 21v1m0 -8v1" }], ["path", { "d": "M13 21h-7c-.53 0 -1.039 -.211 -1.414 -.586c-.375 -.375 -.586 -.884 -.586 -1.414v-10c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h2m12 3.12v-1.12c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586h-2" }], ["path", { "d": "M16 10v-6c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586h-4c-.53 0 -1.039 .211 -1.414 .586c-.375 .375 -.586 .884 -.586 1.414v6m8 0h-8m8 0h1m-9 0h-1" }], ["path", { "d": "M8 14v.01" }], ["path", { "d": "M8 17v.01" }], ["path", { "d": "M12 13.99v.01" }], ["path", { "d": "M12 17v.01" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="cash-register" {...$$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 CashRegisterProps = typeof __propDef.props;
|
|
13
|
+
export type CashRegisterEvents = typeof __propDef.events;
|
|
14
|
+
export type CashRegisterSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CashRegister extends SvelteComponentTyped<CashRegisterProps, CashRegisterEvents, CashRegisterSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 13a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M9 9a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M15 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M4 20h14" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="chart-bar-popular" {...$$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 ChartBarPopularProps = typeof __propDef.props;
|
|
13
|
+
export type ChartBarPopularEvents = typeof __propDef.events;
|
|
14
|
+
export type ChartBarPopularSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ChartBarPopular extends SvelteComponentTyped<ChartBarPopularProps, ChartBarPopularEvents, ChartBarPopularSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M3
|
|
2
|
+
const iconNode = [["path", { "d": "M3 13a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M15 9a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M9 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M4 20h14" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="chart-bar" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -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 ChartCohortProps = typeof __propDef.props;
|
|
13
|
+
export type ChartCohortEvents = typeof __propDef.events;
|
|
14
|
+
export type ChartCohortSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ChartCohort extends SvelteComponentTyped<ChartCohortProps, ChartCohortEvents, ChartCohortSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4.387 3h15.226a1 1 0 0 1 .948 1.316l-5.105 15.316a2 2 0 0 1 -1.898 1.368h-3.116a2 2 0 0 1 -1.898 -1.368l-5.104 -15.316a1 1 0 0 1 .947 -1.316" }], ["path", { "d": "M5 9h14" }], ["path", { "d": "M7 15h10" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="chart-funnel" {...$$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 ChartFunnelProps = typeof __propDef.props;
|
|
13
|
+
export type ChartFunnelEvents = typeof __propDef.events;
|
|
14
|
+
export type ChartFunnelSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ChartFunnel extends SvelteComponentTyped<ChartFunnelProps, ChartFunnelEvents, ChartFunnelSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "fill-rule": "evenodd", "d": "M4.929 4.929A10 10 0 1 1 19.07 19.07 10 10 0 0 1 4.93 4.93ZM13 9a1 1 0 1 0 -2 0v2H9a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0 -2h-2V9Z", "clip-rule": "evenodd" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="circle-plus-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 CirclePlusFilledProps = typeof __propDef.props;
|
|
13
|
+
export type CirclePlusFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type CirclePlusFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CirclePlusFilled extends SvelteComponentTyped<CirclePlusFilledProps, CirclePlusFilledEvents, CirclePlusFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 5a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M12 16v.01" }], ["path", { "d": "M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="device-unknown" {...$$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 DeviceUnknownProps = typeof __propDef.props;
|
|
13
|
+
export type DeviceUnknownEvents = typeof __propDef.events;
|
|
14
|
+
export type DeviceUnknownSlots = typeof __propDef.slots;
|
|
15
|
+
export default class DeviceUnknown extends SvelteComponentTyped<DeviceUnknownProps, DeviceUnknownEvents, DeviceUnknownSlots> {
|
|
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": "M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2" }], ["path", { "d": "M10 12l4 5" }], ["path", { "d": "M10 17l4 -5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="file-excel" {...$$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 FileExcelProps = typeof __propDef.props;
|
|
13
|
+
export type FileExcelEvents = typeof __propDef.events;
|
|
14
|
+
export type FileExcelSlots = typeof __propDef.slots;
|
|
15
|
+
export default class FileExcel extends SvelteComponentTyped<FileExcelProps, FileExcelEvents, FileExcelSlots> {
|
|
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": "M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2" }], ["path", { "d": "M9 12l1.333 5l1.667 -4l1.667 4l1.333 -5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="file-word" {...$$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 FileWordProps = typeof __propDef.props;
|
|
13
|
+
export type FileWordEvents = typeof __propDef.events;
|
|
14
|
+
export type FileWordSlots = typeof __propDef.slots;
|
|
15
|
+
export default class FileWord extends SvelteComponentTyped<FileWordProps, FileWordEvents, FileWordSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ export { default as IconAdjustmentsX } from './adjustments-x.svelte';
|
|
|
42
42
|
export { default as IconAdjustments } from './adjustments.svelte';
|
|
43
43
|
export { default as IconAerialLift } from './aerial-lift.svelte';
|
|
44
44
|
export { default as IconAffiliate } from './affiliate.svelte';
|
|
45
|
+
export { default as IconAi } from './ai.svelte';
|
|
45
46
|
export { default as IconAirBalloon } from './air-balloon.svelte';
|
|
46
47
|
export { default as IconAirConditioningDisabled } from './air-conditioning-disabled.svelte';
|
|
47
48
|
export { default as IconAirConditioning } from './air-conditioning.svelte';
|
|
@@ -321,6 +322,7 @@ export { default as IconAugmentedRealityOff } from './augmented-reality-off.svel
|
|
|
321
322
|
export { default as IconAugmentedReality } from './augmented-reality.svelte';
|
|
322
323
|
export { default as IconAuth2fa } from './auth-2fa.svelte';
|
|
323
324
|
export { default as IconAutomaticGearbox } from './automatic-gearbox.svelte';
|
|
325
|
+
export { default as IconAutomation } from './automation.svelte';
|
|
324
326
|
export { default as IconAvocado } from './avocado.svelte';
|
|
325
327
|
export { default as IconAwardOff } from './award-off.svelte';
|
|
326
328
|
export { default as IconAward } from './award.svelte';
|
|
@@ -1097,6 +1099,7 @@ export { default as IconCarrot } from './carrot.svelte';
|
|
|
1097
1099
|
export { default as IconCashBanknoteOff } from './cash-banknote-off.svelte';
|
|
1098
1100
|
export { default as IconCashBanknote } from './cash-banknote.svelte';
|
|
1099
1101
|
export { default as IconCashOff } from './cash-off.svelte';
|
|
1102
|
+
export { default as IconCashRegister } from './cash-register.svelte';
|
|
1100
1103
|
export { default as IconCash } from './cash.svelte';
|
|
1101
1104
|
export { default as IconCastOff } from './cast-off.svelte';
|
|
1102
1105
|
export { default as IconCast } from './cast.svelte';
|
|
@@ -1129,10 +1132,12 @@ export { default as IconChartArea } from './chart-area.svelte';
|
|
|
1129
1132
|
export { default as IconChartArrowsVertical } from './chart-arrows-vertical.svelte';
|
|
1130
1133
|
export { default as IconChartArrows } from './chart-arrows.svelte';
|
|
1131
1134
|
export { default as IconChartBarOff } from './chart-bar-off.svelte';
|
|
1135
|
+
export { default as IconChartBarPopular } from './chart-bar-popular.svelte';
|
|
1132
1136
|
export { default as IconChartBar } from './chart-bar.svelte';
|
|
1133
1137
|
export { default as IconChartBubble } from './chart-bubble.svelte';
|
|
1134
1138
|
export { default as IconChartCandle } from './chart-candle.svelte';
|
|
1135
1139
|
export { default as IconChartCircles } from './chart-circles.svelte';
|
|
1140
|
+
export { default as IconChartCohort } from './chart-cohort.svelte';
|
|
1136
1141
|
export { default as IconChartDonut2 } from './chart-donut-2.svelte';
|
|
1137
1142
|
export { default as IconChartDonut3 } from './chart-donut-3.svelte';
|
|
1138
1143
|
export { default as IconChartDonut4 } from './chart-donut-4.svelte';
|
|
@@ -1140,6 +1145,7 @@ export { default as IconChartDonut } from './chart-donut.svelte';
|
|
|
1140
1145
|
export { default as IconChartDots2 } from './chart-dots-2.svelte';
|
|
1141
1146
|
export { default as IconChartDots3 } from './chart-dots-3.svelte';
|
|
1142
1147
|
export { default as IconChartDots } from './chart-dots.svelte';
|
|
1148
|
+
export { default as IconChartFunnel } from './chart-funnel.svelte';
|
|
1143
1149
|
export { default as IconChartGridDots } from './chart-grid-dots.svelte';
|
|
1144
1150
|
export { default as IconChartHistogram } from './chart-histogram.svelte';
|
|
1145
1151
|
export { default as IconChartInfographic } from './chart-infographic.svelte';
|
|
@@ -1798,6 +1804,7 @@ export { default as IconDeviceTablet } from './device-tablet.svelte';
|
|
|
1798
1804
|
export { default as IconDeviceTvOff } from './device-tv-off.svelte';
|
|
1799
1805
|
export { default as IconDeviceTvOld } from './device-tv-old.svelte';
|
|
1800
1806
|
export { default as IconDeviceTv } from './device-tv.svelte';
|
|
1807
|
+
export { default as IconDeviceUnknown } from './device-unknown.svelte';
|
|
1801
1808
|
export { default as IconDeviceUsb } from './device-usb.svelte';
|
|
1802
1809
|
export { default as IconDeviceVisionPro } from './device-vision-pro.svelte';
|
|
1803
1810
|
export { default as IconDeviceWatchBolt } from './device-watch-bolt.svelte';
|
|
@@ -2043,6 +2050,7 @@ export { default as IconFileDollar } from './file-dollar.svelte';
|
|
|
2043
2050
|
export { default as IconFileDots } from './file-dots.svelte';
|
|
2044
2051
|
export { default as IconFileDownload } from './file-download.svelte';
|
|
2045
2052
|
export { default as IconFileEuro } from './file-euro.svelte';
|
|
2053
|
+
export { default as IconFileExcel } from './file-excel.svelte';
|
|
2046
2054
|
export { default as IconFileExport } from './file-export.svelte';
|
|
2047
2055
|
export { default as IconFileFunction } from './file-function.svelte';
|
|
2048
2056
|
export { default as IconFileHorizontal } from './file-horizontal.svelte';
|
|
@@ -2106,6 +2114,7 @@ export { default as IconFileTypography } from './file-typography.svelte';
|
|
|
2106
2114
|
export { default as IconFileUnknown } from './file-unknown.svelte';
|
|
2107
2115
|
export { default as IconFileUpload } from './file-upload.svelte';
|
|
2108
2116
|
export { default as IconFileVector } from './file-vector.svelte';
|
|
2117
|
+
export { default as IconFileWord } from './file-word.svelte';
|
|
2109
2118
|
export { default as IconFileX } from './file-x.svelte';
|
|
2110
2119
|
export { default as IconFileZip } from './file-zip.svelte';
|
|
2111
2120
|
export { default as IconFile } from './file.svelte';
|
|
@@ -3252,6 +3261,7 @@ export { default as IconNumber } from './number.svelte';
|
|
|
3252
3261
|
export { default as IconNumbers } from './numbers.svelte';
|
|
3253
3262
|
export { default as IconNurse } from './nurse.svelte';
|
|
3254
3263
|
export { default as IconNut } from './nut.svelte';
|
|
3264
|
+
export { default as IconObjectScan } from './object-scan.svelte';
|
|
3255
3265
|
export { default as IconOctagonMinus2 } from './octagon-minus-2.svelte';
|
|
3256
3266
|
export { default as IconOctagonMinus } from './octagon-minus.svelte';
|
|
3257
3267
|
export { default as IconOctagonOff } from './octagon-off.svelte';
|
|
@@ -3348,6 +3358,21 @@ export { default as IconPentagon } from './pentagon.svelte';
|
|
|
3348
3358
|
export { default as IconPentagram } from './pentagram.svelte';
|
|
3349
3359
|
export { default as IconPepperOff } from './pepper-off.svelte';
|
|
3350
3360
|
export { default as IconPepper } from './pepper.svelte';
|
|
3361
|
+
export { default as IconPercentage0 } from './percentage-0.svelte';
|
|
3362
|
+
export { default as IconPercentage10 } from './percentage-10.svelte';
|
|
3363
|
+
export { default as IconPercentage100 } from './percentage-100.svelte';
|
|
3364
|
+
export { default as IconPercentage20 } from './percentage-20.svelte';
|
|
3365
|
+
export { default as IconPercentage25 } from './percentage-25.svelte';
|
|
3366
|
+
export { default as IconPercentage30 } from './percentage-30.svelte';
|
|
3367
|
+
export { default as IconPercentage33 } from './percentage-33.svelte';
|
|
3368
|
+
export { default as IconPercentage40 } from './percentage-40.svelte';
|
|
3369
|
+
export { default as IconPercentage50 } from './percentage-50.svelte';
|
|
3370
|
+
export { default as IconPercentage60 } from './percentage-60.svelte';
|
|
3371
|
+
export { default as IconPercentage66 } from './percentage-66.svelte';
|
|
3372
|
+
export { default as IconPercentage70 } from './percentage-70.svelte';
|
|
3373
|
+
export { default as IconPercentage75 } from './percentage-75.svelte';
|
|
3374
|
+
export { default as IconPercentage80 } from './percentage-80.svelte';
|
|
3375
|
+
export { default as IconPercentage90 } from './percentage-90.svelte';
|
|
3351
3376
|
export { default as IconPercentage } from './percentage.svelte';
|
|
3352
3377
|
export { default as IconPerfume } from './perfume.svelte';
|
|
3353
3378
|
export { default as IconPerspectiveOff } from './perspective-off.svelte';
|
|
@@ -3400,6 +3425,7 @@ export { default as IconPhoto } from './photo.svelte';
|
|
|
3400
3425
|
export { default as IconPhysotherapist } from './physotherapist.svelte';
|
|
3401
3426
|
export { default as IconPiano } from './piano.svelte';
|
|
3402
3427
|
export { default as IconPick } from './pick.svelte';
|
|
3428
|
+
export { default as IconPicnicTable } from './picnic-table.svelte';
|
|
3403
3429
|
export { default as IconPictureInPictureOff } from './picture-in-picture-off.svelte';
|
|
3404
3430
|
export { default as IconPictureInPictureOn } from './picture-in-picture-on.svelte';
|
|
3405
3431
|
export { default as IconPictureInPictureTop } from './picture-in-picture-top.svelte';
|
|
@@ -4174,6 +4200,9 @@ export { default as IconTank } from './tank.svelte';
|
|
|
4174
4200
|
export { default as IconTargetArrow } from './target-arrow.svelte';
|
|
4175
4201
|
export { default as IconTargetOff } from './target-off.svelte';
|
|
4176
4202
|
export { default as IconTarget } from './target.svelte';
|
|
4203
|
+
export { default as IconTaxEuro } from './tax-euro.svelte';
|
|
4204
|
+
export { default as IconTaxPound } from './tax-pound.svelte';
|
|
4205
|
+
export { default as IconTax } from './tax.svelte';
|
|
4177
4206
|
export { default as IconTeapot } from './teapot.svelte';
|
|
4178
4207
|
export { default as IconTelescopeOff } from './telescope-off.svelte';
|
|
4179
4208
|
export { default as IconTelescope } from './telescope.svelte';
|
|
@@ -4242,6 +4271,10 @@ export { default as IconTimelineEventText } from './timeline-event-text.svelte';
|
|
|
4242
4271
|
export { default as IconTimelineEventX } from './timeline-event-x.svelte';
|
|
4243
4272
|
export { default as IconTimelineEvent } from './timeline-event.svelte';
|
|
4244
4273
|
export { default as IconTimeline } from './timeline.svelte';
|
|
4274
|
+
export { default as IconTimezone } from './timezone.svelte';
|
|
4275
|
+
export { default as IconTipJarEuro } from './tip-jar-euro.svelte';
|
|
4276
|
+
export { default as IconTipJarPound } from './tip-jar-pound.svelte';
|
|
4277
|
+
export { default as IconTipJar } from './tip-jar.svelte';
|
|
4245
4278
|
export { default as IconTir } from './tir.svelte';
|
|
4246
4279
|
export { default as IconToggleLeft } from './toggle-left.svelte';
|
|
4247
4280
|
export { default as IconToggleRight } from './toggle-right.svelte';
|
|
@@ -4420,6 +4453,8 @@ export { default as IconView360 } from './view-360.svelte';
|
|
|
4420
4453
|
export { default as IconViewfinderOff } from './viewfinder-off.svelte';
|
|
4421
4454
|
export { default as IconViewfinder } from './viewfinder.svelte';
|
|
4422
4455
|
export { default as IconViewportNarrow } from './viewport-narrow.svelte';
|
|
4456
|
+
export { default as IconViewportShort } from './viewport-short.svelte';
|
|
4457
|
+
export { default as IconViewportTall } from './viewport-tall.svelte';
|
|
4423
4458
|
export { default as IconViewportWide } from './viewport-wide.svelte';
|
|
4424
4459
|
export { default as IconVinyl } from './vinyl.svelte';
|
|
4425
4460
|
export { default as IconVipOff } from './vip-off.svelte';
|
|
@@ -4803,6 +4838,7 @@ export { default as IconCircleNumber7Filled } from './circle-number-7-filled.sve
|
|
|
4803
4838
|
export { default as IconCircleNumber8Filled } from './circle-number-8-filled.svelte';
|
|
4804
4839
|
export { default as IconCircleNumber9Filled } from './circle-number-9-filled.svelte';
|
|
4805
4840
|
export { default as IconCirclePercentageFilled } from './circle-percentage-filled.svelte';
|
|
4841
|
+
export { default as IconCirclePlusFilled } from './circle-plus-filled.svelte';
|
|
4806
4842
|
export { default as IconCircleXFilled } from './circle-x-filled.svelte';
|
|
4807
4843
|
export { default as IconCircleFilled } from './circle-filled.svelte';
|
|
4808
4844
|
export { default as IconCirclesFilled } from './circles-filled.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -42,6 +42,7 @@ export { default as IconAdjustmentsX } from './adjustments-x.svelte';
|
|
|
42
42
|
export { default as IconAdjustments } from './adjustments.svelte';
|
|
43
43
|
export { default as IconAerialLift } from './aerial-lift.svelte';
|
|
44
44
|
export { default as IconAffiliate } from './affiliate.svelte';
|
|
45
|
+
export { default as IconAi } from './ai.svelte';
|
|
45
46
|
export { default as IconAirBalloon } from './air-balloon.svelte';
|
|
46
47
|
export { default as IconAirConditioningDisabled } from './air-conditioning-disabled.svelte';
|
|
47
48
|
export { default as IconAirConditioning } from './air-conditioning.svelte';
|
|
@@ -321,6 +322,7 @@ export { default as IconAugmentedRealityOff } from './augmented-reality-off.svel
|
|
|
321
322
|
export { default as IconAugmentedReality } from './augmented-reality.svelte';
|
|
322
323
|
export { default as IconAuth2fa } from './auth-2fa.svelte';
|
|
323
324
|
export { default as IconAutomaticGearbox } from './automatic-gearbox.svelte';
|
|
325
|
+
export { default as IconAutomation } from './automation.svelte';
|
|
324
326
|
export { default as IconAvocado } from './avocado.svelte';
|
|
325
327
|
export { default as IconAwardOff } from './award-off.svelte';
|
|
326
328
|
export { default as IconAward } from './award.svelte';
|
|
@@ -1097,6 +1099,7 @@ export { default as IconCarrot } from './carrot.svelte';
|
|
|
1097
1099
|
export { default as IconCashBanknoteOff } from './cash-banknote-off.svelte';
|
|
1098
1100
|
export { default as IconCashBanknote } from './cash-banknote.svelte';
|
|
1099
1101
|
export { default as IconCashOff } from './cash-off.svelte';
|
|
1102
|
+
export { default as IconCashRegister } from './cash-register.svelte';
|
|
1100
1103
|
export { default as IconCash } from './cash.svelte';
|
|
1101
1104
|
export { default as IconCastOff } from './cast-off.svelte';
|
|
1102
1105
|
export { default as IconCast } from './cast.svelte';
|
|
@@ -1129,10 +1132,12 @@ export { default as IconChartArea } from './chart-area.svelte';
|
|
|
1129
1132
|
export { default as IconChartArrowsVertical } from './chart-arrows-vertical.svelte';
|
|
1130
1133
|
export { default as IconChartArrows } from './chart-arrows.svelte';
|
|
1131
1134
|
export { default as IconChartBarOff } from './chart-bar-off.svelte';
|
|
1135
|
+
export { default as IconChartBarPopular } from './chart-bar-popular.svelte';
|
|
1132
1136
|
export { default as IconChartBar } from './chart-bar.svelte';
|
|
1133
1137
|
export { default as IconChartBubble } from './chart-bubble.svelte';
|
|
1134
1138
|
export { default as IconChartCandle } from './chart-candle.svelte';
|
|
1135
1139
|
export { default as IconChartCircles } from './chart-circles.svelte';
|
|
1140
|
+
export { default as IconChartCohort } from './chart-cohort.svelte';
|
|
1136
1141
|
export { default as IconChartDonut2 } from './chart-donut-2.svelte';
|
|
1137
1142
|
export { default as IconChartDonut3 } from './chart-donut-3.svelte';
|
|
1138
1143
|
export { default as IconChartDonut4 } from './chart-donut-4.svelte';
|
|
@@ -1140,6 +1145,7 @@ export { default as IconChartDonut } from './chart-donut.svelte';
|
|
|
1140
1145
|
export { default as IconChartDots2 } from './chart-dots-2.svelte';
|
|
1141
1146
|
export { default as IconChartDots3 } from './chart-dots-3.svelte';
|
|
1142
1147
|
export { default as IconChartDots } from './chart-dots.svelte';
|
|
1148
|
+
export { default as IconChartFunnel } from './chart-funnel.svelte';
|
|
1143
1149
|
export { default as IconChartGridDots } from './chart-grid-dots.svelte';
|
|
1144
1150
|
export { default as IconChartHistogram } from './chart-histogram.svelte';
|
|
1145
1151
|
export { default as IconChartInfographic } from './chart-infographic.svelte';
|
|
@@ -1798,6 +1804,7 @@ export { default as IconDeviceTablet } from './device-tablet.svelte';
|
|
|
1798
1804
|
export { default as IconDeviceTvOff } from './device-tv-off.svelte';
|
|
1799
1805
|
export { default as IconDeviceTvOld } from './device-tv-old.svelte';
|
|
1800
1806
|
export { default as IconDeviceTv } from './device-tv.svelte';
|
|
1807
|
+
export { default as IconDeviceUnknown } from './device-unknown.svelte';
|
|
1801
1808
|
export { default as IconDeviceUsb } from './device-usb.svelte';
|
|
1802
1809
|
export { default as IconDeviceVisionPro } from './device-vision-pro.svelte';
|
|
1803
1810
|
export { default as IconDeviceWatchBolt } from './device-watch-bolt.svelte';
|
|
@@ -2043,6 +2050,7 @@ export { default as IconFileDollar } from './file-dollar.svelte';
|
|
|
2043
2050
|
export { default as IconFileDots } from './file-dots.svelte';
|
|
2044
2051
|
export { default as IconFileDownload } from './file-download.svelte';
|
|
2045
2052
|
export { default as IconFileEuro } from './file-euro.svelte';
|
|
2053
|
+
export { default as IconFileExcel } from './file-excel.svelte';
|
|
2046
2054
|
export { default as IconFileExport } from './file-export.svelte';
|
|
2047
2055
|
export { default as IconFileFunction } from './file-function.svelte';
|
|
2048
2056
|
export { default as IconFileHorizontal } from './file-horizontal.svelte';
|
|
@@ -2106,6 +2114,7 @@ export { default as IconFileTypography } from './file-typography.svelte';
|
|
|
2106
2114
|
export { default as IconFileUnknown } from './file-unknown.svelte';
|
|
2107
2115
|
export { default as IconFileUpload } from './file-upload.svelte';
|
|
2108
2116
|
export { default as IconFileVector } from './file-vector.svelte';
|
|
2117
|
+
export { default as IconFileWord } from './file-word.svelte';
|
|
2109
2118
|
export { default as IconFileX } from './file-x.svelte';
|
|
2110
2119
|
export { default as IconFileZip } from './file-zip.svelte';
|
|
2111
2120
|
export { default as IconFile } from './file.svelte';
|
|
@@ -3252,6 +3261,7 @@ export { default as IconNumber } from './number.svelte';
|
|
|
3252
3261
|
export { default as IconNumbers } from './numbers.svelte';
|
|
3253
3262
|
export { default as IconNurse } from './nurse.svelte';
|
|
3254
3263
|
export { default as IconNut } from './nut.svelte';
|
|
3264
|
+
export { default as IconObjectScan } from './object-scan.svelte';
|
|
3255
3265
|
export { default as IconOctagonMinus2 } from './octagon-minus-2.svelte';
|
|
3256
3266
|
export { default as IconOctagonMinus } from './octagon-minus.svelte';
|
|
3257
3267
|
export { default as IconOctagonOff } from './octagon-off.svelte';
|
|
@@ -3348,6 +3358,21 @@ export { default as IconPentagon } from './pentagon.svelte';
|
|
|
3348
3358
|
export { default as IconPentagram } from './pentagram.svelte';
|
|
3349
3359
|
export { default as IconPepperOff } from './pepper-off.svelte';
|
|
3350
3360
|
export { default as IconPepper } from './pepper.svelte';
|
|
3361
|
+
export { default as IconPercentage0 } from './percentage-0.svelte';
|
|
3362
|
+
export { default as IconPercentage10 } from './percentage-10.svelte';
|
|
3363
|
+
export { default as IconPercentage100 } from './percentage-100.svelte';
|
|
3364
|
+
export { default as IconPercentage20 } from './percentage-20.svelte';
|
|
3365
|
+
export { default as IconPercentage25 } from './percentage-25.svelte';
|
|
3366
|
+
export { default as IconPercentage30 } from './percentage-30.svelte';
|
|
3367
|
+
export { default as IconPercentage33 } from './percentage-33.svelte';
|
|
3368
|
+
export { default as IconPercentage40 } from './percentage-40.svelte';
|
|
3369
|
+
export { default as IconPercentage50 } from './percentage-50.svelte';
|
|
3370
|
+
export { default as IconPercentage60 } from './percentage-60.svelte';
|
|
3371
|
+
export { default as IconPercentage66 } from './percentage-66.svelte';
|
|
3372
|
+
export { default as IconPercentage70 } from './percentage-70.svelte';
|
|
3373
|
+
export { default as IconPercentage75 } from './percentage-75.svelte';
|
|
3374
|
+
export { default as IconPercentage80 } from './percentage-80.svelte';
|
|
3375
|
+
export { default as IconPercentage90 } from './percentage-90.svelte';
|
|
3351
3376
|
export { default as IconPercentage } from './percentage.svelte';
|
|
3352
3377
|
export { default as IconPerfume } from './perfume.svelte';
|
|
3353
3378
|
export { default as IconPerspectiveOff } from './perspective-off.svelte';
|
|
@@ -3400,6 +3425,7 @@ export { default as IconPhoto } from './photo.svelte';
|
|
|
3400
3425
|
export { default as IconPhysotherapist } from './physotherapist.svelte';
|
|
3401
3426
|
export { default as IconPiano } from './piano.svelte';
|
|
3402
3427
|
export { default as IconPick } from './pick.svelte';
|
|
3428
|
+
export { default as IconPicnicTable } from './picnic-table.svelte';
|
|
3403
3429
|
export { default as IconPictureInPictureOff } from './picture-in-picture-off.svelte';
|
|
3404
3430
|
export { default as IconPictureInPictureOn } from './picture-in-picture-on.svelte';
|
|
3405
3431
|
export { default as IconPictureInPictureTop } from './picture-in-picture-top.svelte';
|
|
@@ -4174,6 +4200,9 @@ export { default as IconTank } from './tank.svelte';
|
|
|
4174
4200
|
export { default as IconTargetArrow } from './target-arrow.svelte';
|
|
4175
4201
|
export { default as IconTargetOff } from './target-off.svelte';
|
|
4176
4202
|
export { default as IconTarget } from './target.svelte';
|
|
4203
|
+
export { default as IconTaxEuro } from './tax-euro.svelte';
|
|
4204
|
+
export { default as IconTaxPound } from './tax-pound.svelte';
|
|
4205
|
+
export { default as IconTax } from './tax.svelte';
|
|
4177
4206
|
export { default as IconTeapot } from './teapot.svelte';
|
|
4178
4207
|
export { default as IconTelescopeOff } from './telescope-off.svelte';
|
|
4179
4208
|
export { default as IconTelescope } from './telescope.svelte';
|
|
@@ -4242,6 +4271,10 @@ export { default as IconTimelineEventText } from './timeline-event-text.svelte';
|
|
|
4242
4271
|
export { default as IconTimelineEventX } from './timeline-event-x.svelte';
|
|
4243
4272
|
export { default as IconTimelineEvent } from './timeline-event.svelte';
|
|
4244
4273
|
export { default as IconTimeline } from './timeline.svelte';
|
|
4274
|
+
export { default as IconTimezone } from './timezone.svelte';
|
|
4275
|
+
export { default as IconTipJarEuro } from './tip-jar-euro.svelte';
|
|
4276
|
+
export { default as IconTipJarPound } from './tip-jar-pound.svelte';
|
|
4277
|
+
export { default as IconTipJar } from './tip-jar.svelte';
|
|
4245
4278
|
export { default as IconTir } from './tir.svelte';
|
|
4246
4279
|
export { default as IconToggleLeft } from './toggle-left.svelte';
|
|
4247
4280
|
export { default as IconToggleRight } from './toggle-right.svelte';
|
|
@@ -4420,6 +4453,8 @@ export { default as IconView360 } from './view-360.svelte';
|
|
|
4420
4453
|
export { default as IconViewfinderOff } from './viewfinder-off.svelte';
|
|
4421
4454
|
export { default as IconViewfinder } from './viewfinder.svelte';
|
|
4422
4455
|
export { default as IconViewportNarrow } from './viewport-narrow.svelte';
|
|
4456
|
+
export { default as IconViewportShort } from './viewport-short.svelte';
|
|
4457
|
+
export { default as IconViewportTall } from './viewport-tall.svelte';
|
|
4423
4458
|
export { default as IconViewportWide } from './viewport-wide.svelte';
|
|
4424
4459
|
export { default as IconVinyl } from './vinyl.svelte';
|
|
4425
4460
|
export { default as IconVipOff } from './vip-off.svelte';
|
|
@@ -4803,6 +4838,7 @@ export { default as IconCircleNumber7Filled } from './circle-number-7-filled.sve
|
|
|
4803
4838
|
export { default as IconCircleNumber8Filled } from './circle-number-8-filled.svelte';
|
|
4804
4839
|
export { default as IconCircleNumber9Filled } from './circle-number-9-filled.svelte';
|
|
4805
4840
|
export { default as IconCirclePercentageFilled } from './circle-percentage-filled.svelte';
|
|
4841
|
+
export { default as IconCirclePlusFilled } from './circle-plus-filled.svelte';
|
|
4806
4842
|
export { default as IconCircleXFilled } from './circle-x-filled.svelte';
|
|
4807
4843
|
export { default as IconCircleFilled } from './circle-filled.svelte';
|
|
4808
4844
|
export { default as IconCirclesFilled } from './circles-filled.svelte';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 8v-2a2 2 0 0 1 2 -2h2" }], ["path", { "d": "M4 16v2a2 2 0 0 0 2 2h2" }], ["path", { "d": "M16 4h2a2 2 0 0 1 2 2v2" }], ["path", { "d": "M16 20h2a2 2 0 0 0 2 -2v-2" }], ["path", { "d": "M8 8m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="object-scan" {...$$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 ObjectScanProps = typeof __propDef.props;
|
|
13
|
+
export type ObjectScanEvents = typeof __propDef.events;
|
|
14
|
+
export type ObjectScanSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ObjectScan extends SvelteComponentTyped<ObjectScanProps, ObjectScanEvents, ObjectScanSlots> {
|
|
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 Percentage_0Props = typeof __propDef.props;
|
|
13
|
+
export type Percentage_0Events = typeof __propDef.events;
|
|
14
|
+
export type Percentage_0Slots = typeof __propDef.slots;
|
|
15
|
+
export default class Percentage_0 extends SvelteComponentTyped<Percentage_0Props, Percentage_0Events, Percentage_0Slots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|