@tabler/icons-svelte 3.37.1 → 3.38.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/adjustments-horizontal-filled.svelte +6 -0
- package/dist/icons/adjustments-horizontal-filled.svelte.d.ts +17 -0
- package/dist/icons/calendar-event-filled.svelte +1 -1
- package/dist/icons/check-filled.svelte +6 -0
- package/dist/icons/check-filled.svelte.d.ts +17 -0
- package/dist/icons/chevron-down-filled.svelte +6 -0
- package/dist/icons/chevron-down-filled.svelte.d.ts +17 -0
- package/dist/icons/chevron-right-filled.svelte +6 -0
- package/dist/icons/chevron-right-filled.svelte.d.ts +17 -0
- package/dist/icons/click-filled.svelte +6 -0
- package/dist/icons/click-filled.svelte.d.ts +17 -0
- package/dist/icons/copy-filled.svelte +6 -0
- package/dist/icons/copy-filled.svelte.d.ts +17 -0
- package/dist/icons/database-filled.svelte +6 -0
- package/dist/icons/database-filled.svelte.d.ts +17 -0
- package/dist/icons/device-floppy-filled.svelte +6 -0
- package/dist/icons/device-floppy-filled.svelte.d.ts +17 -0
- package/dist/icons/device-gamepad-2-filled.svelte +6 -0
- package/dist/icons/device-gamepad-2-filled.svelte.d.ts +17 -0
- package/dist/icons/dots-filled.svelte +6 -0
- package/dist/icons/dots-filled.svelte.d.ts +17 -0
- package/dist/icons/dots-vertical-filled.svelte +6 -0
- package/dist/icons/dots-vertical-filled.svelte.d.ts +17 -0
- package/dist/icons/download-filled.svelte +6 -0
- package/dist/icons/download-filled.svelte.d.ts +17 -0
- package/dist/icons/edit-filled.svelte +6 -0
- package/dist/icons/edit-filled.svelte.d.ts +17 -0
- package/dist/icons/external-link-filled.svelte +6 -0
- package/dist/icons/external-link-filled.svelte.d.ts +17 -0
- package/dist/icons/headset-filled.svelte +6 -0
- package/dist/icons/headset-filled.svelte.d.ts +17 -0
- package/dist/icons/help-filled.svelte +6 -0
- package/dist/icons/help-filled.svelte.d.ts +17 -0
- package/dist/icons/home-2-filled.svelte +6 -0
- package/dist/icons/home-2-filled.svelte.d.ts +17 -0
- package/dist/icons/id-filled.svelte +6 -0
- package/dist/icons/id-filled.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +34 -0
- package/dist/icons/index.js +34 -0
- package/dist/icons/link-filled.svelte +6 -0
- package/dist/icons/link-filled.svelte.d.ts +17 -0
- package/dist/icons/list-check-filled.svelte +6 -0
- package/dist/icons/list-check-filled.svelte.d.ts +17 -0
- package/dist/icons/list-details-filled.svelte +6 -0
- package/dist/icons/list-details-filled.svelte.d.ts +17 -0
- package/dist/icons/list-filled.svelte +6 -0
- package/dist/icons/list-filled.svelte.d.ts +17 -0
- package/dist/icons/menu-2-filled.svelte +6 -0
- package/dist/icons/menu-2-filled.svelte.d.ts +17 -0
- package/dist/icons/messages-filled.svelte +6 -0
- package/dist/icons/messages-filled.svelte.d.ts +17 -0
- package/dist/icons/pencil-filled.svelte +6 -0
- package/dist/icons/pencil-filled.svelte.d.ts +17 -0
- package/dist/icons/plus-filled.svelte +6 -0
- package/dist/icons/plus-filled.svelte.d.ts +17 -0
- package/dist/icons/scale-filled.svelte +6 -0
- package/dist/icons/scale-filled.svelte.d.ts +17 -0
- package/dist/icons/school-filled.svelte +6 -0
- package/dist/icons/school-filled.svelte.d.ts +17 -0
- package/dist/icons/search-filled.svelte +6 -0
- package/dist/icons/search-filled.svelte.d.ts +17 -0
- package/dist/icons/send-filled.svelte +6 -0
- package/dist/icons/send-filled.svelte.d.ts +17 -0
- package/dist/icons/ticket-filled.svelte +6 -0
- package/dist/icons/ticket-filled.svelte.d.ts +17 -0
- package/dist/icons/tools-kitchen-2-filled.svelte +6 -0
- package/dist/icons/tools-kitchen-2-filled.svelte.d.ts +17 -0
- package/dist/icons/trash-filled.svelte +1 -1
- package/dist/icons/world-filled.svelte +6 -0
- package/dist/icons/world-filled.svelte.d.ts +17 -0
- package/dist/icons/x-filled.svelte +6 -0
- package/dist/icons/x-filled.svelte.d.ts +17 -0
- package/dist/icons-list.js +34 -0
- package/package.json +2 -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 SchoolFilledProps = typeof __propDef.props;
|
|
13
|
+
export type SchoolFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type SchoolFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class SchoolFilled extends SvelteComponentTyped<SchoolFilledProps, SchoolFilledEvents, SchoolFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M14 3.072a8 8 0 0 1 2.32 11.834l5.387 5.387a1 1 0 0 1 -1.414 1.414l-5.388 -5.387a8 8 0 1 1 -.905 -13.249" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="search-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 SearchFilledProps = typeof __propDef.props;
|
|
13
|
+
export type SearchFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type SearchFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class SearchFilled extends SvelteComponentTyped<SearchFilledProps, SearchFilledEvents, SearchFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M21.864 3.549l-6.454 17.868a1.55 1.55 0 0 1 -1.41 .903a1.54 1.54 0 0 1 -1.394 -.874l-2.88 -5.759zm-1.414 -1.414l-12.139 12.138l-5.728 -2.864a1.55 1.55 0 0 1 -.903 -1.409c0 -.606 .353 -1.157 .981 -1.44z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="send-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 SendFilledProps = typeof __propDef.props;
|
|
13
|
+
export type SendFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type SendFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class SendFilled extends SvelteComponentTyped<SendFilledProps, SendFilledEvents, SendFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M14 4v2a1 1 0 0 0 2 0v-2h3a3 3 0 0 1 3 3v3a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 0 -.117 1.993l.117 .007a1 1 0 0 1 1 1v3a3 3 0 0 1 -3 3h-3v-2a1 1 0 0 0 -.883 -.993l-.117 -.007a1 1 0 0 0 -1 1v2h-9a3 3 0 0 1 -3 -3v-3a1 1 0 0 1 .883 -.993l.117 -.007a1 1 0 0 0 .117 -1.993l-.117 -.007a1 1 0 0 1 -1 -1v-3a2.995 2.995 0 0 1 2.727 -2.985l.222 -.014zm1 6a1 1 0 0 0 -1 1v2a1 1 0 0 0 2 0v-2a1 1 0 0 0 -1 -1" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="ticket-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 TicketFilledProps = typeof __propDef.props;
|
|
13
|
+
export type TicketFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type TicketFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TicketFilled extends SvelteComponentTyped<TicketFilledProps, TicketFilledEvents, TicketFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M18.94 2.002l.1 -.001l.096 .008l.095 .018l.094 .027l.092 .037l.086 .045l.08 .052l.076 .06l.076 .074l.06 .072l.03 .04l.051 .084l.043 .088l.034 .091l.025 .094l.02 .15l.002 18.059a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1v-1h-4a1 1 0 0 1 -1 -.994c-.033 -5.323 .97 -8.482 5.005 -12.434l.317 -.307l.072 -.06l.04 -.03l.084 -.051l.088 -.043l.091 -.034l.094 -.025zm-7.94 .998a1 1 0 0 1 1 1v3a4 4 0 0 1 -3 3.874v10.126a1 1 0 0 1 -2 0v-10.126a4 4 0 0 1 -3 -3.874v-3a1 1 0 1 1 2 0v3a2 2 0 0 0 1 1.732v-4.732a1 1 0 1 1 2 0l.001 4.732a2 2 0 0 0 .999 -1.732v-3a1 1 0 0 1 1 -1" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="tools-kitchen-2-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 ToolsKitchen2FilledProps = typeof __propDef.props;
|
|
13
|
+
export type ToolsKitchen2FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type ToolsKitchen2FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ToolsKitchen2Filled extends SvelteComponentTyped<ToolsKitchen2FilledProps, ToolsKitchen2FilledEvents, ToolsKitchen2FilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.
|
|
2
|
+
const iconNode = [["path", { "d": "M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007zm-10 4a1 1 0 0 0 -1 1v6a1 1 0 0 0 2 0v-6a1 1 0 0 0 -1 -1m4 0a1 1 0 0 0 -1 1v6a1 1 0 0 0 2 0v-6a1 1 0 0 0 -1 -1" }], ["path", { "d": "M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005z" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="filled" name="trash-filled" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M21.165 16a10 10 0 0 1 -8.434 5.973a1 1 0 0 0 .617 -.444a18 18 0 0 0 2.28 -5.528z" }], ["path", { "d": "M8.372 16a18 18 0 0 0 2.28 5.53a1 1 0 0 0 .616 .443a10 10 0 0 1 -8.433 -5.973z" }], ["path", { "d": "M13.57 16a16 16 0 0 1 -1.57 3.884a16 16 0 0 1 -1.57 -3.884" }], ["path", { "d": "M8.034 10a18 18 0 0 0 0 4h-5.832a10 10 0 0 1 -.002 -4z" }], ["path", { "d": "M13.952 10a16 16 0 0 1 0 4h-3.904a16 16 0 0 1 0 -4z" }], ["path", { "d": "M21.8 10a10.05 10.05 0 0 1 -.002 4h-5.832c.149 -1.329 .149 -2.67 0 -4z" }], ["path", { "d": "M11.267 2.027a1 1 0 0 0 -.615 .444a18 18 0 0 0 -2.28 5.529h-5.54a10.01 10.01 0 0 1 8.334 -5.967z" }], ["path", { "d": "M12 4.116a16 16 0 0 1 1.57 3.885h-3.14c.34 -1.317 .85 -2.6 1.53 -3.817z" }], ["path", { "d": "M12.733 2.026a10.01 10.01 0 0 1 8.435 5.974h-5.54a18 18 0 0 0 -2.28 -5.53a1 1 0 0 0 -.517 -.414z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="world-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 WorldFilledProps = typeof __propDef.props;
|
|
13
|
+
export type WorldFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type WorldFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class WorldFilled extends SvelteComponentTyped<WorldFilledProps, WorldFilledEvents, WorldFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M6.707 5.293l5.293 5.292l5.293 -5.292a1 1 0 0 1 1.414 1.414l-5.292 5.293l5.292 5.293a1 1 0 0 1 -1.414 1.414l-5.293 -5.292l-5.293 5.292a1 1 0 1 1 -1.414 -1.414l5.292 -5.293l-5.292 -5.293a1 1 0 0 1 1.414 -1.414" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="x-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 XFilledProps = typeof __propDef.props;
|
|
13
|
+
export type XFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type XFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class XFilled extends SvelteComponentTyped<XFilledProps, XFilledEvents, XFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -4987,6 +4987,7 @@ export default [
|
|
|
4987
4987
|
"accessible-filled",
|
|
4988
4988
|
"ad-circle-filled",
|
|
4989
4989
|
"ad-filled",
|
|
4990
|
+
"adjustments-horizontal-filled",
|
|
4990
4991
|
"adjustments-filled",
|
|
4991
4992
|
"aerial-lift-filled",
|
|
4992
4993
|
"affiliate-filled",
|
|
@@ -5241,6 +5242,7 @@ export default [
|
|
|
5241
5242
|
"chart-pie-3-filled",
|
|
5242
5243
|
"chart-pie-4-filled",
|
|
5243
5244
|
"chart-pie-filled",
|
|
5245
|
+
"check-filled",
|
|
5244
5246
|
"chef-hat-filled",
|
|
5245
5247
|
"cherry-filled",
|
|
5246
5248
|
"chess-bishop-filled",
|
|
@@ -5249,6 +5251,8 @@ export default [
|
|
|
5249
5251
|
"chess-queen-filled",
|
|
5250
5252
|
"chess-rook-filled",
|
|
5251
5253
|
"chess-filled",
|
|
5254
|
+
"chevron-down-filled",
|
|
5255
|
+
"chevron-right-filled",
|
|
5252
5256
|
"christmas-tree-filled",
|
|
5253
5257
|
"circle-arrow-down-left-filled",
|
|
5254
5258
|
"circle-arrow-down-right-filled",
|
|
@@ -5315,6 +5319,7 @@ export default [
|
|
|
5315
5319
|
"circle-x-filled",
|
|
5316
5320
|
"circle-filled",
|
|
5317
5321
|
"circles-filled",
|
|
5322
|
+
"click-filled",
|
|
5318
5323
|
"clipboard-check-filled",
|
|
5319
5324
|
"clipboard-data-filled",
|
|
5320
5325
|
"clipboard-list-filled",
|
|
@@ -5369,6 +5374,7 @@ export default [
|
|
|
5369
5374
|
"copy-minus-filled",
|
|
5370
5375
|
"copy-plus-filled",
|
|
5371
5376
|
"copy-x-filled",
|
|
5377
|
+
"copy-filled",
|
|
5372
5378
|
"copyleft-filled",
|
|
5373
5379
|
"copyright-filled",
|
|
5374
5380
|
"credit-card-filled",
|
|
@@ -5383,8 +5389,11 @@ export default [
|
|
|
5383
5389
|
"crown-filled",
|
|
5384
5390
|
"current-location-filled",
|
|
5385
5391
|
"dashboard-filled",
|
|
5392
|
+
"database-filled",
|
|
5386
5393
|
"device-cctv-filled",
|
|
5387
5394
|
"device-desktop-filled",
|
|
5395
|
+
"device-floppy-filled",
|
|
5396
|
+
"device-gamepad-2-filled",
|
|
5388
5397
|
"device-gamepad-3-filled",
|
|
5389
5398
|
"device-gamepad-filled",
|
|
5390
5399
|
"device-heart-monitor-filled",
|
|
@@ -5415,6 +5424,9 @@ export default [
|
|
|
5415
5424
|
"directions-filled",
|
|
5416
5425
|
"disc-filled",
|
|
5417
5426
|
"discount-filled",
|
|
5427
|
+
"dots-vertical-filled",
|
|
5428
|
+
"dots-filled",
|
|
5429
|
+
"download-filled",
|
|
5418
5430
|
"drop-circle-filled",
|
|
5419
5431
|
"droplet-half-2-filled",
|
|
5420
5432
|
"droplet-half-filled",
|
|
@@ -5425,6 +5437,7 @@ export default [
|
|
|
5425
5437
|
"ease-in-control-point-filled",
|
|
5426
5438
|
"ease-in-out-control-points-filled",
|
|
5427
5439
|
"ease-out-control-point-filled",
|
|
5440
|
+
"edit-filled",
|
|
5428
5441
|
"egg-cracked-filled",
|
|
5429
5442
|
"egg-fried-filled",
|
|
5430
5443
|
"egg-filled",
|
|
@@ -5437,6 +5450,7 @@ export default [
|
|
|
5437
5450
|
"exclamation-circle-filled",
|
|
5438
5451
|
"explicit-filled",
|
|
5439
5452
|
"exposure-filled",
|
|
5453
|
+
"external-link-filled",
|
|
5440
5454
|
"eye-table-filled",
|
|
5441
5455
|
"eye-filled",
|
|
5442
5456
|
"eyeglass-2-filled",
|
|
@@ -5524,6 +5538,7 @@ export default [
|
|
|
5524
5538
|
"guitar-pick-filled",
|
|
5525
5539
|
"hanger-2-filled",
|
|
5526
5540
|
"headphones-filled",
|
|
5541
|
+
"headset-filled",
|
|
5527
5542
|
"heart-broken-filled",
|
|
5528
5543
|
"heart-filled",
|
|
5529
5544
|
"helicopter-landing-filled",
|
|
@@ -5534,6 +5549,7 @@ export default [
|
|
|
5534
5549
|
"help-square-rounded-filled",
|
|
5535
5550
|
"help-square-filled",
|
|
5536
5551
|
"help-triangle-filled",
|
|
5552
|
+
"help-filled",
|
|
5537
5553
|
"hexagon-letter-a-filled",
|
|
5538
5554
|
"hexagon-letter-b-filled",
|
|
5539
5555
|
"hexagon-letter-c-filled",
|
|
@@ -5573,10 +5589,12 @@ export default [
|
|
|
5573
5589
|
"hexagon-number-9-filled",
|
|
5574
5590
|
"hexagon-plus-filled",
|
|
5575
5591
|
"hexagon-filled",
|
|
5592
|
+
"home-2-filled",
|
|
5576
5593
|
"home-filled",
|
|
5577
5594
|
"hospital-circle-filled",
|
|
5578
5595
|
"hourglass-filled",
|
|
5579
5596
|
"icons-filled",
|
|
5597
|
+
"id-filled",
|
|
5580
5598
|
"info-circle-filled",
|
|
5581
5599
|
"info-hexagon-filled",
|
|
5582
5600
|
"info-octagon-filled",
|
|
@@ -5647,6 +5665,10 @@ export default [
|
|
|
5647
5665
|
"library-plus-filled",
|
|
5648
5666
|
"library-filled",
|
|
5649
5667
|
"lifebuoy-filled",
|
|
5668
|
+
"link-filled",
|
|
5669
|
+
"list-check-filled",
|
|
5670
|
+
"list-details-filled",
|
|
5671
|
+
"list-filled",
|
|
5650
5672
|
"live-photo-filled",
|
|
5651
5673
|
"live-view-filled",
|
|
5652
5674
|
"location-filled",
|
|
@@ -5663,11 +5685,13 @@ export default [
|
|
|
5663
5685
|
"medical-cross-filled",
|
|
5664
5686
|
"meeple-filled",
|
|
5665
5687
|
"melon-filled",
|
|
5688
|
+
"menu-2-filled",
|
|
5666
5689
|
"message-2-filled",
|
|
5667
5690
|
"message-chatbot-filled",
|
|
5668
5691
|
"message-circle-filled",
|
|
5669
5692
|
"message-report-filled",
|
|
5670
5693
|
"message-filled",
|
|
5694
|
+
"messages-filled",
|
|
5671
5695
|
"meteor-filled",
|
|
5672
5696
|
"michelin-star-filled",
|
|
5673
5697
|
"mickey-filled",
|
|
@@ -5706,6 +5730,7 @@ export default [
|
|
|
5706
5730
|
"panorama-vertical-filled",
|
|
5707
5731
|
"parking-circle-filled",
|
|
5708
5732
|
"paw-filled",
|
|
5733
|
+
"pencil-filled",
|
|
5709
5734
|
"pennant-2-filled",
|
|
5710
5735
|
"pennant-filled",
|
|
5711
5736
|
"pentagon-filled",
|
|
@@ -5752,6 +5777,7 @@ export default [
|
|
|
5752
5777
|
"player-track-next-filled",
|
|
5753
5778
|
"player-track-prev-filled",
|
|
5754
5779
|
"playlist-filled",
|
|
5780
|
+
"plus-filled",
|
|
5755
5781
|
"point-filled",
|
|
5756
5782
|
"pointer-filled",
|
|
5757
5783
|
"polaroid-filled",
|
|
@@ -5784,9 +5810,13 @@ export default [
|
|
|
5784
5810
|
"rosette-filled",
|
|
5785
5811
|
"salad-filled",
|
|
5786
5812
|
"satellite-filled",
|
|
5813
|
+
"scale-filled",
|
|
5814
|
+
"school-filled",
|
|
5787
5815
|
"scuba-diving-tank-filled",
|
|
5816
|
+
"search-filled",
|
|
5788
5817
|
"section-filled",
|
|
5789
5818
|
"seedling-filled",
|
|
5819
|
+
"send-filled",
|
|
5790
5820
|
"settings-filled",
|
|
5791
5821
|
"shield-check-filled",
|
|
5792
5822
|
"shield-checkered-filled",
|
|
@@ -5954,10 +5984,12 @@ export default [
|
|
|
5954
5984
|
"test-pipe-2-filled",
|
|
5955
5985
|
"thumb-down-filled",
|
|
5956
5986
|
"thumb-up-filled",
|
|
5987
|
+
"ticket-filled",
|
|
5957
5988
|
"tilt-shift-filled",
|
|
5958
5989
|
"timeline-event-filled",
|
|
5959
5990
|
"toggle-left-filled",
|
|
5960
5991
|
"toggle-right-filled",
|
|
5992
|
+
"tools-kitchen-2-filled",
|
|
5961
5993
|
"train-filled",
|
|
5962
5994
|
"transform-filled",
|
|
5963
5995
|
"transition-bottom-filled",
|
|
@@ -5982,8 +6014,10 @@ export default [
|
|
|
5982
6014
|
"windmill-filled",
|
|
5983
6015
|
"windsock-filled",
|
|
5984
6016
|
"woman-filled",
|
|
6017
|
+
"world-filled",
|
|
5985
6018
|
"writing-sign-filled",
|
|
5986
6019
|
"writing-filled",
|
|
6020
|
+
"x-filled",
|
|
5987
6021
|
"xbox-a-filled",
|
|
5988
6022
|
"xbox-b-filled",
|
|
5989
6023
|
"xbox-x-filled",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.38.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.",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dist"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@tabler/icons": ""
|
|
44
|
+
"@tabler/icons": "3.38.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@sveltejs/package": "^2.2.7",
|