@tabler/icons-svelte 3.17.0 → 3.19.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/arrow-down-dashed.svelte +6 -0
- package/dist/icons/arrow-down-dashed.svelte.d.ts +17 -0
- package/dist/icons/arrow-left-dashed.svelte +6 -0
- package/dist/icons/arrow-left-dashed.svelte.d.ts +17 -0
- package/dist/icons/arrow-narrow-down-dashed.svelte +6 -0
- package/dist/icons/arrow-narrow-down-dashed.svelte.d.ts +17 -0
- package/dist/icons/arrow-narrow-left-dashed.svelte +6 -0
- package/dist/icons/arrow-narrow-left-dashed.svelte.d.ts +17 -0
- package/dist/icons/arrow-narrow-right-dashed.svelte +6 -0
- package/dist/icons/arrow-narrow-right-dashed.svelte.d.ts +17 -0
- package/dist/icons/arrow-narrow-up-dashed.svelte +6 -0
- package/dist/icons/arrow-narrow-up-dashed.svelte.d.ts +17 -0
- package/dist/icons/arrow-right-dashed.svelte +6 -0
- package/dist/icons/arrow-right-dashed.svelte.d.ts +17 -0
- package/dist/icons/arrow-up-dashed.svelte +6 -0
- package/dist/icons/arrow-up-dashed.svelte.d.ts +17 -0
- package/dist/icons/building-cog.svelte +6 -0
- package/dist/icons/building-cog.svelte.d.ts +17 -0
- package/dist/icons/building-minus.svelte +6 -0
- package/dist/icons/building-minus.svelte.d.ts +17 -0
- package/dist/icons/building-plus.svelte +6 -0
- package/dist/icons/building-plus.svelte.d.ts +17 -0
- package/dist/icons/favicon-filled.svelte +6 -0
- package/dist/icons/favicon-filled.svelte.d.ts +17 -0
- package/dist/icons/icons-filled.svelte +6 -0
- package/dist/icons/icons-filled.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +36 -0
- package/dist/icons/index.js +36 -0
- package/dist/icons/ironing-1-filled.svelte +6 -0
- package/dist/icons/ironing-1-filled.svelte.d.ts +17 -0
- package/dist/icons/ironing-2-filled.svelte +6 -0
- package/dist/icons/ironing-2-filled.svelte.d.ts +17 -0
- package/dist/icons/ironing-3-filled.svelte +6 -0
- package/dist/icons/ironing-3-filled.svelte.d.ts +17 -0
- package/dist/icons/ironing-steam-filled.svelte +6 -0
- package/dist/icons/ironing-steam-filled.svelte.d.ts +17 -0
- package/dist/icons/joker.svelte +6 -0
- package/dist/icons/joker.svelte.d.ts +17 -0
- package/dist/icons/number-10.svelte +6 -0
- package/dist/icons/number-10.svelte.d.ts +17 -0
- package/dist/icons/number-11.svelte +6 -0
- package/dist/icons/number-11.svelte.d.ts +17 -0
- package/dist/icons/play-card-1.svelte +6 -0
- package/dist/icons/play-card-1.svelte.d.ts +17 -0
- package/dist/icons/play-card-10.svelte +6 -0
- package/dist/icons/play-card-10.svelte.d.ts +17 -0
- package/dist/icons/play-card-2.svelte +6 -0
- package/dist/icons/play-card-2.svelte.d.ts +17 -0
- package/dist/icons/play-card-3.svelte +6 -0
- package/dist/icons/play-card-3.svelte.d.ts +17 -0
- package/dist/icons/play-card-4.svelte +6 -0
- package/dist/icons/play-card-4.svelte.d.ts +17 -0
- package/dist/icons/play-card-5.svelte +6 -0
- package/dist/icons/play-card-5.svelte.d.ts +17 -0
- package/dist/icons/play-card-6.svelte +6 -0
- package/dist/icons/play-card-6.svelte.d.ts +17 -0
- package/dist/icons/play-card-7.svelte +6 -0
- package/dist/icons/play-card-7.svelte.d.ts +17 -0
- package/dist/icons/play-card-8.svelte +6 -0
- package/dist/icons/play-card-8.svelte.d.ts +17 -0
- package/dist/icons/play-card-9.svelte +6 -0
- package/dist/icons/play-card-9.svelte.d.ts +17 -0
- package/dist/icons/play-card-a.svelte +6 -0
- package/dist/icons/play-card-a.svelte.d.ts +17 -0
- package/dist/icons/play-card-j.svelte +6 -0
- package/dist/icons/play-card-j.svelte.d.ts +17 -0
- package/dist/icons/play-card-k.svelte +6 -0
- package/dist/icons/play-card-k.svelte.d.ts +17 -0
- package/dist/icons/play-card-q.svelte +6 -0
- package/dist/icons/play-card-q.svelte.d.ts +17 -0
- package/dist/icons/play-card-star.svelte +6 -0
- package/dist/icons/play-card-star.svelte.d.ts +17 -0
- package/dist/icons/sitemap-filled.svelte +6 -0
- package/dist/icons/sitemap-filled.svelte.d.ts +17 -0
- package/dist/icons-list.js +36 -0
- package/package.json +2 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 5v.5m0 3v1.5m0 3v6" }], ["path", { "d": "M18 13l-6 6" }], ["path", { "d": "M6 13l6 6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="arrow-down-dashed" {...$$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 ArrowDownDashedProps = typeof __propDef.props;
|
|
13
|
+
export type ArrowDownDashedEvents = typeof __propDef.events;
|
|
14
|
+
export type ArrowDownDashedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ArrowDownDashed extends SvelteComponentTyped<ArrowDownDashedProps, ArrowDownDashedEvents, ArrowDownDashedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 12h6m3 0h1.5m3 0h.5" }], ["path", { "d": "M5 12l6 6" }], ["path", { "d": "M5 12l6 -6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="arrow-left-dashed" {...$$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 ArrowLeftDashedProps = typeof __propDef.props;
|
|
13
|
+
export type ArrowLeftDashedEvents = typeof __propDef.events;
|
|
14
|
+
export type ArrowLeftDashedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ArrowLeftDashed extends SvelteComponentTyped<ArrowLeftDashedProps, ArrowLeftDashedEvents, ArrowLeftDashedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 5v.5m0 3v1.5m0 3v6" }], ["path", { "d": "M16 15l-4 4" }], ["path", { "d": "M8 15l4 4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="arrow-narrow-down-dashed" {...$$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 ArrowNarrowDownDashedProps = typeof __propDef.props;
|
|
13
|
+
export type ArrowNarrowDownDashedEvents = typeof __propDef.events;
|
|
14
|
+
export type ArrowNarrowDownDashedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ArrowNarrowDownDashed extends SvelteComponentTyped<ArrowNarrowDownDashedProps, ArrowNarrowDownDashedEvents, ArrowNarrowDownDashedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 12h6m3 0h1.5m3 0h.5" }], ["path", { "d": "M5 12l4 4" }], ["path", { "d": "M5 12l4 -4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="arrow-narrow-left-dashed" {...$$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 ArrowNarrowLeftDashedProps = typeof __propDef.props;
|
|
13
|
+
export type ArrowNarrowLeftDashedEvents = typeof __propDef.events;
|
|
14
|
+
export type ArrowNarrowLeftDashedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ArrowNarrowLeftDashed extends SvelteComponentTyped<ArrowNarrowLeftDashedProps, ArrowNarrowLeftDashedEvents, ArrowNarrowLeftDashedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 12h.5m3 0h1.5m3 0h6" }], ["path", { "d": "M15 16l4 -4" }], ["path", { "d": "M15 8l4 4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="arrow-narrow-right-dashed" {...$$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 ArrowNarrowRightDashedProps = typeof __propDef.props;
|
|
13
|
+
export type ArrowNarrowRightDashedEvents = typeof __propDef.events;
|
|
14
|
+
export type ArrowNarrowRightDashedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ArrowNarrowRightDashed extends SvelteComponentTyped<ArrowNarrowRightDashedProps, ArrowNarrowRightDashedEvents, ArrowNarrowRightDashedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 5v6m0 3v1.5m0 3v.5" }], ["path", { "d": "M16 9l-4 -4" }], ["path", { "d": "M8 9l4 -4" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="arrow-narrow-up-dashed" {...$$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 ArrowNarrowUpDashedProps = typeof __propDef.props;
|
|
13
|
+
export type ArrowNarrowUpDashedEvents = typeof __propDef.events;
|
|
14
|
+
export type ArrowNarrowUpDashedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ArrowNarrowUpDashed extends SvelteComponentTyped<ArrowNarrowUpDashedProps, ArrowNarrowUpDashedEvents, ArrowNarrowUpDashedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 12h.5m3 0h1.5m3 0h6" }], ["path", { "d": "M13 18l6 -6" }], ["path", { "d": "M13 6l6 6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="arrow-right-dashed" {...$$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 ArrowRightDashedProps = typeof __propDef.props;
|
|
13
|
+
export type ArrowRightDashedEvents = typeof __propDef.events;
|
|
14
|
+
export type ArrowRightDashedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ArrowRightDashed extends SvelteComponentTyped<ArrowRightDashedProps, ArrowRightDashedEvents, ArrowRightDashedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 5v6m0 3v1.5m0 3v.5" }], ["path", { "d": "M18 11l-6 -6" }], ["path", { "d": "M6 11l6 -6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="arrow-up-dashed" {...$$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 ArrowUpDashedProps = typeof __propDef.props;
|
|
13
|
+
export type ArrowUpDashedEvents = typeof __propDef.events;
|
|
14
|
+
export type ArrowUpDashedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ArrowUpDashed extends SvelteComponentTyped<ArrowUpDashedProps, ArrowUpDashedEvents, ArrowUpDashedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 21h9" }], ["path", { "d": "M9 8h1" }], ["path", { "d": "M9 12h1" }], ["path", { "d": "M9 16h1" }], ["path", { "d": "M14 8h1" }], ["path", { "d": "M14 12h1" }], ["path", { "d": "M5 21v-16c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h10c.53 0 1.039 .211 1.414 .586c.375 .375 .586 .884 .586 1.414v7" }], ["path", { "d": "M16 18c0 .53 .211 1.039 .586 1.414c.375 .375 .884 .586 1.414 .586c.53 0 1.039 -.211 1.414 -.586c.375 -.375 .586 -.884 .586 -1.414c0 -.53 -.211 -1.039 -.586 -1.414c-.375 -.375 -.884 -.586 -1.414 -.586c-.53 0 -1.039 .211 -1.414 .586c-.375 .375 -.586 .884 -.586 1.414z" }], ["path", { "d": "M18 14.5v1.5" }], ["path", { "d": "M18 20v1.5" }], ["path", { "d": "M21.032 16.25l-1.299 .75" }], ["path", { "d": "M16.27 19l-1.3 .75" }], ["path", { "d": "M14.97 16.25l1.3 .75" }], ["path", { "d": "M19.733 19l1.3 .75" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="building-cog" {...$$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 BuildingCogProps = typeof __propDef.props;
|
|
13
|
+
export type BuildingCogEvents = typeof __propDef.events;
|
|
14
|
+
export type BuildingCogSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BuildingCog extends SvelteComponentTyped<BuildingCogProps, BuildingCogEvents, BuildingCogSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 21h9" }], ["path", { "d": "M9 8h1" }], ["path", { "d": "M9 12h1" }], ["path", { "d": "M9 16h1" }], ["path", { "d": "M14 8h1" }], ["path", { "d": "M14 12h1" }], ["path", { "d": "M5 21v-16c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h10c.53 0 1.039 .211 1.414 .586c.375 .375 .586 .884 .586 1.414v7" }], ["path", { "d": "M16 19h6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="building-minus" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type BuildingMinusProps = typeof __propDef.props;
|
|
13
|
+
export type BuildingMinusEvents = typeof __propDef.events;
|
|
14
|
+
export type BuildingMinusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BuildingMinus extends SvelteComponentTyped<BuildingMinusProps, BuildingMinusEvents, BuildingMinusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 21h9" }], ["path", { "d": "M9 8h1" }], ["path", { "d": "M9 12h1" }], ["path", { "d": "M9 16h1" }], ["path", { "d": "M14 8h1" }], ["path", { "d": "M14 12h1" }], ["path", { "d": "M5 21v-16c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h10c.53 0 1.039 .211 1.414 .586c.375 .375 .586 .884 .586 1.414v7" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16v6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="building-plus" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type BuildingPlusProps = typeof __propDef.props;
|
|
13
|
+
export type BuildingPlusEvents = typeof __propDef.events;
|
|
14
|
+
export type BuildingPlusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BuildingPlus extends SvelteComponentTyped<BuildingPlusProps, BuildingPlusEvents, BuildingPlusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M19 4a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-14a4 4 0 0 1 -4 -4v-8a4 4 0 0 1 4 -4zm-13 5a1 1 0 0 0 -1 1v4a1 1 0 0 0 2 0v-4a1 1 0 0 0 -1 -1m5 0a3 3 0 0 0 0 6a1 1 0 0 0 .117 -1.993l-.117 -.007a1 1 0 0 1 -.117 -1.993l.117 -.007a1 1 0 0 0 0 -2m5 0a3 3 0 0 0 -2.995 2.824l-.005 .176a3 3 0 1 0 3 -3" }], ["path", { "d": "M16 11a1 1 0 1 0 0 2a1 1 0 0 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="favicon-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 FaviconFilledProps = typeof __propDef.props;
|
|
13
|
+
export type FaviconFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type FaviconFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class FaviconFilled extends SvelteComponentTyped<FaviconFilledProps, FaviconFilledEvents, FaviconFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4.25 2.603a4.5 4.5 0 1 1 -2.25 3.897l.006 -.229a4.5 4.5 0 0 1 2.244 -3.668" }], ["path", { "d": "M5.632 13.504a1 1 0 0 1 1.736 0l4 7a1 1 0 0 1 -.868 1.496h-8a1 1 0 0 1 -.868 -1.496z" }], ["path", { "d": "M13.293 2.293a1 1 0 0 1 1.414 0l7 7a1 1 0 1 1 -1.414 1.414l-7 -7a1 1 0 0 1 0 -1.414" }], ["path", { "d": "M20.293 2.293a1 1 0 0 1 1.414 1.414l-7 7a1 1 0 0 1 -1.414 -1.414z" }], ["path", { "d": "M21 13a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-7a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="icons-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 IconsFilledProps = typeof __propDef.props;
|
|
13
|
+
export type IconsFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type IconsFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class IconsFilled extends SvelteComponentTyped<IconsFilledProps, IconsFilledEvents, IconsFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -181,6 +181,7 @@ export { default as IconArrowCurveLeft } from './arrow-curve-left.svelte';
|
|
|
181
181
|
export { default as IconArrowCurveRight } from './arrow-curve-right.svelte';
|
|
182
182
|
export { default as IconArrowDownBar } from './arrow-down-bar.svelte';
|
|
183
183
|
export { default as IconArrowDownCircle } from './arrow-down-circle.svelte';
|
|
184
|
+
export { default as IconArrowDownDashed } from './arrow-down-dashed.svelte';
|
|
184
185
|
export { default as IconArrowDownFromArc } from './arrow-down-from-arc.svelte';
|
|
185
186
|
export { default as IconArrowDownLeftCircle } from './arrow-down-left-circle.svelte';
|
|
186
187
|
export { default as IconArrowDownLeft } from './arrow-down-left.svelte';
|
|
@@ -201,6 +202,7 @@ export { default as IconArrowGuide } from './arrow-guide.svelte';
|
|
|
201
202
|
export { default as IconArrowIteration } from './arrow-iteration.svelte';
|
|
202
203
|
export { default as IconArrowLeftBar } from './arrow-left-bar.svelte';
|
|
203
204
|
export { default as IconArrowLeftCircle } from './arrow-left-circle.svelte';
|
|
205
|
+
export { default as IconArrowLeftDashed } from './arrow-left-dashed.svelte';
|
|
204
206
|
export { default as IconArrowLeftFromArc } from './arrow-left-from-arc.svelte';
|
|
205
207
|
export { default as IconArrowLeftRhombus } from './arrow-left-rhombus.svelte';
|
|
206
208
|
export { default as IconArrowLeftRight } from './arrow-left-right.svelte';
|
|
@@ -222,9 +224,13 @@ export { default as IconArrowMoveDown } from './arrow-move-down.svelte';
|
|
|
222
224
|
export { default as IconArrowMoveLeft } from './arrow-move-left.svelte';
|
|
223
225
|
export { default as IconArrowMoveRight } from './arrow-move-right.svelte';
|
|
224
226
|
export { default as IconArrowMoveUp } from './arrow-move-up.svelte';
|
|
227
|
+
export { default as IconArrowNarrowDownDashed } from './arrow-narrow-down-dashed.svelte';
|
|
225
228
|
export { default as IconArrowNarrowDown } from './arrow-narrow-down.svelte';
|
|
229
|
+
export { default as IconArrowNarrowLeftDashed } from './arrow-narrow-left-dashed.svelte';
|
|
226
230
|
export { default as IconArrowNarrowLeft } from './arrow-narrow-left.svelte';
|
|
231
|
+
export { default as IconArrowNarrowRightDashed } from './arrow-narrow-right-dashed.svelte';
|
|
227
232
|
export { default as IconArrowNarrowRight } from './arrow-narrow-right.svelte';
|
|
233
|
+
export { default as IconArrowNarrowUpDashed } from './arrow-narrow-up-dashed.svelte';
|
|
228
234
|
export { default as IconArrowNarrowUp } from './arrow-narrow-up.svelte';
|
|
229
235
|
export { default as IconArrowRampLeft2 } from './arrow-ramp-left-2.svelte';
|
|
230
236
|
export { default as IconArrowRampLeft3 } from './arrow-ramp-left-3.svelte';
|
|
@@ -234,6 +240,7 @@ export { default as IconArrowRampRight3 } from './arrow-ramp-right-3.svelte';
|
|
|
234
240
|
export { default as IconArrowRampRight } from './arrow-ramp-right.svelte';
|
|
235
241
|
export { default as IconArrowRightBar } from './arrow-right-bar.svelte';
|
|
236
242
|
export { default as IconArrowRightCircle } from './arrow-right-circle.svelte';
|
|
243
|
+
export { default as IconArrowRightDashed } from './arrow-right-dashed.svelte';
|
|
237
244
|
export { default as IconArrowRightFromArc } from './arrow-right-from-arc.svelte';
|
|
238
245
|
export { default as IconArrowRightRhombus } from './arrow-right-rhombus.svelte';
|
|
239
246
|
export { default as IconArrowRightSquare } from './arrow-right-square.svelte';
|
|
@@ -253,6 +260,7 @@ export { default as IconArrowSharpTurnLeft } from './arrow-sharp-turn-left.svelt
|
|
|
253
260
|
export { default as IconArrowSharpTurnRight } from './arrow-sharp-turn-right.svelte';
|
|
254
261
|
export { default as IconArrowUpBar } from './arrow-up-bar.svelte';
|
|
255
262
|
export { default as IconArrowUpCircle } from './arrow-up-circle.svelte';
|
|
263
|
+
export { default as IconArrowUpDashed } from './arrow-up-dashed.svelte';
|
|
256
264
|
export { default as IconArrowUpFromArc } from './arrow-up-from-arc.svelte';
|
|
257
265
|
export { default as IconArrowUpLeftCircle } from './arrow-up-left-circle.svelte';
|
|
258
266
|
export { default as IconArrowUpLeft } from './arrow-up-left.svelte';
|
|
@@ -1005,6 +1013,7 @@ export { default as IconBuildingCarousel } from './building-carousel.svelte';
|
|
|
1005
1013
|
export { default as IconBuildingCastle } from './building-castle.svelte';
|
|
1006
1014
|
export { default as IconBuildingChurch } from './building-church.svelte';
|
|
1007
1015
|
export { default as IconBuildingCircus } from './building-circus.svelte';
|
|
1016
|
+
export { default as IconBuildingCog } from './building-cog.svelte';
|
|
1008
1017
|
export { default as IconBuildingCommunity } from './building-community.svelte';
|
|
1009
1018
|
export { default as IconBuildingCottage } from './building-cottage.svelte';
|
|
1010
1019
|
export { default as IconBuildingEstate } from './building-estate.svelte';
|
|
@@ -1013,10 +1022,12 @@ export { default as IconBuildingFactory } from './building-factory.svelte';
|
|
|
1013
1022
|
export { default as IconBuildingFortress } from './building-fortress.svelte';
|
|
1014
1023
|
export { default as IconBuildingHospital } from './building-hospital.svelte';
|
|
1015
1024
|
export { default as IconBuildingLighthouse } from './building-lighthouse.svelte';
|
|
1025
|
+
export { default as IconBuildingMinus } from './building-minus.svelte';
|
|
1016
1026
|
export { default as IconBuildingMonument } from './building-monument.svelte';
|
|
1017
1027
|
export { default as IconBuildingMosque } from './building-mosque.svelte';
|
|
1018
1028
|
export { default as IconBuildingOff } from './building-off.svelte';
|
|
1019
1029
|
export { default as IconBuildingPavilion } from './building-pavilion.svelte';
|
|
1030
|
+
export { default as IconBuildingPlus } from './building-plus.svelte';
|
|
1020
1031
|
export { default as IconBuildingSkyscraper } from './building-skyscraper.svelte';
|
|
1021
1032
|
export { default as IconBuildingStadium } from './building-stadium.svelte';
|
|
1022
1033
|
export { default as IconBuildingStore } from './building-store.svelte';
|
|
@@ -2706,6 +2717,7 @@ export { default as IconJewishStar } from './jewish-star.svelte';
|
|
|
2706
2717
|
export { default as IconJoinBevel } from './join-bevel.svelte';
|
|
2707
2718
|
export { default as IconJoinRound } from './join-round.svelte';
|
|
2708
2719
|
export { default as IconJoinStraight } from './join-straight.svelte';
|
|
2720
|
+
export { default as IconJoker } from './joker.svelte';
|
|
2709
2721
|
export { default as IconJpg } from './jpg.svelte';
|
|
2710
2722
|
export { default as IconJson } from './json.svelte';
|
|
2711
2723
|
export { default as IconJumpRope } from './jump-rope.svelte';
|
|
@@ -3369,8 +3381,10 @@ export { default as IconNumber0 } from './number-0.svelte';
|
|
|
3369
3381
|
export { default as IconNumber1Small } from './number-1-small.svelte';
|
|
3370
3382
|
export { default as IconNumber1 } from './number-1.svelte';
|
|
3371
3383
|
export { default as IconNumber10Small } from './number-10-small.svelte';
|
|
3384
|
+
export { default as IconNumber10 } from './number-10.svelte';
|
|
3372
3385
|
export { default as IconNumber100Small } from './number-100-small.svelte';
|
|
3373
3386
|
export { default as IconNumber11Small } from './number-11-small.svelte';
|
|
3387
|
+
export { default as IconNumber11 } from './number-11.svelte';
|
|
3374
3388
|
export { default as IconNumber12Small } from './number-12-small.svelte';
|
|
3375
3389
|
export { default as IconNumber123 } from './number-123.svelte';
|
|
3376
3390
|
export { default as IconNumber13Small } from './number-13-small.svelte';
|
|
@@ -3686,7 +3700,22 @@ export { default as IconPlant2 } from './plant-2.svelte';
|
|
|
3686
3700
|
export { default as IconPlantOff } from './plant-off.svelte';
|
|
3687
3701
|
export { default as IconPlant } from './plant.svelte';
|
|
3688
3702
|
export { default as IconPlayBasketball } from './play-basketball.svelte';
|
|
3703
|
+
export { default as IconPlayCard1 } from './play-card-1.svelte';
|
|
3704
|
+
export { default as IconPlayCard10 } from './play-card-10.svelte';
|
|
3705
|
+
export { default as IconPlayCard2 } from './play-card-2.svelte';
|
|
3706
|
+
export { default as IconPlayCard3 } from './play-card-3.svelte';
|
|
3707
|
+
export { default as IconPlayCard4 } from './play-card-4.svelte';
|
|
3708
|
+
export { default as IconPlayCard5 } from './play-card-5.svelte';
|
|
3709
|
+
export { default as IconPlayCard6 } from './play-card-6.svelte';
|
|
3710
|
+
export { default as IconPlayCard7 } from './play-card-7.svelte';
|
|
3711
|
+
export { default as IconPlayCard8 } from './play-card-8.svelte';
|
|
3712
|
+
export { default as IconPlayCard9 } from './play-card-9.svelte';
|
|
3713
|
+
export { default as IconPlayCardA } from './play-card-a.svelte';
|
|
3714
|
+
export { default as IconPlayCardJ } from './play-card-j.svelte';
|
|
3715
|
+
export { default as IconPlayCardK } from './play-card-k.svelte';
|
|
3689
3716
|
export { default as IconPlayCardOff } from './play-card-off.svelte';
|
|
3717
|
+
export { default as IconPlayCardQ } from './play-card-q.svelte';
|
|
3718
|
+
export { default as IconPlayCardStar } from './play-card-star.svelte';
|
|
3690
3719
|
export { default as IconPlayCard } from './play-card.svelte';
|
|
3691
3720
|
export { default as IconPlayFootball } from './play-football.svelte';
|
|
3692
3721
|
export { default as IconPlayHandball } from './play-handball.svelte';
|
|
@@ -5210,6 +5239,7 @@ export { default as IconEggFilled } from './egg-filled.svelte';
|
|
|
5210
5239
|
export { default as IconElevatorFilled } from './elevator-filled.svelte';
|
|
5211
5240
|
export { default as IconExclamationCircleFilled } from './exclamation-circle-filled.svelte';
|
|
5212
5241
|
export { default as IconEyeFilled } from './eye-filled.svelte';
|
|
5242
|
+
export { default as IconFaviconFilled } from './favicon-filled.svelte';
|
|
5213
5243
|
export { default as IconFeatherFilled } from './feather-filled.svelte';
|
|
5214
5244
|
export { default as IconFileXFilled } from './file-x-filled.svelte';
|
|
5215
5245
|
export { default as IconFileFilled } from './file-filled.svelte';
|
|
@@ -5287,6 +5317,7 @@ export { default as IconHexagonFilled } from './hexagon-filled.svelte';
|
|
|
5287
5317
|
export { default as IconHomeFilled } from './home-filled.svelte';
|
|
5288
5318
|
export { default as IconHospitalCircleFilled } from './hospital-circle-filled.svelte';
|
|
5289
5319
|
export { default as IconHourglassFilled } from './hourglass-filled.svelte';
|
|
5320
|
+
export { default as IconIconsFilled } from './icons-filled.svelte';
|
|
5290
5321
|
export { default as IconInfoCircleFilled } from './info-circle-filled.svelte';
|
|
5291
5322
|
export { default as IconInfoHexagonFilled } from './info-hexagon-filled.svelte';
|
|
5292
5323
|
export { default as IconInfoOctagonFilled } from './info-octagon-filled.svelte';
|
|
@@ -5301,6 +5332,10 @@ export { default as IconInnerShadowRightFilled } from './inner-shadow-right-fill
|
|
|
5301
5332
|
export { default as IconInnerShadowTopLeftFilled } from './inner-shadow-top-left-filled.svelte';
|
|
5302
5333
|
export { default as IconInnerShadowTopRightFilled } from './inner-shadow-top-right-filled.svelte';
|
|
5303
5334
|
export { default as IconInnerShadowTopFilled } from './inner-shadow-top-filled.svelte';
|
|
5335
|
+
export { default as IconIroning1Filled } from './ironing-1-filled.svelte';
|
|
5336
|
+
export { default as IconIroning2Filled } from './ironing-2-filled.svelte';
|
|
5337
|
+
export { default as IconIroning3Filled } from './ironing-3-filled.svelte';
|
|
5338
|
+
export { default as IconIroningSteamFilled } from './ironing-steam-filled.svelte';
|
|
5304
5339
|
export { default as IconIroningFilled } from './ironing-filled.svelte';
|
|
5305
5340
|
export { default as IconJetpackFilled } from './jetpack-filled.svelte';
|
|
5306
5341
|
export { default as IconJewishStarFilled } from './jewish-star-filled.svelte';
|
|
@@ -5443,6 +5478,7 @@ export { default as IconShirtFilled } from './shirt-filled.svelte';
|
|
|
5443
5478
|
export { default as IconShoppingCartFilled } from './shopping-cart-filled.svelte';
|
|
5444
5479
|
export { default as IconSignLeftFilled } from './sign-left-filled.svelte';
|
|
5445
5480
|
export { default as IconSignRightFilled } from './sign-right-filled.svelte';
|
|
5481
|
+
export { default as IconSitemapFilled } from './sitemap-filled.svelte';
|
|
5446
5482
|
export { default as IconSortAscending2Filled } from './sort-ascending-2-filled.svelte';
|
|
5447
5483
|
export { default as IconSortAscendingShapesFilled } from './sort-ascending-shapes-filled.svelte';
|
|
5448
5484
|
export { default as IconSortDescending2Filled } from './sort-descending-2-filled.svelte';
|