@tabler/icons-svelte 3.22.0 → 3.23.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/alarm-smoke.svelte +6 -0
- package/dist/icons/alarm-smoke.svelte.d.ts +17 -0
- package/dist/icons/assembly-off.svelte +1 -1
- package/dist/icons/assembly.svelte +1 -1
- package/dist/icons/badge-2k.svelte +6 -0
- package/dist/icons/badge-2k.svelte.d.ts +17 -0
- package/dist/icons/badge-3k.svelte +6 -0
- package/dist/icons/badge-3k.svelte.d.ts +17 -0
- package/dist/icons/badge-5k.svelte +6 -0
- package/dist/icons/badge-5k.svelte.d.ts +17 -0
- package/dist/icons/badge-8k.svelte +1 -1
- package/dist/icons/blocks.svelte +6 -0
- package/dist/icons/blocks.svelte.d.ts +17 -0
- package/dist/icons/bowling.svelte +6 -0
- package/dist/icons/bowling.svelte.d.ts +17 -0
- package/dist/icons/browser-maximize.svelte +6 -0
- package/dist/icons/browser-maximize.svelte.d.ts +17 -0
- package/dist/icons/browser-minus.svelte +6 -0
- package/dist/icons/browser-minus.svelte.d.ts +17 -0
- package/dist/icons/browser-plus.svelte +1 -1
- package/dist/icons/browser-share.svelte +6 -0
- package/dist/icons/browser-share.svelte.d.ts +17 -0
- package/dist/icons/browser.svelte +1 -1
- package/dist/icons/calendar-event-filled.svelte +6 -0
- package/dist/icons/calendar-event-filled.svelte.d.ts +17 -0
- package/dist/icons/calendar-month-filled.svelte +6 -0
- package/dist/icons/calendar-month-filled.svelte.d.ts +17 -0
- package/dist/icons/calendar-week-filled.svelte +6 -0
- package/dist/icons/calendar-week-filled.svelte.d.ts +17 -0
- package/dist/icons/candle-filled.svelte +1 -1
- package/dist/icons/candle.svelte +1 -1
- package/dist/icons/code-variable-minus.svelte +6 -0
- package/dist/icons/code-variable-minus.svelte.d.ts +17 -0
- package/dist/icons/code-variable-plus.svelte +6 -0
- package/dist/icons/code-variable-plus.svelte.d.ts +17 -0
- package/dist/icons/code-variable.svelte +6 -0
- package/dist/icons/code-variable.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +18 -0
- package/dist/icons/index.js +18 -0
- package/dist/icons/uhd.svelte +6 -0
- package/dist/icons/uhd.svelte.d.ts +17 -0
- package/dist/icons/wheat-off.svelte +6 -0
- package/dist/icons/wheat-off.svelte.d.ts +17 -0
- package/dist/icons/wheat.svelte +6 -0
- package/dist/icons/wheat.svelte.d.ts +17 -0
- package/dist/icons-list.js +18 -0
- package/package.json +2 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M18 8l-.8 3a1.25 1.25 0 0 1 -1.2 1h-8a1.25 1.25 0 0 1 -1.2 -1l-.8 -3" }], ["path", { "d": "M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M12 16c.643 .288 1.017 .756 1 1.25c.017 .494 -.357 .962 -1 1.25s-1.017 .756 -1 1.25c-.017 .494 .357 .962 1 1.25" }], ["path", { "d": "M7 16c.643 .288 1.017 .756 1 1.25c.017 .494 -.357 .962 -1 1.25s-1.017 .756 -1 1.25c-.017 .494 .357 .962 1 1.25" }], ["path", { "d": "M17 16c.643 .288 1.017 .756 1 1.25c.017 .494 -.357 .962 -1 1.25s-1.017 .756 -1 1.25c-.017 .494 .357 .962 1 1.25" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="alarm-smoke" {...$$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 AlarmSmokeProps = typeof __propDef.props;
|
|
13
|
+
export type AlarmSmokeEvents = typeof __propDef.events;
|
|
14
|
+
export type AlarmSmokeSlots = typeof __propDef.slots;
|
|
15
|
+
export default class AlarmSmoke extends SvelteComponentTyped<AlarmSmokeProps, AlarmSmokeEvents, AlarmSmokeSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "
|
|
2
|
+
const iconNode = [["path", { "d": "M18.376 18.377l-5.284 3.343a2.27 2.27 0 0 1 -2.184 0l-6.75 -4.27a2.23 2.23 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l1.328 -.783m2.514 -1.487l2.908 -1.71a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .417 -.118 .817 -.33 1.16" }], ["path", { "d": "M14.855 14.855l-2.37 1.519a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.563 -.336m2.437 -1.454a1.03 1.03 0 0 1 1 0l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702" }], ["path", { "d": "M3 3l18 18" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="assembly-off" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M19.875 6.
|
|
2
|
+
const iconNode = [["path", { "d": "M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.27 2.27 0 0 1 -2.184 0l-6.75 -4.27a2.23 2.23 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98z" }], ["path", { "d": "M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="assembly" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
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": "M14 9v6" }], ["path", { "d": "M17 9l-2 3l2 3" }], ["path", { "d": "M15 12h-1" }], ["path", { "d": "M7 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="badge-2k" {...$$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 Badge_2kProps = typeof __propDef.props;
|
|
13
|
+
export type Badge_2kEvents = typeof __propDef.events;
|
|
14
|
+
export type Badge_2kSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Badge_2k extends SvelteComponentTyped<Badge_2kProps, Badge_2kEvents, Badge_2kSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
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": "M14 9v6" }], ["path", { "d": "M17 9l-2 3l2 3" }], ["path", { "d": "M15 12h-1" }], ["path", { "d": "M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="badge-3k" {...$$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 Badge_3kProps = typeof __propDef.props;
|
|
13
|
+
export type Badge_3kEvents = typeof __propDef.events;
|
|
14
|
+
export type Badge_3kSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Badge_3k extends SvelteComponentTyped<Badge_3kProps, Badge_3kEvents, Badge_3kSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
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": "M14 9v6" }], ["path", { "d": "M17 9l-2 3l2 3" }], ["path", { "d": "M15 12h-1" }], ["path", { "d": "M7 15h2a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="badge-5k" {...$$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 Badge_5kProps = typeof __propDef.props;
|
|
13
|
+
export type Badge_5kEvents = typeof __propDef.events;
|
|
14
|
+
export type Badge_5kSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Badge_5k extends SvelteComponentTyped<Badge_5kProps, Badge_5kEvents, Badge_5kSlots> {
|
|
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": "M14 9v6" }], ["path", { "d": "M17 9l-2 3l2 3" }], ["path", { "d": "M15 12h-1" }], ["path", { "d": "M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1zh-.5a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="badge-8k" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M14 4a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M3 14h12a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h3a2 2 0 0 1 2 2v12" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="blocks" {...$$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 BlocksProps = typeof __propDef.props;
|
|
13
|
+
export type BlocksEvents = typeof __propDef.events;
|
|
14
|
+
export type BlocksSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Blocks extends SvelteComponentTyped<BlocksProps, BlocksEvents, BlocksSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M7 11v.01" }], ["path", { "d": "M11 10v.01" }], ["path", { "d": "M10 14v.01" }], ["path", { "d": "M11.059 6.07a8 8 0 1 0 .32 15.81" }], ["path", { "d": "M15.969 9h4" }], ["path", { "d": "M14.969 5c0 1.5 1 2 1 4c0 2.5 -2 4.5 -2 7c0 2.6 1.9 6 1.9 6h4.1s2 -3.4 2 -6c0 -2.5 -2 -4.5 -2 -7c0 -2 1 -2.5 1 -4a3 3 0 1 0 -6 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="bowling" {...$$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 BowlingProps = typeof __propDef.props;
|
|
13
|
+
export type BowlingEvents = typeof __propDef.events;
|
|
14
|
+
export type BowlingSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Bowling extends SvelteComponentTyped<BowlingProps, BowlingEvents, BowlingSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 8h8" }], ["path", { "d": "M20 11.5v6.5a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6.5" }], ["path", { "d": "M8 4v4" }], ["path", { "d": "M16 8l5 -5" }], ["path", { "d": "M21 7.5v-4.5h-4.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="browser-maximize" {...$$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 BrowserMaximizeProps = typeof __propDef.props;
|
|
13
|
+
export type BrowserMaximizeEvents = typeof __propDef.events;
|
|
14
|
+
export type BrowserMaximizeSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BrowserMaximize extends SvelteComponentTyped<BrowserMaximizeProps, BrowserMaximizeEvents, BrowserMaximizeSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 8h16" }], ["path", { "d": "M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9" }], ["path", { "d": "M8 4v4" }], ["path", { "d": "M16 19h6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="browser-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 BrowserMinusProps = typeof __propDef.props;
|
|
13
|
+
export type BrowserMinusEvents = typeof __propDef.events;
|
|
14
|
+
export type BrowserMinusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BrowserMinus extends SvelteComponentTyped<BrowserMinusProps, BrowserMinusEvents, BrowserMinusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M4
|
|
2
|
+
const iconNode = [["path", { "d": "M4 8h16" }], ["path", { "d": "M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6" }], ["path", { "d": "M8 4v4" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16v6" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="browser-plus" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 8h16" }], ["path", { "d": "M12.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7" }], ["path", { "d": "M8 4v4" }], ["path", { "d": "M16 22l5 -5" }], ["path", { "d": "M21 21.5v-4.5h-4.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="browser-share" {...$$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 BrowserShareProps = typeof __propDef.props;
|
|
13
|
+
export type BrowserShareEvents = typeof __propDef.events;
|
|
14
|
+
export type BrowserShareSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BrowserShare extends SvelteComponentTyped<BrowserShareProps, BrowserShareEvents, BrowserShareSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M4 4m0
|
|
2
|
+
const iconNode = [["path", { "d": "M4 8h16" }], ["path", { "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M8 4v4" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="browser" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M16 2a1 1 0 0 1 .993 .883l.007 .117v1h1a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h1v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h6v-1a1 1 0 0 1 1 -1m3 7h-14v9.625c0 .705 .386 1.286 .883 1.366l.117 .009h12c.513 0 .936 -.53 .993 -1.215l.007 -.16z" }], ["path", { "d": "M8 14h2v2h-2z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="calendar-event-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 CalendarEventFilledProps = typeof __propDef.props;
|
|
13
|
+
export type CalendarEventFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type CalendarEventFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CalendarEventFilled extends SvelteComponentTyped<CalendarEventFilledProps, CalendarEventFilledEvents, CalendarEventFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M16 2c.183 0 .355 .05 .502 .135l.033 .02c.28 .177 .465 .49 .465 .845v1h1a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h1v-1a1 1 0 0 1 .514 -.874l.093 -.046l.066 -.025l.1 -.029l.107 -.019l.12 -.007q .083 0 .161 .013l.122 .029l.04 .012l.06 .023c.328 .135 .568 .44 .61 .806l.007 .117v1h6v-1a1 1 0 0 1 1 -1m3 7h-14v9.625c0 .705 .386 1.286 .883 1.366l.117 .009h12c.513 0 .936 -.53 .993 -1.215l.007 -.16z" }], ["path", { "d": "M9.015 13a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1" }], ["path", { "d": "M13.015 13a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1" }], ["path", { "d": "M17.02 13a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1" }], ["path", { "d": "M12.02 15a1 1 0 0 1 0 2a1.001 1.001 0 1 1 -.005 -2z" }], ["path", { "d": "M9.015 16a1 1 0 0 1 -1 1a1.001 1.001 0 1 1 -.005 -2c.557 0 1.005 .448 1.005 1" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="calendar-month-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 CalendarMonthFilledProps = typeof __propDef.props;
|
|
13
|
+
export type CalendarMonthFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type CalendarMonthFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CalendarMonthFilled extends SvelteComponentTyped<CalendarMonthFilledProps, CalendarMonthFilledEvents, CalendarMonthFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8 12a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1" }], ["path", { "d": "M12 12a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1" }], ["path", { "d": "M16 12a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1" }], ["path", { "d": "M16 2a1 1 0 0 1 .993 .883l.007 .117v1h1a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h1v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h6v-1a1 1 0 0 1 1 -1m3 7h-14v9.625c0 .705 .386 1.286 .883 1.366l.117 .009h12c.513 0 .936 -.53 .993 -1.215l.007 -.16z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="calendar-week-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 CalendarWeekFilledProps = typeof __propDef.props;
|
|
13
|
+
export type CalendarWeekFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type CalendarWeekFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CalendarWeekFilled extends SvelteComponentTyped<CalendarWeekFilledProps, CalendarWeekFilledEvents, CalendarWeekFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M14
|
|
2
|
+
const iconNode = [["path", { "d": "M14 9a2 2 0 0 1 2 2v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10a2 2 0 0 1 2 -2z" }], ["path", { "d": "M11.254 1.334a1 1 0 0 1 1.491 0l1.452 1.623a3 3 0 0 1 -4.196 4.28c-1.195 -1.07 -1.339 -2.889 -.297 -4.166z" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="filled" name="candle-filled" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
package/dist/icons/candle.svelte
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M9 21h6v-
|
|
2
|
+
const iconNode = [["path", { "d": "M9 21h6v-10a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1z" }], ["path", { "d": "M12 2l1.465 1.638a2 2 0 1 1 -3.015 .099z" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="candle" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.5 16h-6.5a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" }], ["path", { "d": "M16 18h6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="code-variable-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 CodeVariableMinusProps = typeof __propDef.props;
|
|
13
|
+
export type CodeVariableMinusEvents = typeof __propDef.events;
|
|
14
|
+
export type CodeVariableMinusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CodeVariableMinus extends SvelteComponentTyped<CodeVariableMinusProps, CodeVariableMinusEvents, CodeVariableMinusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M13 16h-7a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v1" }], ["path", { "d": "M16 18h6" }], ["path", { "d": "M19 15v6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="code-variable-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 CodeVariablePlusProps = typeof __propDef.props;
|
|
13
|
+
export type CodeVariablePlusEvents = typeof __propDef.events;
|
|
14
|
+
export type CodeVariablePlusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CodeVariablePlus extends SvelteComponentTyped<CodeVariablePlusProps, CodeVariablePlusEvents, CodeVariablePlusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="code-variable" {...$$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 CodeVariableProps = typeof __propDef.props;
|
|
13
|
+
export type CodeVariableEvents = typeof __propDef.events;
|
|
14
|
+
export type CodeVariableSlots = typeof __propDef.slots;
|
|
15
|
+
export default class CodeVariable extends SvelteComponentTyped<CodeVariableProps, CodeVariableEvents, CodeVariableSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ export { default as IconAlarmAverage } from './alarm-average.svelte';
|
|
|
52
52
|
export { default as IconAlarmMinus } from './alarm-minus.svelte';
|
|
53
53
|
export { default as IconAlarmOff } from './alarm-off.svelte';
|
|
54
54
|
export { default as IconAlarmPlus } from './alarm-plus.svelte';
|
|
55
|
+
export { default as IconAlarmSmoke } from './alarm-smoke.svelte';
|
|
55
56
|
export { default as IconAlarmSnooze } from './alarm-snooze.svelte';
|
|
56
57
|
export { default as IconAlarm } from './alarm.svelte';
|
|
57
58
|
export { default as IconAlbumOff } from './album-off.svelte';
|
|
@@ -354,8 +355,11 @@ export { default as IconBackpackOff } from './backpack-off.svelte';
|
|
|
354
355
|
export { default as IconBackpack } from './backpack.svelte';
|
|
355
356
|
export { default as IconBackslash } from './backslash.svelte';
|
|
356
357
|
export { default as IconBackspace } from './backspace.svelte';
|
|
358
|
+
export { default as IconBadge2k } from './badge-2k.svelte';
|
|
357
359
|
export { default as IconBadge3d } from './badge-3d.svelte';
|
|
360
|
+
export { default as IconBadge3k } from './badge-3k.svelte';
|
|
358
361
|
export { default as IconBadge4k } from './badge-4k.svelte';
|
|
362
|
+
export { default as IconBadge5k } from './badge-5k.svelte';
|
|
359
363
|
export { default as IconBadge8k } from './badge-8k.svelte';
|
|
360
364
|
export { default as IconBadgeAdOff } from './badge-ad-off.svelte';
|
|
361
365
|
export { default as IconBadgeAd } from './badge-ad.svelte';
|
|
@@ -499,6 +503,7 @@ export { default as IconBlendMode } from './blend-mode.svelte';
|
|
|
499
503
|
export { default as IconBlender } from './blender.svelte';
|
|
500
504
|
export { default as IconBlob } from './blob.svelte';
|
|
501
505
|
export { default as IconBlockquote } from './blockquote.svelte';
|
|
506
|
+
export { default as IconBlocks } from './blocks.svelte';
|
|
502
507
|
export { default as IconBluetoothConnected } from './bluetooth-connected.svelte';
|
|
503
508
|
export { default as IconBluetoothOff } from './bluetooth-off.svelte';
|
|
504
509
|
export { default as IconBluetoothX } from './bluetooth-x.svelte';
|
|
@@ -564,6 +569,7 @@ export { default as IconBow } from './bow.svelte';
|
|
|
564
569
|
export { default as IconBowlChopsticks } from './bowl-chopsticks.svelte';
|
|
565
570
|
export { default as IconBowlSpoon } from './bowl-spoon.svelte';
|
|
566
571
|
export { default as IconBowl } from './bowl.svelte';
|
|
572
|
+
export { default as IconBowling } from './bowling.svelte';
|
|
567
573
|
export { default as IconBoxAlignBottomLeft } from './box-align-bottom-left.svelte';
|
|
568
574
|
export { default as IconBoxAlignBottomRight } from './box-align-bottom-right.svelte';
|
|
569
575
|
export { default as IconBoxAlignBottom } from './box-align-bottom.svelte';
|
|
@@ -985,8 +991,11 @@ export { default as IconBrightness } from './brightness.svelte';
|
|
|
985
991
|
export { default as IconBroadcastOff } from './broadcast-off.svelte';
|
|
986
992
|
export { default as IconBroadcast } from './broadcast.svelte';
|
|
987
993
|
export { default as IconBrowserCheck } from './browser-check.svelte';
|
|
994
|
+
export { default as IconBrowserMaximize } from './browser-maximize.svelte';
|
|
995
|
+
export { default as IconBrowserMinus } from './browser-minus.svelte';
|
|
988
996
|
export { default as IconBrowserOff } from './browser-off.svelte';
|
|
989
997
|
export { default as IconBrowserPlus } from './browser-plus.svelte';
|
|
998
|
+
export { default as IconBrowserShare } from './browser-share.svelte';
|
|
990
999
|
export { default as IconBrowserX } from './browser-x.svelte';
|
|
991
1000
|
export { default as IconBrowser } from './browser.svelte';
|
|
992
1001
|
export { default as IconBrushOff } from './brush-off.svelte';
|
|
@@ -1531,6 +1540,9 @@ export { default as IconCodeDots } from './code-dots.svelte';
|
|
|
1531
1540
|
export { default as IconCodeMinus } from './code-minus.svelte';
|
|
1532
1541
|
export { default as IconCodeOff } from './code-off.svelte';
|
|
1533
1542
|
export { default as IconCodePlus } from './code-plus.svelte';
|
|
1543
|
+
export { default as IconCodeVariableMinus } from './code-variable-minus.svelte';
|
|
1544
|
+
export { default as IconCodeVariablePlus } from './code-variable-plus.svelte';
|
|
1545
|
+
export { default as IconCodeVariable } from './code-variable.svelte';
|
|
1534
1546
|
export { default as IconCode } from './code.svelte';
|
|
1535
1547
|
export { default as IconCoffeeOff } from './coffee-off.svelte';
|
|
1536
1548
|
export { default as IconCoffee } from './coffee.svelte';
|
|
@@ -4644,6 +4656,7 @@ export { default as IconUTurnLeft } from './u-turn-left.svelte';
|
|
|
4644
4656
|
export { default as IconUTurnRight } from './u-turn-right.svelte';
|
|
4645
4657
|
export { default as IconUfoOff } from './ufo-off.svelte';
|
|
4646
4658
|
export { default as IconUfo } from './ufo.svelte';
|
|
4659
|
+
export { default as IconUhd } from './uhd.svelte';
|
|
4647
4660
|
export { default as IconUmbrella2 } from './umbrella-2.svelte';
|
|
4648
4661
|
export { default as IconUmbrellaClosed2 } from './umbrella-closed-2.svelte';
|
|
4649
4662
|
export { default as IconUmbrellaClosed } from './umbrella-closed.svelte';
|
|
@@ -4788,6 +4801,8 @@ export { default as IconWavesElectricity } from './waves-electricity.svelte';
|
|
|
4788
4801
|
export { default as IconWebhookOff } from './webhook-off.svelte';
|
|
4789
4802
|
export { default as IconWebhook } from './webhook.svelte';
|
|
4790
4803
|
export { default as IconWeight } from './weight.svelte';
|
|
4804
|
+
export { default as IconWheatOff } from './wheat-off.svelte';
|
|
4805
|
+
export { default as IconWheat } from './wheat.svelte';
|
|
4791
4806
|
export { default as IconWheel } from './wheel.svelte';
|
|
4792
4807
|
export { default as IconWheelchairOff } from './wheelchair-off.svelte';
|
|
4793
4808
|
export { default as IconWheelchair } from './wheelchair.svelte';
|
|
@@ -5084,6 +5099,9 @@ export { default as IconBulbFilled } from './bulb-filled.svelte';
|
|
|
5084
5099
|
export { default as IconButterflyFilled } from './butterfly-filled.svelte';
|
|
5085
5100
|
export { default as IconCactusFilled } from './cactus-filled.svelte';
|
|
5086
5101
|
export { default as IconCalculatorFilled } from './calculator-filled.svelte';
|
|
5102
|
+
export { default as IconCalendarEventFilled } from './calendar-event-filled.svelte';
|
|
5103
|
+
export { default as IconCalendarMonthFilled } from './calendar-month-filled.svelte';
|
|
5104
|
+
export { default as IconCalendarWeekFilled } from './calendar-week-filled.svelte';
|
|
5087
5105
|
export { default as IconCalendarFilled } from './calendar-filled.svelte';
|
|
5088
5106
|
export { default as IconCameraFilled } from './camera-filled.svelte';
|
|
5089
5107
|
export { default as IconCampfireFilled } from './campfire-filled.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -52,6 +52,7 @@ export { default as IconAlarmAverage } from './alarm-average.svelte';
|
|
|
52
52
|
export { default as IconAlarmMinus } from './alarm-minus.svelte';
|
|
53
53
|
export { default as IconAlarmOff } from './alarm-off.svelte';
|
|
54
54
|
export { default as IconAlarmPlus } from './alarm-plus.svelte';
|
|
55
|
+
export { default as IconAlarmSmoke } from './alarm-smoke.svelte';
|
|
55
56
|
export { default as IconAlarmSnooze } from './alarm-snooze.svelte';
|
|
56
57
|
export { default as IconAlarm } from './alarm.svelte';
|
|
57
58
|
export { default as IconAlbumOff } from './album-off.svelte';
|
|
@@ -354,8 +355,11 @@ export { default as IconBackpackOff } from './backpack-off.svelte';
|
|
|
354
355
|
export { default as IconBackpack } from './backpack.svelte';
|
|
355
356
|
export { default as IconBackslash } from './backslash.svelte';
|
|
356
357
|
export { default as IconBackspace } from './backspace.svelte';
|
|
358
|
+
export { default as IconBadge2k } from './badge-2k.svelte';
|
|
357
359
|
export { default as IconBadge3d } from './badge-3d.svelte';
|
|
360
|
+
export { default as IconBadge3k } from './badge-3k.svelte';
|
|
358
361
|
export { default as IconBadge4k } from './badge-4k.svelte';
|
|
362
|
+
export { default as IconBadge5k } from './badge-5k.svelte';
|
|
359
363
|
export { default as IconBadge8k } from './badge-8k.svelte';
|
|
360
364
|
export { default as IconBadgeAdOff } from './badge-ad-off.svelte';
|
|
361
365
|
export { default as IconBadgeAd } from './badge-ad.svelte';
|
|
@@ -499,6 +503,7 @@ export { default as IconBlendMode } from './blend-mode.svelte';
|
|
|
499
503
|
export { default as IconBlender } from './blender.svelte';
|
|
500
504
|
export { default as IconBlob } from './blob.svelte';
|
|
501
505
|
export { default as IconBlockquote } from './blockquote.svelte';
|
|
506
|
+
export { default as IconBlocks } from './blocks.svelte';
|
|
502
507
|
export { default as IconBluetoothConnected } from './bluetooth-connected.svelte';
|
|
503
508
|
export { default as IconBluetoothOff } from './bluetooth-off.svelte';
|
|
504
509
|
export { default as IconBluetoothX } from './bluetooth-x.svelte';
|
|
@@ -564,6 +569,7 @@ export { default as IconBow } from './bow.svelte';
|
|
|
564
569
|
export { default as IconBowlChopsticks } from './bowl-chopsticks.svelte';
|
|
565
570
|
export { default as IconBowlSpoon } from './bowl-spoon.svelte';
|
|
566
571
|
export { default as IconBowl } from './bowl.svelte';
|
|
572
|
+
export { default as IconBowling } from './bowling.svelte';
|
|
567
573
|
export { default as IconBoxAlignBottomLeft } from './box-align-bottom-left.svelte';
|
|
568
574
|
export { default as IconBoxAlignBottomRight } from './box-align-bottom-right.svelte';
|
|
569
575
|
export { default as IconBoxAlignBottom } from './box-align-bottom.svelte';
|
|
@@ -985,8 +991,11 @@ export { default as IconBrightness } from './brightness.svelte';
|
|
|
985
991
|
export { default as IconBroadcastOff } from './broadcast-off.svelte';
|
|
986
992
|
export { default as IconBroadcast } from './broadcast.svelte';
|
|
987
993
|
export { default as IconBrowserCheck } from './browser-check.svelte';
|
|
994
|
+
export { default as IconBrowserMaximize } from './browser-maximize.svelte';
|
|
995
|
+
export { default as IconBrowserMinus } from './browser-minus.svelte';
|
|
988
996
|
export { default as IconBrowserOff } from './browser-off.svelte';
|
|
989
997
|
export { default as IconBrowserPlus } from './browser-plus.svelte';
|
|
998
|
+
export { default as IconBrowserShare } from './browser-share.svelte';
|
|
990
999
|
export { default as IconBrowserX } from './browser-x.svelte';
|
|
991
1000
|
export { default as IconBrowser } from './browser.svelte';
|
|
992
1001
|
export { default as IconBrushOff } from './brush-off.svelte';
|
|
@@ -1531,6 +1540,9 @@ export { default as IconCodeDots } from './code-dots.svelte';
|
|
|
1531
1540
|
export { default as IconCodeMinus } from './code-minus.svelte';
|
|
1532
1541
|
export { default as IconCodeOff } from './code-off.svelte';
|
|
1533
1542
|
export { default as IconCodePlus } from './code-plus.svelte';
|
|
1543
|
+
export { default as IconCodeVariableMinus } from './code-variable-minus.svelte';
|
|
1544
|
+
export { default as IconCodeVariablePlus } from './code-variable-plus.svelte';
|
|
1545
|
+
export { default as IconCodeVariable } from './code-variable.svelte';
|
|
1534
1546
|
export { default as IconCode } from './code.svelte';
|
|
1535
1547
|
export { default as IconCoffeeOff } from './coffee-off.svelte';
|
|
1536
1548
|
export { default as IconCoffee } from './coffee.svelte';
|
|
@@ -4644,6 +4656,7 @@ export { default as IconUTurnLeft } from './u-turn-left.svelte';
|
|
|
4644
4656
|
export { default as IconUTurnRight } from './u-turn-right.svelte';
|
|
4645
4657
|
export { default as IconUfoOff } from './ufo-off.svelte';
|
|
4646
4658
|
export { default as IconUfo } from './ufo.svelte';
|
|
4659
|
+
export { default as IconUhd } from './uhd.svelte';
|
|
4647
4660
|
export { default as IconUmbrella2 } from './umbrella-2.svelte';
|
|
4648
4661
|
export { default as IconUmbrellaClosed2 } from './umbrella-closed-2.svelte';
|
|
4649
4662
|
export { default as IconUmbrellaClosed } from './umbrella-closed.svelte';
|
|
@@ -4788,6 +4801,8 @@ export { default as IconWavesElectricity } from './waves-electricity.svelte';
|
|
|
4788
4801
|
export { default as IconWebhookOff } from './webhook-off.svelte';
|
|
4789
4802
|
export { default as IconWebhook } from './webhook.svelte';
|
|
4790
4803
|
export { default as IconWeight } from './weight.svelte';
|
|
4804
|
+
export { default as IconWheatOff } from './wheat-off.svelte';
|
|
4805
|
+
export { default as IconWheat } from './wheat.svelte';
|
|
4791
4806
|
export { default as IconWheel } from './wheel.svelte';
|
|
4792
4807
|
export { default as IconWheelchairOff } from './wheelchair-off.svelte';
|
|
4793
4808
|
export { default as IconWheelchair } from './wheelchair.svelte';
|
|
@@ -5084,6 +5099,9 @@ export { default as IconBulbFilled } from './bulb-filled.svelte';
|
|
|
5084
5099
|
export { default as IconButterflyFilled } from './butterfly-filled.svelte';
|
|
5085
5100
|
export { default as IconCactusFilled } from './cactus-filled.svelte';
|
|
5086
5101
|
export { default as IconCalculatorFilled } from './calculator-filled.svelte';
|
|
5102
|
+
export { default as IconCalendarEventFilled } from './calendar-event-filled.svelte';
|
|
5103
|
+
export { default as IconCalendarMonthFilled } from './calendar-month-filled.svelte';
|
|
5104
|
+
export { default as IconCalendarWeekFilled } from './calendar-week-filled.svelte';
|
|
5087
5105
|
export { default as IconCalendarFilled } from './calendar-filled.svelte';
|
|
5088
5106
|
export { default as IconCameraFilled } from './camera-filled.svelte';
|
|
5089
5107
|
export { default as IconCampfireFilled } from './campfire-filled.svelte';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M10 16v-8" }], ["path", { "d": "M10 12h4" }], ["path", { "d": "M14 8v8" }], ["path", { "d": "M17 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z" }], ["path", { "d": "M3 8v6a2 2 0 1 0 4 0v-6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="uhd" {...$$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 UhdProps = typeof __propDef.props;
|
|
13
|
+
export type UhdEvents = typeof __propDef.events;
|
|
14
|
+
export type UhdSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Uhd extends SvelteComponentTyped<UhdProps, UhdEvents, UhdSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 3l18 18" }], ["path", { "d": "M12 21.5v-3.75" }], ["path", { "d": "M5.916 9.49l-.43 1.604c-.712 2.659 .866 5.392 3.524 6.104c.997 .268 1.994 .535 2.99 .802v-3.44c-.164 -2.105 -1.637 -3.879 -3.677 -4.426l-2.407 -.644z" }], ["path", { "d": "M10.249 4.251c.007 -.007 .014 -.014 .021 -.021l1.73 -1.73" }], ["path", { "d": "M10.27 11.15c-.589 -.589 -1.017 -1.318 -1.246 -2.118" }], ["path", { "d": "M14.988 8.988c.229 -.834 .234 -1.713 .013 -2.549c-.221 -.836 -.659 -1.598 -1.271 -2.209l-1.73 -1.73" }], ["path", { "d": "M16.038 10.037l2.046 -.547l.431 1.604c.142 .53 .193 1.063 .162 1.583" }], ["path", { "d": "M16.506 16.505c-.45 .307 -.959 .544 -1.516 .694c-.997 .268 -1.994 .535 -2.99 .801v-3.44c.055 -.708 .259 -1.379 .582 -1.978" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="wheat-off" {...$$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 WheatOffProps = typeof __propDef.props;
|
|
13
|
+
export type WheatOffEvents = typeof __propDef.events;
|
|
14
|
+
export type WheatOffSlots = typeof __propDef.slots;
|
|
15
|
+
export default class WheatOff extends SvelteComponentTyped<WheatOffProps, WheatOffEvents, WheatOffSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.014 21.514v-3.75" }], ["path", { "d": "M5.93 9.504l-.43 1.604c-.712 2.659 .866 5.391 3.524 6.105c.997 .268 1.993 .535 2.99 .801v-3.44c-.164 -2.105 -1.637 -3.879 -3.676 -4.426l-2.408 -.644z" }], ["path", { "d": "M13.744 11.164c.454 -.454 .815 -.994 1.061 -1.587c.246 -.594 .372 -1.23 .372 -1.873c0 -.643 -.126 -1.279 -.372 -1.872c-.246 -.594 -.606 -1.133 -1.061 -1.588l-1.73 -1.73l-1.73 1.73c-.454 .454 -.815 .994 -1.06 1.588c-.246 .594 -.372 1.23 -.373 1.872c0 .643 .127 1.279 .373 1.873c.246 .594 .606 1.133 1.06 1.587" }], ["path", { "d": "M18.099 9.504l.43 1.604c.712 2.659 -.866 5.391 -3.525 6.105c-.997 .268 -1.994 .535 -2.99 .801v-3.44c.164 -2.105 1.637 -3.879 3.677 -4.426l2.408 -.644z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="wheat" {...$$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 WheatProps = typeof __propDef.props;
|
|
13
|
+
export type WheatEvents = typeof __propDef.events;
|
|
14
|
+
export type WheatSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Wheat extends SvelteComponentTyped<WheatProps, WheatEvents, WheatSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -53,6 +53,7 @@ export default [
|
|
|
53
53
|
"alarm-minus",
|
|
54
54
|
"alarm-off",
|
|
55
55
|
"alarm-plus",
|
|
56
|
+
"alarm-smoke",
|
|
56
57
|
"alarm-snooze",
|
|
57
58
|
"alarm",
|
|
58
59
|
"album-off",
|
|
@@ -355,8 +356,11 @@ export default [
|
|
|
355
356
|
"backpack",
|
|
356
357
|
"backslash",
|
|
357
358
|
"backspace",
|
|
359
|
+
"badge-2k",
|
|
358
360
|
"badge-3d",
|
|
361
|
+
"badge-3k",
|
|
359
362
|
"badge-4k",
|
|
363
|
+
"badge-5k",
|
|
360
364
|
"badge-8k",
|
|
361
365
|
"badge-ad-off",
|
|
362
366
|
"badge-ad",
|
|
@@ -500,6 +504,7 @@ export default [
|
|
|
500
504
|
"blender",
|
|
501
505
|
"blob",
|
|
502
506
|
"blockquote",
|
|
507
|
+
"blocks",
|
|
503
508
|
"bluetooth-connected",
|
|
504
509
|
"bluetooth-off",
|
|
505
510
|
"bluetooth-x",
|
|
@@ -565,6 +570,7 @@ export default [
|
|
|
565
570
|
"bowl-chopsticks",
|
|
566
571
|
"bowl-spoon",
|
|
567
572
|
"bowl",
|
|
573
|
+
"bowling",
|
|
568
574
|
"box-align-bottom-left",
|
|
569
575
|
"box-align-bottom-right",
|
|
570
576
|
"box-align-bottom",
|
|
@@ -986,8 +992,11 @@ export default [
|
|
|
986
992
|
"broadcast-off",
|
|
987
993
|
"broadcast",
|
|
988
994
|
"browser-check",
|
|
995
|
+
"browser-maximize",
|
|
996
|
+
"browser-minus",
|
|
989
997
|
"browser-off",
|
|
990
998
|
"browser-plus",
|
|
999
|
+
"browser-share",
|
|
991
1000
|
"browser-x",
|
|
992
1001
|
"browser",
|
|
993
1002
|
"brush-off",
|
|
@@ -1532,6 +1541,9 @@ export default [
|
|
|
1532
1541
|
"code-minus",
|
|
1533
1542
|
"code-off",
|
|
1534
1543
|
"code-plus",
|
|
1544
|
+
"code-variable-minus",
|
|
1545
|
+
"code-variable-plus",
|
|
1546
|
+
"code-variable",
|
|
1535
1547
|
"code",
|
|
1536
1548
|
"coffee-off",
|
|
1537
1549
|
"coffee",
|
|
@@ -4645,6 +4657,7 @@ export default [
|
|
|
4645
4657
|
"u-turn-right",
|
|
4646
4658
|
"ufo-off",
|
|
4647
4659
|
"ufo",
|
|
4660
|
+
"uhd",
|
|
4648
4661
|
"umbrella-2",
|
|
4649
4662
|
"umbrella-closed-2",
|
|
4650
4663
|
"umbrella-closed",
|
|
@@ -4789,6 +4802,8 @@ export default [
|
|
|
4789
4802
|
"webhook-off",
|
|
4790
4803
|
"webhook",
|
|
4791
4804
|
"weight",
|
|
4805
|
+
"wheat-off",
|
|
4806
|
+
"wheat",
|
|
4792
4807
|
"wheel",
|
|
4793
4808
|
"wheelchair-off",
|
|
4794
4809
|
"wheelchair",
|
|
@@ -5085,6 +5100,9 @@ export default [
|
|
|
5085
5100
|
"butterfly-filled",
|
|
5086
5101
|
"cactus-filled",
|
|
5087
5102
|
"calculator-filled",
|
|
5103
|
+
"calendar-event-filled",
|
|
5104
|
+
"calendar-month-filled",
|
|
5105
|
+
"calendar-week-filled",
|
|
5088
5106
|
"calendar-filled",
|
|
5089
5107
|
"camera-filled",
|
|
5090
5108
|
"campfire-filled",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.23.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.23.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@sveltejs/package": "^2.2.7",
|