@tabler/icons-svelte 3.38.0 → 3.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons/ai-agent.svelte +6 -0
- package/dist/icons/ai-agent.svelte.d.ts +17 -0
- package/dist/icons/ai-agents.svelte +6 -0
- package/dist/icons/ai-agents.svelte.d.ts +17 -0
- package/dist/icons/ai-gateway.svelte +6 -0
- package/dist/icons/ai-gateway.svelte.d.ts +17 -0
- package/dist/icons/api-book.svelte +6 -0
- package/dist/icons/api-book.svelte.d.ts +17 -0
- package/dist/icons/bot-id.svelte +6 -0
- package/dist/icons/bot-id.svelte.d.ts +17 -0
- package/dist/icons/brand-infakt.svelte +6 -0
- package/dist/icons/brand-infakt.svelte.d.ts +17 -0
- package/dist/icons/canary.svelte +6 -0
- package/dist/icons/canary.svelte.d.ts +17 -0
- package/dist/icons/circle-open-arrow-down.svelte +6 -0
- package/dist/icons/circle-open-arrow-down.svelte.d.ts +17 -0
- package/dist/icons/circle-open-arrow-left.svelte +6 -0
- package/dist/icons/circle-open-arrow-left.svelte.d.ts +17 -0
- package/dist/icons/circle-open-arrow-right.svelte +6 -0
- package/dist/icons/circle-open-arrow-right.svelte.d.ts +17 -0
- package/dist/icons/circle-open-arrow-up.svelte +6 -0
- package/dist/icons/circle-open-arrow-up.svelte.d.ts +17 -0
- package/dist/icons/circle-plus-minus.svelte +6 -0
- package/dist/icons/circle-plus-minus.svelte.d.ts +17 -0
- package/dist/icons/codeblock.svelte +6 -0
- package/dist/icons/codeblock.svelte.d.ts +17 -0
- package/dist/icons/connection.svelte +6 -0
- package/dist/icons/connection.svelte.d.ts +17 -0
- package/dist/icons/credits.svelte +6 -0
- package/dist/icons/credits.svelte.d.ts +17 -0
- package/dist/icons/firewall-check.svelte +6 -0
- package/dist/icons/firewall-check.svelte.d.ts +17 -0
- package/dist/icons/firewall-flame.svelte +6 -0
- package/dist/icons/firewall-flame.svelte.d.ts +17 -0
- package/dist/icons/home-lock.svelte +6 -0
- package/dist/icons/home-lock.svelte.d.ts +17 -0
- package/dist/icons/home-shield.svelte +1 -1
- package/dist/icons/image-generation.svelte +6 -0
- package/dist/icons/image-generation.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +36 -0
- package/dist/icons/index.js +36 -0
- package/dist/icons/map-lock.svelte +6 -0
- package/dist/icons/map-lock.svelte.d.ts +17 -0
- package/dist/icons/map-shield.svelte +6 -0
- package/dist/icons/map-shield.svelte.d.ts +17 -0
- package/dist/icons/mesh.svelte +6 -0
- package/dist/icons/mesh.svelte.d.ts +17 -0
- package/dist/icons/microfrontends.svelte +6 -0
- package/dist/icons/microfrontends.svelte.d.ts +17 -0
- package/dist/icons/middleware.svelte +6 -0
- package/dist/icons/middleware.svelte.d.ts +17 -0
- package/dist/icons/queue-pop-in.svelte +6 -0
- package/dist/icons/queue-pop-in.svelte.d.ts +17 -0
- package/dist/icons/queue-pop-out.svelte +6 -0
- package/dist/icons/queue-pop-out.svelte.d.ts +17 -0
- package/dist/icons/scan-traces.svelte +6 -0
- package/dist/icons/scan-traces.svelte.d.ts +17 -0
- package/dist/icons/serverless.svelte +6 -0
- package/dist/icons/serverless.svelte.d.ts +17 -0
- package/dist/icons/sort-ascending-2.svelte +1 -1
- package/dist/icons/sort-descending-2.svelte +1 -1
- package/dist/icons/stroke-curved.svelte +6 -0
- package/dist/icons/stroke-curved.svelte.d.ts +17 -0
- package/dist/icons/stroke-dynamic.svelte +6 -0
- package/dist/icons/stroke-dynamic.svelte.d.ts +17 -0
- package/dist/icons/stroke-straight.svelte +6 -0
- package/dist/icons/stroke-straight.svelte.d.ts +17 -0
- package/dist/icons/trending-up-down.svelte +6 -0
- package/dist/icons/trending-up-down.svelte.d.ts +17 -0
- package/dist/icons/user-key.svelte +6 -0
- package/dist/icons/user-key.svelte.d.ts +17 -0
- package/dist/icons/vip-2.svelte +6 -0
- package/dist/icons/vip-2.svelte.d.ts +17 -0
- package/dist/icons/world-map.svelte +6 -0
- package/dist/icons/world-map.svelte.d.ts +17 -0
- package/dist/icons/zero-config.svelte +6 -0
- package/dist/icons/zero-config.svelte.d.ts +17 -0
- package/dist/icons-list.js +36 -0
- package/package.json +3 -3
|
@@ -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 ScanTracesProps = typeof __propDef.props;
|
|
13
|
+
export type ScanTracesEvents = typeof __propDef.events;
|
|
14
|
+
export type ScanTracesSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ScanTraces extends SvelteComponentTyped<ScanTracesProps, ScanTracesEvents, ScanTracesSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8 19l3.03 1.748a2 2 0 0 0 1.94 0l6 -3.843a2 2 0 0 0 1.03 -1.753v-6.152l-8 3l-8 3v-6.405c0 -.728 .394 -1.399 1.03 -1.752l6 -3.582a2.05 2.05 0 0 1 2 0l2.97 1.739" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="serverless" {...$$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 ServerlessProps = typeof __propDef.props;
|
|
13
|
+
export type ServerlessEvents = typeof __propDef.events;
|
|
14
|
+
export type ServerlessSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Serverless extends SvelteComponentTyped<ServerlessProps, ServerlessEvents, ServerlessSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M14 9l3 -3l3 3" }], ["path", { "d": "M5 14.5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5l0 -4" }], ["path", { "d": "M17 6v12" }]];
|
|
2
|
+
const iconNode = [["path", { "d": "M14 9l3 -3l3 3" }], ["path", { "d": "M5 5.5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5l0 -4" }], ["path", { "d": "M5 14.5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5l0 -4" }], ["path", { "d": "M17 6v12" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="sort-ascending-2" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M5 14.5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5l0 -4" }], ["path", { "d": "M14 15l3 3l3 -3" }], ["path", { "d": "M17 18v-12" }]];
|
|
2
|
+
const iconNode = [["path", { "d": "M5 5.5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5l0 -4" }], ["path", { "d": "M5 14.5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5l0 -4" }], ["path", { "d": "M14 15l3 3l3 -3" }], ["path", { "d": "M17 18v-12" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="sort-descending-2" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4 19h1.341a7 7 0 0 0 6.845 -5.533l.628 -2.934a7 7 0 0 1 6.846 -5.533h1.34" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="stroke-curved" {...$$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 StrokeCurvedProps = typeof __propDef.props;
|
|
13
|
+
export type StrokeCurvedEvents = typeof __propDef.events;
|
|
14
|
+
export type StrokeCurvedSlots = typeof __propDef.slots;
|
|
15
|
+
export default class StrokeCurved extends SvelteComponentTyped<StrokeCurvedProps, StrokeCurvedEvents, StrokeCurvedSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type StrokeDynamicProps = typeof __propDef.props;
|
|
13
|
+
export type StrokeDynamicEvents = typeof __propDef.events;
|
|
14
|
+
export type StrokeDynamicSlots = typeof __propDef.slots;
|
|
15
|
+
export default class StrokeDynamic extends SvelteComponentTyped<StrokeDynamicProps, StrokeDynamicEvents, StrokeDynamicSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type StrokeStraightProps = typeof __propDef.props;
|
|
13
|
+
export type StrokeStraightEvents = typeof __propDef.events;
|
|
14
|
+
export type StrokeStraightSlots = typeof __propDef.slots;
|
|
15
|
+
export default class StrokeStraight extends SvelteComponentTyped<StrokeStraightProps, StrokeStraightEvents, StrokeStraightSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M2 14l6 -6l4 4l9 -9" }], ["path", { "d": "M15 3h6v6" }], ["path", { "d": "M15 21h6v-6" }], ["path", { "d": "M21 21l-6 -6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="trending-up-down" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type TrendingUpDownProps = typeof __propDef.props;
|
|
13
|
+
export type TrendingUpDownEvents = typeof __propDef.events;
|
|
14
|
+
export type TrendingUpDownSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TrendingUpDown extends SvelteComponentTyped<TrendingUpDownProps, TrendingUpDownEvents, TrendingUpDownSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0" }], ["path", { "d": "M6 21v-2a4 4 0 0 1 4 -4h5" }], ["path", { "d": "M18.5 18.5l-3.5 3.5l-1.5 -1.5" }], ["path", { "d": "M18.554 18.414a2 2 0 1 1 2.828 -2.828a2 2 0 0 1 -2.828 2.828" }], ["path", { "d": "M16 19l1 1" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="user-key" {...$$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 UserKeyProps = typeof __propDef.props;
|
|
13
|
+
export type UserKeyEvents = typeof __propDef.events;
|
|
14
|
+
export type UserKeySlots = typeof __propDef.slots;
|
|
15
|
+
export default class UserKey extends SvelteComponentTyped<UserKeyProps, UserKeyEvents, UserKeySlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3 5h4" }], ["path", { "d": "M17 5h4" }], ["path", { "d": "M3 19h18" }], ["path", { "d": "M4 9l2 6h1l2 -6" }], ["path", { "d": "M12 10v5" }], ["path", { "d": "M16 15v-6h2a2 2 0 1 1 0 4h-2" }], ["path", { "d": "M10 5a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="vip-2" {...$$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 Vip2Props = typeof __propDef.props;
|
|
13
|
+
export type Vip2Events = typeof __propDef.events;
|
|
14
|
+
export type Vip2Slots = typeof __propDef.slots;
|
|
15
|
+
export default class Vip2 extends SvelteComponentTyped<Vip2Props, Vip2Events, Vip2Slots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M20 8h-2a2 2 0 0 0 -2 2a2 2 0 1 1 -4 0v-1a2 2 0 0 0 -2 -2h-1a2 2 0 0 1 -2 -2v-.5" }], ["path", { "d": "M3 12h3a2 2 0 0 1 2 2v.5a1.5 1.5 0 0 0 1.5 1.5a1.5 1.5 0 0 1 1.5 1.5v3.25" }], ["path", { "d": "M15 20.5v-3.5a2 2 0 0 1 2 -2h3.5" }], ["path", { "d": "M3 12a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="world-map" {...$$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 WorldMapProps = typeof __propDef.props;
|
|
13
|
+
export type WorldMapEvents = typeof __propDef.events;
|
|
14
|
+
export type WorldMapSlots = typeof __propDef.slots;
|
|
15
|
+
export default class WorldMap extends SvelteComponentTyped<WorldMapProps, WorldMapEvents, WorldMapSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type ZeroConfigProps = typeof __propDef.props;
|
|
13
|
+
export type ZeroConfigEvents = typeof __propDef.events;
|
|
14
|
+
export type ZeroConfigSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ZeroConfig extends SvelteComponentTyped<ZeroConfigProps, ZeroConfigEvents, ZeroConfigSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -44,6 +44,9 @@ export default [
|
|
|
44
44
|
"adjustments",
|
|
45
45
|
"aerial-lift",
|
|
46
46
|
"affiliate",
|
|
47
|
+
"ai-agent",
|
|
48
|
+
"ai-agents",
|
|
49
|
+
"ai-gateway",
|
|
47
50
|
"ai",
|
|
48
51
|
"air-balloon",
|
|
49
52
|
"air-conditioning-disabled",
|
|
@@ -127,6 +130,7 @@ export default [
|
|
|
127
130
|
"aperture",
|
|
128
131
|
"api-app-off",
|
|
129
132
|
"api-app",
|
|
133
|
+
"api-book",
|
|
130
134
|
"api-off",
|
|
131
135
|
"api",
|
|
132
136
|
"app-window",
|
|
@@ -569,6 +573,7 @@ export default [
|
|
|
569
573
|
"border-top-plus",
|
|
570
574
|
"border-top",
|
|
571
575
|
"border-vertical",
|
|
576
|
+
"bot-id",
|
|
572
577
|
"bottle-off",
|
|
573
578
|
"bottle",
|
|
574
579
|
"bounce-left",
|
|
@@ -779,6 +784,7 @@ export default [
|
|
|
779
784
|
"brand-hipchat",
|
|
780
785
|
"brand-html5",
|
|
781
786
|
"brand-inertia",
|
|
787
|
+
"brand-infakt",
|
|
782
788
|
"brand-instagram",
|
|
783
789
|
"brand-intercom",
|
|
784
790
|
"brand-itch",
|
|
@@ -1134,6 +1140,7 @@ export default [
|
|
|
1134
1140
|
"camera",
|
|
1135
1141
|
"camper",
|
|
1136
1142
|
"campfire",
|
|
1143
|
+
"canary",
|
|
1137
1144
|
"cancel",
|
|
1138
1145
|
"candle",
|
|
1139
1146
|
"candy-off",
|
|
@@ -1431,8 +1438,13 @@ export default [
|
|
|
1431
1438
|
"circle-number-8",
|
|
1432
1439
|
"circle-number-9",
|
|
1433
1440
|
"circle-off",
|
|
1441
|
+
"circle-open-arrow-down",
|
|
1442
|
+
"circle-open-arrow-left",
|
|
1443
|
+
"circle-open-arrow-right",
|
|
1444
|
+
"circle-open-arrow-up",
|
|
1434
1445
|
"circle-percentage",
|
|
1435
1446
|
"circle-plus-2",
|
|
1447
|
+
"circle-plus-minus",
|
|
1436
1448
|
"circle-plus",
|
|
1437
1449
|
"circle-rectangle-off",
|
|
1438
1450
|
"circle-rectangle",
|
|
@@ -1569,6 +1581,7 @@ export default [
|
|
|
1569
1581
|
"code-variable-plus",
|
|
1570
1582
|
"code-variable",
|
|
1571
1583
|
"code",
|
|
1584
|
+
"codeblock",
|
|
1572
1585
|
"coffee-off",
|
|
1573
1586
|
"coffee",
|
|
1574
1587
|
"coffin",
|
|
@@ -1611,6 +1624,7 @@ export default [
|
|
|
1611
1624
|
"confetti",
|
|
1612
1625
|
"confucius",
|
|
1613
1626
|
"congruent-to",
|
|
1627
|
+
"connection",
|
|
1614
1628
|
"container-off",
|
|
1615
1629
|
"container",
|
|
1616
1630
|
"contract",
|
|
@@ -1664,6 +1678,7 @@ export default [
|
|
|
1664
1678
|
"credit-card-pay",
|
|
1665
1679
|
"credit-card-refund",
|
|
1666
1680
|
"credit-card",
|
|
1681
|
+
"credits",
|
|
1667
1682
|
"cricket",
|
|
1668
1683
|
"crop-1-1",
|
|
1669
1684
|
"crop-16-9",
|
|
@@ -2340,6 +2355,8 @@ export default [
|
|
|
2340
2355
|
"fire-hydrant-off",
|
|
2341
2356
|
"fire-hydrant",
|
|
2342
2357
|
"firetruck",
|
|
2358
|
+
"firewall-check",
|
|
2359
|
+
"firewall-flame",
|
|
2343
2360
|
"first-aid-kit-off",
|
|
2344
2361
|
"first-aid-kit",
|
|
2345
2362
|
"fish-bone",
|
|
@@ -2686,6 +2703,7 @@ export default [
|
|
|
2686
2703
|
"home-heart",
|
|
2687
2704
|
"home-infinity",
|
|
2688
2705
|
"home-link",
|
|
2706
|
+
"home-lock",
|
|
2689
2707
|
"home-minus",
|
|
2690
2708
|
"home-move",
|
|
2691
2709
|
"home-off",
|
|
@@ -2748,6 +2766,7 @@ export default [
|
|
|
2748
2766
|
"id-off",
|
|
2749
2767
|
"id",
|
|
2750
2768
|
"ikosaedr",
|
|
2769
|
+
"image-generation",
|
|
2751
2770
|
"image-in-picture",
|
|
2752
2771
|
"inbox-off",
|
|
2753
2772
|
"inbox",
|
|
@@ -3098,6 +3117,7 @@ export default [
|
|
|
3098
3117
|
"map-east",
|
|
3099
3118
|
"map-exclamation",
|
|
3100
3119
|
"map-heart",
|
|
3120
|
+
"map-lock",
|
|
3101
3121
|
"map-minus",
|
|
3102
3122
|
"map-north",
|
|
3103
3123
|
"map-off",
|
|
@@ -3130,6 +3150,7 @@ export default [
|
|
|
3130
3150
|
"map-route",
|
|
3131
3151
|
"map-search",
|
|
3132
3152
|
"map-share",
|
|
3153
|
+
"map-shield",
|
|
3133
3154
|
"map-south",
|
|
3134
3155
|
"map-star",
|
|
3135
3156
|
"map-up",
|
|
@@ -3206,6 +3227,7 @@ export default [
|
|
|
3206
3227
|
"menu-deep",
|
|
3207
3228
|
"menu-order",
|
|
3208
3229
|
"menu",
|
|
3230
|
+
"mesh",
|
|
3209
3231
|
"message-2-bolt",
|
|
3210
3232
|
"message-2-cancel",
|
|
3211
3233
|
"message-2-check",
|
|
@@ -3288,6 +3310,7 @@ export default [
|
|
|
3288
3310
|
"michelin-star-green",
|
|
3289
3311
|
"michelin-star",
|
|
3290
3312
|
"mickey",
|
|
3313
|
+
"microfrontends",
|
|
3291
3314
|
"microphone-2-off",
|
|
3292
3315
|
"microphone-2",
|
|
3293
3316
|
"microphone-off",
|
|
@@ -3296,6 +3319,7 @@ export default [
|
|
|
3296
3319
|
"microscope",
|
|
3297
3320
|
"microwave-off",
|
|
3298
3321
|
"microwave",
|
|
3322
|
+
"middleware",
|
|
3299
3323
|
"military-award",
|
|
3300
3324
|
"military-rank",
|
|
3301
3325
|
"milk-off",
|
|
@@ -3901,6 +3925,8 @@ export default [
|
|
|
3901
3925
|
"qrcode-off",
|
|
3902
3926
|
"qrcode",
|
|
3903
3927
|
"question-mark",
|
|
3928
|
+
"queue-pop-in",
|
|
3929
|
+
"queue-pop-out",
|
|
3904
3930
|
"quote-off",
|
|
3905
3931
|
"quote",
|
|
3906
3932
|
"quotes",
|
|
@@ -4078,6 +4104,7 @@ export default [
|
|
|
4078
4104
|
"scale",
|
|
4079
4105
|
"scan-eye",
|
|
4080
4106
|
"scan-position",
|
|
4107
|
+
"scan-traces",
|
|
4081
4108
|
"scan",
|
|
4082
4109
|
"schema-off",
|
|
4083
4110
|
"schema",
|
|
@@ -4125,6 +4152,7 @@ export default [
|
|
|
4125
4152
|
"server-off",
|
|
4126
4153
|
"server-spark",
|
|
4127
4154
|
"server",
|
|
4155
|
+
"serverless",
|
|
4128
4156
|
"servicemark",
|
|
4129
4157
|
"settings-2",
|
|
4130
4158
|
"settings-ai",
|
|
@@ -4494,6 +4522,9 @@ export default [
|
|
|
4494
4522
|
"stretching-2",
|
|
4495
4523
|
"stretching",
|
|
4496
4524
|
"strikethrough",
|
|
4525
|
+
"stroke-curved",
|
|
4526
|
+
"stroke-dynamic",
|
|
4527
|
+
"stroke-straight",
|
|
4497
4528
|
"submarine",
|
|
4498
4529
|
"subscript",
|
|
4499
4530
|
"subtask",
|
|
@@ -4711,6 +4742,7 @@ export default [
|
|
|
4711
4742
|
"trending-down",
|
|
4712
4743
|
"trending-up-2",
|
|
4713
4744
|
"trending-up-3",
|
|
4745
|
+
"trending-up-down",
|
|
4714
4746
|
"trending-up",
|
|
4715
4747
|
"triangle-inverted",
|
|
4716
4748
|
"triangle-minus-2",
|
|
@@ -4764,6 +4796,7 @@ export default [
|
|
|
4764
4796
|
"user-exclamation",
|
|
4765
4797
|
"user-heart",
|
|
4766
4798
|
"user-hexagon",
|
|
4799
|
+
"user-key",
|
|
4767
4800
|
"user-minus",
|
|
4768
4801
|
"user-off",
|
|
4769
4802
|
"user-pause",
|
|
@@ -4824,6 +4857,7 @@ export default [
|
|
|
4824
4857
|
"viewport-tall",
|
|
4825
4858
|
"viewport-wide",
|
|
4826
4859
|
"vinyl",
|
|
4860
|
+
"vip-2",
|
|
4827
4861
|
"vip-off",
|
|
4828
4862
|
"vip",
|
|
4829
4863
|
"virus-off",
|
|
@@ -4923,6 +4957,7 @@ export default [
|
|
|
4923
4957
|
"world-heart",
|
|
4924
4958
|
"world-latitude",
|
|
4925
4959
|
"world-longitude",
|
|
4960
|
+
"world-map",
|
|
4926
4961
|
"world-minus",
|
|
4927
4962
|
"world-off",
|
|
4928
4963
|
"world-pause",
|
|
@@ -4954,6 +4989,7 @@ export default [
|
|
|
4954
4989
|
"yoga",
|
|
4955
4990
|
"zeppelin-off",
|
|
4956
4991
|
"zeppelin",
|
|
4992
|
+
"zero-config",
|
|
4957
4993
|
"zip",
|
|
4958
4994
|
"zodiac-aquarius",
|
|
4959
4995
|
"zodiac-aries",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.40.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": "3.
|
|
44
|
+
"@tabler/icons": "3.40.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@sveltejs/package": "^2.2.7",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"build:icons": "node build.mjs",
|
|
63
63
|
"build:package": "svelte-package --input ./src",
|
|
64
64
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
65
|
-
"clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
|
|
65
|
+
"clean": "find dist -mindepth 1 -delete 2>/dev/null; rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
|
|
66
66
|
"test": "vitest run",
|
|
67
67
|
"imports-check": "attw $(npm pack)"
|
|
68
68
|
}
|