@tabler/icons-svelte-runes 3.41.0 → 3.42.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/README.md +2 -2
- package/dist/icons/brand-stellar.svelte +14 -0
- package/dist/icons/brand-stellar.svelte.d.ts +8 -0
- package/dist/icons/brand-vechain.svelte +14 -0
- package/dist/icons/brand-vechain.svelte.d.ts +8 -0
- package/dist/icons/clef-staff.svelte +14 -0
- package/dist/icons/clef-staff.svelte.d.ts +8 -0
- package/dist/icons/clef.svelte +14 -0
- package/dist/icons/clef.svelte.d.ts +8 -0
- package/dist/icons/currency-husd.svelte +14 -0
- package/dist/icons/currency-husd.svelte.d.ts +8 -0
- package/dist/icons/currency-tether.svelte +14 -0
- package/dist/icons/currency-tether.svelte.d.ts +8 -0
- package/dist/icons/currency-zcash.svelte +14 -0
- package/dist/icons/currency-zcash.svelte.d.ts +8 -0
- package/dist/icons/device-computer-camera-2.svelte +14 -0
- package/dist/icons/device-computer-camera-2.svelte.d.ts +8 -0
- package/dist/icons/door-hanger.svelte +14 -0
- package/dist/icons/door-hanger.svelte.d.ts +8 -0
- package/dist/icons/earphone-bluetooth.svelte +14 -0
- package/dist/icons/earphone-bluetooth.svelte.d.ts +8 -0
- package/dist/icons/grape.svelte +14 -0
- package/dist/icons/grape.svelte.d.ts +8 -0
- package/dist/icons/hammer-drill.svelte +14 -0
- package/dist/icons/hammer-drill.svelte.d.ts +8 -0
- package/dist/icons/index.d.ts +18 -0
- package/dist/icons/index.js +18 -0
- package/dist/icons/infinity-2.svelte +14 -0
- package/dist/icons/infinity-2.svelte.d.ts +8 -0
- package/dist/icons/lawn-mower.svelte +14 -0
- package/dist/icons/lawn-mower.svelte.d.ts +8 -0
- package/dist/icons/loader-4.svelte +14 -0
- package/dist/icons/loader-4.svelte.d.ts +8 -0
- package/dist/icons/mosque.svelte +14 -0
- package/dist/icons/mosque.svelte.d.ts +8 -0
- package/dist/icons/pendulum.svelte +14 -0
- package/dist/icons/pendulum.svelte.d.ts +8 -0
- package/dist/icons/plunger.svelte +14 -0
- package/dist/icons/plunger.svelte.d.ts +8 -0
- package/dist/icons/x-mark.svelte +1 -1
- package/dist/icons-list.js +18 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Tabler Icons for Svelte (Runes)
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/packages/og-package-svelte.png" alt="Tabler Icons" width="838">
|
|
4
|
+
<a href="https://tabler.io/icons?ref=tabler-icons-readme"><img src="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/packages/og-package-svelte.png" alt="Tabler Icons" width="838"></a>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
@@ -9,7 +9,7 @@ Implementation of the Tabler Icons library for Svelte 5+ using the new runes rea
|
|
|
9
9
|
<p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
12
|
-
<a href="https://tabler
|
|
12
|
+
<a href="https://tabler.io/icons"><strong>Browse all icons at tabler.io →</strong></a>
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
<p align="center">
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M21 6l-17 7v-1c-.004 -1.259 .234 -2.5 .81 -3.62c1.363 -2.686 4.178 -4.378 7.19 -4.38a7.5 7.5 0 0 1 2.61 .46"}],["path",{"d":"M9.38 19.54a8 8 0 0 0 9.81 -3.92c.576 -1.12 .814 -2.361 .81 -3.62v-1l-17 7"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="brand-stellar" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const BrandStellar: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type BrandStellar = ReturnType<typeof BrandStellar>;
|
|
8
|
+
export default BrandStellar;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M20 4l-8 16l-8 -16h2.028a4 4 0 0 1 3.578 2.211l2.894 5.789"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="brand-vechain" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const BrandVechain: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type BrandVechain = ReturnType<typeof BrandVechain>;
|
|
8
|
+
export default BrandVechain;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M15 15h6"}],["path",{"d":"M15 11h6"}],["path",{"d":"M11 19h10"}],["path",{"d":"M11 12a4.16 4.16 0 0 1 -5.62 3.89a3.78 3.78 0 0 1 -2.38 -3.39a3.42 3.42 0 0 1 2.34 -3.38l3.79 -1.42a2.89 2.89 0 0 0 1.87 -2.7a2 2 0 0 0 -2 -2a2 2 0 0 0 -2 2v14a2 2 0 0 1 -2 2a2 2 0 0 1 -2 -2"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="clef-staff" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const ClefStaff: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type ClefStaff = ReturnType<typeof ClefStaff>;
|
|
8
|
+
export default ClefStaff;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M16 12a4.16 4.16 0 0 1 -5.62 3.89a3.78 3.78 0 0 1 -2.38 -3.39a3.42 3.42 0 0 1 2.34 -3.38l3.79 -1.42a2.89 2.89 0 0 0 1.87 -2.7a2 2 0 1 0 -4 0v14a2 2 0 1 1 -4 0"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="clef" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const Clef: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Clef = ReturnType<typeof Clef>;
|
|
8
|
+
export default Clef;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M7 20v-5"}],["path",{"d":"M17 9v-5"}],["path",{"d":"M17 20v-6a2 2 0 0 0 -2 -2h-6a2 2 0 0 1 -2 -2v-6"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="currency-husd" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const CurrencyHusd: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type CurrencyHusd = ReturnType<typeof CurrencyHusd>;
|
|
8
|
+
export default CurrencyHusd;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M4 11a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"}],["path",{"d":"M12 20v-16"}],["path",{"d":"M4 4h16"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="currency-tether" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const CurrencyTether: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type CurrencyTether = ReturnType<typeof CurrencyTether>;
|
|
8
|
+
export default CurrencyTether;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M7 6h10l-10 12h10"}],["path",{"d":"M12 4v2"}],["path",{"d":"M12 18v2"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="currency-zcash" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const CurrencyZcash: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type CurrencyZcash = ReturnType<typeof CurrencyZcash>;
|
|
8
|
+
export default CurrencyZcash;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M17 14h-10a4 4 0 0 1 -4 -4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4a4 4 0 0 1 -4 4"}],["path",{"d":"M15 14h-6v4h6v-4"}],["path",{"d":"M17 18h-10"}],["path",{"d":"M12 10.02v.01"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="device-computer-camera-2" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const DeviceComputerCamera2: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type DeviceComputerCamera2 = ReturnType<typeof DeviceComputerCamera2>;
|
|
8
|
+
export default DeviceComputerCamera2;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M12 3a7 7 0 0 0 -5.48 2.64a1 1 0 0 0 .31 1.49l1.76 1a1 1 0 0 0 1.22 -.13a3 3 0 0 1 2.82 -.88a3.09 3.09 0 0 1 2.37 3.01v.87l-9.2 1.84a1 1 0 0 0 -.8 1v6.16a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-9.72a7.18 7.18 0 0 0 -7 -7.28"}],["path",{"d":"M12 17v.01"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="door-hanger" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const DoorHanger: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type DoorHanger = ReturnType<typeof DoorHanger>;
|
|
8
|
+
export default DoorHanger;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M6.57 12.77a6.9 6.9 0 0 1 -.57 -2.77a7 7 0 0 1 14 0"}],["path",{"d":"M9 16l-1 1"}],["path",{"d":"M10.83 19.83l6.36 -6.37a1 1 0 0 0 0 -1.41l-4.19 -4.24a1 1 0 0 0 -1.41 0l-6.42 6.36a4 4 0 0 0 0 5.66a4 4 0 0 0 5.66 0"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="earphone-bluetooth" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const EarphoneBluetooth: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type EarphoneBluetooth = ReturnType<typeof EarphoneBluetooth>;
|
|
8
|
+
export default EarphoneBluetooth;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M13 3a14.5 14.5 0 0 0 -1 6"}],["path",{"d":"M12 8.9s-2.77 .52 -4.1 -.8s-.8 -4 -.8 -4s2.57 -.53 3.88 .8s1.02 4 1.02 4"}],["path",{"d":"M14 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0"}],["path",{"d":"M14 17a2 2 0 1 1 0 -4a2 2 0 0 1 0 4"}],["path",{"d":"M10 17a2 2 0 1 1 0 -4a2 2 0 0 1 0 4"}],["path",{"d":"M12 13a2 2 0 1 1 0 -4a2 2 0 0 1 0 4"}],["path",{"d":"M16 13a2 2 0 1 1 0 -4a2 2 0 0 1 0 4"}],["path",{"d":"M8 13a2 2 0 1 1 0 -4a2 2 0 0 1 0 4"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="grape" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const Grape: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Grape = ReturnType<typeof Grape>;
|
|
8
|
+
export default Grape;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M12 15v6"}],["path",{"d":"M16 5h4"}],["path",{"d":"M8 5h-4"}],["path",{"d":"M15 11h-6a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"}],["path",{"d":"M14 11h-4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-3"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="hammer-drill" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const HammerDrill: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type HammerDrill = ReturnType<typeof HammerDrill>;
|
|
8
|
+
export default HammerDrill;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -901,6 +901,7 @@ export { default as IconBrandSpotify } from './brand-spotify.svelte';
|
|
|
901
901
|
export { default as IconBrandStackoverflow } from './brand-stackoverflow.svelte';
|
|
902
902
|
export { default as IconBrandStackshare } from './brand-stackshare.svelte';
|
|
903
903
|
export { default as IconBrandSteam } from './brand-steam.svelte';
|
|
904
|
+
export { default as IconBrandStellar } from './brand-stellar.svelte';
|
|
904
905
|
export { default as IconBrandStocktwits } from './brand-stocktwits.svelte';
|
|
905
906
|
export { default as IconBrandStorj } from './brand-storj.svelte';
|
|
906
907
|
export { default as IconBrandStorybook } from './brand-storybook.svelte';
|
|
@@ -948,6 +949,7 @@ export { default as IconBrandUnity } from './brand-unity.svelte';
|
|
|
948
949
|
export { default as IconBrandUnsplash } from './brand-unsplash.svelte';
|
|
949
950
|
export { default as IconBrandUpwork } from './brand-upwork.svelte';
|
|
950
951
|
export { default as IconBrandValorant } from './brand-valorant.svelte';
|
|
952
|
+
export { default as IconBrandVechain } from './brand-vechain.svelte';
|
|
951
953
|
export { default as IconBrandVercel } from './brand-vercel.svelte';
|
|
952
954
|
export { default as IconBrandVimeo } from './brand-vimeo.svelte';
|
|
953
955
|
export { default as IconBrandVinted } from './brand-vinted.svelte';
|
|
@@ -1477,6 +1479,8 @@ export { default as IconCircuitSwitchOpen } from './circuit-switch-open.svelte';
|
|
|
1477
1479
|
export { default as IconCircuitVoltmeter } from './circuit-voltmeter.svelte';
|
|
1478
1480
|
export { default as IconClearAll } from './clear-all.svelte';
|
|
1479
1481
|
export { default as IconClearFormatting } from './clear-formatting.svelte';
|
|
1482
|
+
export { default as IconClefStaff } from './clef-staff.svelte';
|
|
1483
|
+
export { default as IconClef } from './clef.svelte';
|
|
1480
1484
|
export { default as IconClick } from './click.svelte';
|
|
1481
1485
|
export { default as IconCliffJumping } from './cliff-jumping.svelte';
|
|
1482
1486
|
export { default as IconClipboardCheck } from './clipboard-check.svelte';
|
|
@@ -1738,6 +1742,7 @@ export { default as IconCurrencyForint } from './currency-forint.svelte';
|
|
|
1738
1742
|
export { default as IconCurrencyFrank } from './currency-frank.svelte';
|
|
1739
1743
|
export { default as IconCurrencyGuarani } from './currency-guarani.svelte';
|
|
1740
1744
|
export { default as IconCurrencyHryvnia } from './currency-hryvnia.svelte';
|
|
1745
|
+
export { default as IconCurrencyHusd } from './currency-husd.svelte';
|
|
1741
1746
|
export { default as IconCurrencyIranianRial } from './currency-iranian-rial.svelte';
|
|
1742
1747
|
export { default as IconCurrencyKip } from './currency-kip.svelte';
|
|
1743
1748
|
export { default as IconCurrencyKroneCzech } from './currency-krone-czech.svelte';
|
|
@@ -1771,12 +1776,14 @@ export { default as IconCurrencySolana } from './currency-solana.svelte';
|
|
|
1771
1776
|
export { default as IconCurrencySom } from './currency-som.svelte';
|
|
1772
1777
|
export { default as IconCurrencyTaka } from './currency-taka.svelte';
|
|
1773
1778
|
export { default as IconCurrencyTenge } from './currency-tenge.svelte';
|
|
1779
|
+
export { default as IconCurrencyTether } from './currency-tether.svelte';
|
|
1774
1780
|
export { default as IconCurrencyTugrik } from './currency-tugrik.svelte';
|
|
1775
1781
|
export { default as IconCurrencyWon } from './currency-won.svelte';
|
|
1776
1782
|
export { default as IconCurrencyXrp } from './currency-xrp.svelte';
|
|
1777
1783
|
export { default as IconCurrencyYenOff } from './currency-yen-off.svelte';
|
|
1778
1784
|
export { default as IconCurrencyYen } from './currency-yen.svelte';
|
|
1779
1785
|
export { default as IconCurrencyYuan } from './currency-yuan.svelte';
|
|
1786
|
+
export { default as IconCurrencyZcash } from './currency-zcash.svelte';
|
|
1780
1787
|
export { default as IconCurrencyZloty } from './currency-zloty.svelte';
|
|
1781
1788
|
export { default as IconCurrency } from './currency.svelte';
|
|
1782
1789
|
export { default as IconCurrentLocationOff } from './current-location-off.svelte';
|
|
@@ -1827,6 +1834,7 @@ export { default as IconDeviceAudioTape } from './device-audio-tape.svelte';
|
|
|
1827
1834
|
export { default as IconDeviceCameraPhone } from './device-camera-phone.svelte';
|
|
1828
1835
|
export { default as IconDeviceCctvOff } from './device-cctv-off.svelte';
|
|
1829
1836
|
export { default as IconDeviceCctv } from './device-cctv.svelte';
|
|
1837
|
+
export { default as IconDeviceComputerCamera2 } from './device-computer-camera-2.svelte';
|
|
1830
1838
|
export { default as IconDeviceComputerCameraOff } from './device-computer-camera-off.svelte';
|
|
1831
1839
|
export { default as IconDeviceComputerCamera } from './device-computer-camera.svelte';
|
|
1832
1840
|
export { default as IconDeviceDesktopAnalytics } from './device-desktop-analytics.svelte';
|
|
@@ -2074,6 +2082,7 @@ export { default as IconDogBowl } from './dog-bowl.svelte';
|
|
|
2074
2082
|
export { default as IconDog } from './dog.svelte';
|
|
2075
2083
|
export { default as IconDoorEnter } from './door-enter.svelte';
|
|
2076
2084
|
export { default as IconDoorExit } from './door-exit.svelte';
|
|
2085
|
+
export { default as IconDoorHanger } from './door-hanger.svelte';
|
|
2077
2086
|
export { default as IconDoorOff } from './door-off.svelte';
|
|
2078
2087
|
export { default as IconDoor } from './door.svelte';
|
|
2079
2088
|
export { default as IconDotsCircleHorizontal } from './dots-circle-horizontal.svelte';
|
|
@@ -2118,6 +2127,7 @@ export { default as IconEPassport } from './e-passport.svelte';
|
|
|
2118
2127
|
export { default as IconEarOff } from './ear-off.svelte';
|
|
2119
2128
|
export { default as IconEarScan } from './ear-scan.svelte';
|
|
2120
2129
|
export { default as IconEar } from './ear.svelte';
|
|
2130
|
+
export { default as IconEarphoneBluetooth } from './earphone-bluetooth.svelte';
|
|
2121
2131
|
export { default as IconEaseInControlPoint } from './ease-in-control-point.svelte';
|
|
2122
2132
|
export { default as IconEaseInOutControlPoints } from './ease-in-out-control-points.svelte';
|
|
2123
2133
|
export { default as IconEaseInOut } from './ease-in-out.svelte';
|
|
@@ -2528,6 +2538,7 @@ export { default as IconGolf } from './golf.svelte';
|
|
|
2528
2538
|
export { default as IconGps } from './gps.svelte';
|
|
2529
2539
|
export { default as IconGradienter } from './gradienter.svelte';
|
|
2530
2540
|
export { default as IconGrain } from './grain.svelte';
|
|
2541
|
+
export { default as IconGrape } from './grape.svelte';
|
|
2531
2542
|
export { default as IconGraphOff } from './graph-off.svelte';
|
|
2532
2543
|
export { default as IconGraph } from './graph.svelte';
|
|
2533
2544
|
export { default as IconGrave2 } from './grave-2.svelte';
|
|
@@ -2553,6 +2564,7 @@ export { default as IconH3 } from './h-3.svelte';
|
|
|
2553
2564
|
export { default as IconH4 } from './h-4.svelte';
|
|
2554
2565
|
export { default as IconH5 } from './h-5.svelte';
|
|
2555
2566
|
export { default as IconH6 } from './h-6.svelte';
|
|
2567
|
+
export { default as IconHammerDrill } from './hammer-drill.svelte';
|
|
2556
2568
|
export { default as IconHammerOff } from './hammer-off.svelte';
|
|
2557
2569
|
export { default as IconHammer } from './hammer.svelte';
|
|
2558
2570
|
export { default as IconHandClickOff } from './hand-click-off.svelte';
|
|
@@ -2779,6 +2791,7 @@ export { default as IconInboxOff } from './inbox-off.svelte';
|
|
|
2779
2791
|
export { default as IconInbox } from './inbox.svelte';
|
|
2780
2792
|
export { default as IconIndentDecrease } from './indent-decrease.svelte';
|
|
2781
2793
|
export { default as IconIndentIncrease } from './indent-increase.svelte';
|
|
2794
|
+
export { default as IconInfinity2 } from './infinity-2.svelte';
|
|
2782
2795
|
export { default as IconInfinityOff } from './infinity-off.svelte';
|
|
2783
2796
|
export { default as IconInfinity } from './infinity.svelte';
|
|
2784
2797
|
export { default as IconInfoCircle } from './info-circle.svelte';
|
|
@@ -2860,6 +2873,7 @@ export { default as IconLaurelWreath1 } from './laurel-wreath-1.svelte';
|
|
|
2860
2873
|
export { default as IconLaurelWreath2 } from './laurel-wreath-2.svelte';
|
|
2861
2874
|
export { default as IconLaurelWreath3 } from './laurel-wreath-3.svelte';
|
|
2862
2875
|
export { default as IconLaurelWreath } from './laurel-wreath.svelte';
|
|
2876
|
+
export { default as IconLawnMower } from './lawn-mower.svelte';
|
|
2863
2877
|
export { default as IconLayersDifference } from './layers-difference.svelte';
|
|
2864
2878
|
export { default as IconLayersIntersect2 } from './layers-intersect-2.svelte';
|
|
2865
2879
|
export { default as IconLayersIntersect } from './layers-intersect.svelte';
|
|
@@ -3003,6 +3017,7 @@ export { default as IconLiveView } from './live-view.svelte';
|
|
|
3003
3017
|
export { default as IconLoadBalancer } from './load-balancer.svelte';
|
|
3004
3018
|
export { default as IconLoader2 } from './loader-2.svelte';
|
|
3005
3019
|
export { default as IconLoader3 } from './loader-3.svelte';
|
|
3020
|
+
export { default as IconLoader4 } from './loader-4.svelte';
|
|
3006
3021
|
export { default as IconLoaderQuarter } from './loader-quarter.svelte';
|
|
3007
3022
|
export { default as IconLoader } from './loader.svelte';
|
|
3008
3023
|
export { default as IconLocationBolt } from './location-bolt.svelte';
|
|
@@ -3405,6 +3420,7 @@ export { default as IconMoonOff } from './moon-off.svelte';
|
|
|
3405
3420
|
export { default as IconMoonStars } from './moon-stars.svelte';
|
|
3406
3421
|
export { default as IconMoon } from './moon.svelte';
|
|
3407
3422
|
export { default as IconMoped } from './moped.svelte';
|
|
3423
|
+
export { default as IconMosque } from './mosque.svelte';
|
|
3408
3424
|
export { default as IconMotorbike } from './motorbike.svelte';
|
|
3409
3425
|
export { default as IconMountainOff } from './mountain-off.svelte';
|
|
3410
3426
|
export { default as IconMountain } from './mountain.svelte';
|
|
@@ -3689,6 +3705,7 @@ export { default as IconPencilStar } from './pencil-star.svelte';
|
|
|
3689
3705
|
export { default as IconPencilUp } from './pencil-up.svelte';
|
|
3690
3706
|
export { default as IconPencilX } from './pencil-x.svelte';
|
|
3691
3707
|
export { default as IconPencil } from './pencil.svelte';
|
|
3708
|
+
export { default as IconPendulum } from './pendulum.svelte';
|
|
3692
3709
|
export { default as IconPennant2 } from './pennant-2.svelte';
|
|
3693
3710
|
export { default as IconPennantOff } from './pennant-off.svelte';
|
|
3694
3711
|
export { default as IconPennant } from './pennant.svelte';
|
|
@@ -3863,6 +3880,7 @@ export { default as IconPlugConnected } from './plug-connected.svelte';
|
|
|
3863
3880
|
export { default as IconPlugOff } from './plug-off.svelte';
|
|
3864
3881
|
export { default as IconPlugX } from './plug-x.svelte';
|
|
3865
3882
|
export { default as IconPlug } from './plug.svelte';
|
|
3883
|
+
export { default as IconPlunger } from './plunger.svelte';
|
|
3866
3884
|
export { default as IconPlusEqual } from './plus-equal.svelte';
|
|
3867
3885
|
export { default as IconPlusMinus } from './plus-minus.svelte';
|
|
3868
3886
|
export { default as IconPlus } from './plus.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -901,6 +901,7 @@ export { default as IconBrandSpotify } from './brand-spotify.svelte';
|
|
|
901
901
|
export { default as IconBrandStackoverflow } from './brand-stackoverflow.svelte';
|
|
902
902
|
export { default as IconBrandStackshare } from './brand-stackshare.svelte';
|
|
903
903
|
export { default as IconBrandSteam } from './brand-steam.svelte';
|
|
904
|
+
export { default as IconBrandStellar } from './brand-stellar.svelte';
|
|
904
905
|
export { default as IconBrandStocktwits } from './brand-stocktwits.svelte';
|
|
905
906
|
export { default as IconBrandStorj } from './brand-storj.svelte';
|
|
906
907
|
export { default as IconBrandStorybook } from './brand-storybook.svelte';
|
|
@@ -948,6 +949,7 @@ export { default as IconBrandUnity } from './brand-unity.svelte';
|
|
|
948
949
|
export { default as IconBrandUnsplash } from './brand-unsplash.svelte';
|
|
949
950
|
export { default as IconBrandUpwork } from './brand-upwork.svelte';
|
|
950
951
|
export { default as IconBrandValorant } from './brand-valorant.svelte';
|
|
952
|
+
export { default as IconBrandVechain } from './brand-vechain.svelte';
|
|
951
953
|
export { default as IconBrandVercel } from './brand-vercel.svelte';
|
|
952
954
|
export { default as IconBrandVimeo } from './brand-vimeo.svelte';
|
|
953
955
|
export { default as IconBrandVinted } from './brand-vinted.svelte';
|
|
@@ -1477,6 +1479,8 @@ export { default as IconCircuitSwitchOpen } from './circuit-switch-open.svelte';
|
|
|
1477
1479
|
export { default as IconCircuitVoltmeter } from './circuit-voltmeter.svelte';
|
|
1478
1480
|
export { default as IconClearAll } from './clear-all.svelte';
|
|
1479
1481
|
export { default as IconClearFormatting } from './clear-formatting.svelte';
|
|
1482
|
+
export { default as IconClefStaff } from './clef-staff.svelte';
|
|
1483
|
+
export { default as IconClef } from './clef.svelte';
|
|
1480
1484
|
export { default as IconClick } from './click.svelte';
|
|
1481
1485
|
export { default as IconCliffJumping } from './cliff-jumping.svelte';
|
|
1482
1486
|
export { default as IconClipboardCheck } from './clipboard-check.svelte';
|
|
@@ -1738,6 +1742,7 @@ export { default as IconCurrencyForint } from './currency-forint.svelte';
|
|
|
1738
1742
|
export { default as IconCurrencyFrank } from './currency-frank.svelte';
|
|
1739
1743
|
export { default as IconCurrencyGuarani } from './currency-guarani.svelte';
|
|
1740
1744
|
export { default as IconCurrencyHryvnia } from './currency-hryvnia.svelte';
|
|
1745
|
+
export { default as IconCurrencyHusd } from './currency-husd.svelte';
|
|
1741
1746
|
export { default as IconCurrencyIranianRial } from './currency-iranian-rial.svelte';
|
|
1742
1747
|
export { default as IconCurrencyKip } from './currency-kip.svelte';
|
|
1743
1748
|
export { default as IconCurrencyKroneCzech } from './currency-krone-czech.svelte';
|
|
@@ -1771,12 +1776,14 @@ export { default as IconCurrencySolana } from './currency-solana.svelte';
|
|
|
1771
1776
|
export { default as IconCurrencySom } from './currency-som.svelte';
|
|
1772
1777
|
export { default as IconCurrencyTaka } from './currency-taka.svelte';
|
|
1773
1778
|
export { default as IconCurrencyTenge } from './currency-tenge.svelte';
|
|
1779
|
+
export { default as IconCurrencyTether } from './currency-tether.svelte';
|
|
1774
1780
|
export { default as IconCurrencyTugrik } from './currency-tugrik.svelte';
|
|
1775
1781
|
export { default as IconCurrencyWon } from './currency-won.svelte';
|
|
1776
1782
|
export { default as IconCurrencyXrp } from './currency-xrp.svelte';
|
|
1777
1783
|
export { default as IconCurrencyYenOff } from './currency-yen-off.svelte';
|
|
1778
1784
|
export { default as IconCurrencyYen } from './currency-yen.svelte';
|
|
1779
1785
|
export { default as IconCurrencyYuan } from './currency-yuan.svelte';
|
|
1786
|
+
export { default as IconCurrencyZcash } from './currency-zcash.svelte';
|
|
1780
1787
|
export { default as IconCurrencyZloty } from './currency-zloty.svelte';
|
|
1781
1788
|
export { default as IconCurrency } from './currency.svelte';
|
|
1782
1789
|
export { default as IconCurrentLocationOff } from './current-location-off.svelte';
|
|
@@ -1827,6 +1834,7 @@ export { default as IconDeviceAudioTape } from './device-audio-tape.svelte';
|
|
|
1827
1834
|
export { default as IconDeviceCameraPhone } from './device-camera-phone.svelte';
|
|
1828
1835
|
export { default as IconDeviceCctvOff } from './device-cctv-off.svelte';
|
|
1829
1836
|
export { default as IconDeviceCctv } from './device-cctv.svelte';
|
|
1837
|
+
export { default as IconDeviceComputerCamera2 } from './device-computer-camera-2.svelte';
|
|
1830
1838
|
export { default as IconDeviceComputerCameraOff } from './device-computer-camera-off.svelte';
|
|
1831
1839
|
export { default as IconDeviceComputerCamera } from './device-computer-camera.svelte';
|
|
1832
1840
|
export { default as IconDeviceDesktopAnalytics } from './device-desktop-analytics.svelte';
|
|
@@ -2074,6 +2082,7 @@ export { default as IconDogBowl } from './dog-bowl.svelte';
|
|
|
2074
2082
|
export { default as IconDog } from './dog.svelte';
|
|
2075
2083
|
export { default as IconDoorEnter } from './door-enter.svelte';
|
|
2076
2084
|
export { default as IconDoorExit } from './door-exit.svelte';
|
|
2085
|
+
export { default as IconDoorHanger } from './door-hanger.svelte';
|
|
2077
2086
|
export { default as IconDoorOff } from './door-off.svelte';
|
|
2078
2087
|
export { default as IconDoor } from './door.svelte';
|
|
2079
2088
|
export { default as IconDotsCircleHorizontal } from './dots-circle-horizontal.svelte';
|
|
@@ -2118,6 +2127,7 @@ export { default as IconEPassport } from './e-passport.svelte';
|
|
|
2118
2127
|
export { default as IconEarOff } from './ear-off.svelte';
|
|
2119
2128
|
export { default as IconEarScan } from './ear-scan.svelte';
|
|
2120
2129
|
export { default as IconEar } from './ear.svelte';
|
|
2130
|
+
export { default as IconEarphoneBluetooth } from './earphone-bluetooth.svelte';
|
|
2121
2131
|
export { default as IconEaseInControlPoint } from './ease-in-control-point.svelte';
|
|
2122
2132
|
export { default as IconEaseInOutControlPoints } from './ease-in-out-control-points.svelte';
|
|
2123
2133
|
export { default as IconEaseInOut } from './ease-in-out.svelte';
|
|
@@ -2528,6 +2538,7 @@ export { default as IconGolf } from './golf.svelte';
|
|
|
2528
2538
|
export { default as IconGps } from './gps.svelte';
|
|
2529
2539
|
export { default as IconGradienter } from './gradienter.svelte';
|
|
2530
2540
|
export { default as IconGrain } from './grain.svelte';
|
|
2541
|
+
export { default as IconGrape } from './grape.svelte';
|
|
2531
2542
|
export { default as IconGraphOff } from './graph-off.svelte';
|
|
2532
2543
|
export { default as IconGraph } from './graph.svelte';
|
|
2533
2544
|
export { default as IconGrave2 } from './grave-2.svelte';
|
|
@@ -2553,6 +2564,7 @@ export { default as IconH3 } from './h-3.svelte';
|
|
|
2553
2564
|
export { default as IconH4 } from './h-4.svelte';
|
|
2554
2565
|
export { default as IconH5 } from './h-5.svelte';
|
|
2555
2566
|
export { default as IconH6 } from './h-6.svelte';
|
|
2567
|
+
export { default as IconHammerDrill } from './hammer-drill.svelte';
|
|
2556
2568
|
export { default as IconHammerOff } from './hammer-off.svelte';
|
|
2557
2569
|
export { default as IconHammer } from './hammer.svelte';
|
|
2558
2570
|
export { default as IconHandClickOff } from './hand-click-off.svelte';
|
|
@@ -2779,6 +2791,7 @@ export { default as IconInboxOff } from './inbox-off.svelte';
|
|
|
2779
2791
|
export { default as IconInbox } from './inbox.svelte';
|
|
2780
2792
|
export { default as IconIndentDecrease } from './indent-decrease.svelte';
|
|
2781
2793
|
export { default as IconIndentIncrease } from './indent-increase.svelte';
|
|
2794
|
+
export { default as IconInfinity2 } from './infinity-2.svelte';
|
|
2782
2795
|
export { default as IconInfinityOff } from './infinity-off.svelte';
|
|
2783
2796
|
export { default as IconInfinity } from './infinity.svelte';
|
|
2784
2797
|
export { default as IconInfoCircle } from './info-circle.svelte';
|
|
@@ -2860,6 +2873,7 @@ export { default as IconLaurelWreath1 } from './laurel-wreath-1.svelte';
|
|
|
2860
2873
|
export { default as IconLaurelWreath2 } from './laurel-wreath-2.svelte';
|
|
2861
2874
|
export { default as IconLaurelWreath3 } from './laurel-wreath-3.svelte';
|
|
2862
2875
|
export { default as IconLaurelWreath } from './laurel-wreath.svelte';
|
|
2876
|
+
export { default as IconLawnMower } from './lawn-mower.svelte';
|
|
2863
2877
|
export { default as IconLayersDifference } from './layers-difference.svelte';
|
|
2864
2878
|
export { default as IconLayersIntersect2 } from './layers-intersect-2.svelte';
|
|
2865
2879
|
export { default as IconLayersIntersect } from './layers-intersect.svelte';
|
|
@@ -3003,6 +3017,7 @@ export { default as IconLiveView } from './live-view.svelte';
|
|
|
3003
3017
|
export { default as IconLoadBalancer } from './load-balancer.svelte';
|
|
3004
3018
|
export { default as IconLoader2 } from './loader-2.svelte';
|
|
3005
3019
|
export { default as IconLoader3 } from './loader-3.svelte';
|
|
3020
|
+
export { default as IconLoader4 } from './loader-4.svelte';
|
|
3006
3021
|
export { default as IconLoaderQuarter } from './loader-quarter.svelte';
|
|
3007
3022
|
export { default as IconLoader } from './loader.svelte';
|
|
3008
3023
|
export { default as IconLocationBolt } from './location-bolt.svelte';
|
|
@@ -3405,6 +3420,7 @@ export { default as IconMoonOff } from './moon-off.svelte';
|
|
|
3405
3420
|
export { default as IconMoonStars } from './moon-stars.svelte';
|
|
3406
3421
|
export { default as IconMoon } from './moon.svelte';
|
|
3407
3422
|
export { default as IconMoped } from './moped.svelte';
|
|
3423
|
+
export { default as IconMosque } from './mosque.svelte';
|
|
3408
3424
|
export { default as IconMotorbike } from './motorbike.svelte';
|
|
3409
3425
|
export { default as IconMountainOff } from './mountain-off.svelte';
|
|
3410
3426
|
export { default as IconMountain } from './mountain.svelte';
|
|
@@ -3689,6 +3705,7 @@ export { default as IconPencilStar } from './pencil-star.svelte';
|
|
|
3689
3705
|
export { default as IconPencilUp } from './pencil-up.svelte';
|
|
3690
3706
|
export { default as IconPencilX } from './pencil-x.svelte';
|
|
3691
3707
|
export { default as IconPencil } from './pencil.svelte';
|
|
3708
|
+
export { default as IconPendulum } from './pendulum.svelte';
|
|
3692
3709
|
export { default as IconPennant2 } from './pennant-2.svelte';
|
|
3693
3710
|
export { default as IconPennantOff } from './pennant-off.svelte';
|
|
3694
3711
|
export { default as IconPennant } from './pennant.svelte';
|
|
@@ -3863,6 +3880,7 @@ export { default as IconPlugConnected } from './plug-connected.svelte';
|
|
|
3863
3880
|
export { default as IconPlugOff } from './plug-off.svelte';
|
|
3864
3881
|
export { default as IconPlugX } from './plug-x.svelte';
|
|
3865
3882
|
export { default as IconPlug } from './plug.svelte';
|
|
3883
|
+
export { default as IconPlunger } from './plunger.svelte';
|
|
3866
3884
|
export { default as IconPlusEqual } from './plus-equal.svelte';
|
|
3867
3885
|
export { default as IconPlusMinus } from './plus-minus.svelte';
|
|
3868
3886
|
export { default as IconPlus } from './plus.svelte';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M13.94 9.39a10 10 0 0 1 .232 -.218a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828a4 4 0 1 0 0 5.656a10 10 0 0 0 .234 -.219"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="infinity-2" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const Infinity2: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Infinity2 = ReturnType<typeof Infinity2>;
|
|
8
|
+
export default Infinity2;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M6 11h5.38a1 1 0 0 1 .9 .55l.72 1.45h5a1 1 0 0 1 1 1v2"}],["path",{"d":"M3 4h1.13a1 1 0 0 1 1 .86l1.59 11.14"}],["path",{"d":"M17 18h-8"}],["path",{"d":"M9 18a2 2 0 1 1 -4 0a2 2 0 0 1 4 0"}],["path",{"d":"M21 18a2 2 0 1 1 -4 0a2 2 0 0 1 4 0"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="lawn-mower" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const LawnMower: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type LawnMower = ReturnType<typeof LawnMower>;
|
|
8
|
+
export default LawnMower;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M12 21v-3m6.36 .36l-2.12 -2.12m4.76 -4.24h-3m.36 -6.36l-2.12 2.12m-4.24 -4.76v3m-6.36 -.36l2.12 2.12m-3.76 4.24h2m1 4.95l.71 -.71"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="loader-4" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const Loader4: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Loader4 = ReturnType<typeof Loader4>;
|
|
8
|
+
export default Loader4;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M13.5 5.49a1.764 1.764 0 0 1 -2.5 -2.49"}],["path",{"d":"M12 6v3"}],["path",{"d":"M19 21a8.9 8.9 0 0 0 1 -3.67c0 -2 -.92 -3.25 -3.24 -4.51a17.4 17.4 0 0 1 -4.76 -3.82a17.4 17.4 0 0 1 -4.76 3.82c-2.32 1.26 -3.24 2.55 -3.24 4.51a8.9 8.9 0 0 0 1 3.67h14"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="mosque" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const Mosque: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Mosque = ReturnType<typeof Mosque>;
|
|
8
|
+
export default Mosque;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M5 19a2 2 0 1 1 4 0a2 2 0 0 1 -4 0"}],["path",{"d":"M12 3l-4.4 14.09"}],["path",{"d":"M19 3h-14"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="pendulum" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const Pendulum: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Pendulum = ReturnType<typeof Pendulum>;
|
|
8
|
+
export default Pendulum;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Icon from '../Icon.svelte';
|
|
3
|
+
import type { IconNode, IconProps } from '../types.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
|
|
6
|
+
interface Props extends IconProps {
|
|
7
|
+
children?: Snippet;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let { children, ...props }: Props = $props();
|
|
11
|
+
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M12.71 14.12l7.81 -7.82a2 2 0 0 0 -2.82 -2.82l-7.82 7.81"}],["path",{"d":"M3.71 13.22l.7 -.71a5 5 0 0 1 7.08 0a5 5 0 0 1 0 7.08l-.71 .7"}],["path",{"d":"M3 12.5l8.5 8.5"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="plunger" {...props} iconNode={iconNode} {children} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IconProps } from '../types.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
interface Props extends IconProps {
|
|
4
|
+
children?: Snippet;
|
|
5
|
+
}
|
|
6
|
+
declare const Plunger: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Plunger = ReturnType<typeof Plunger>;
|
|
8
|
+
export default Plunger;
|
package/dist/icons/x-mark.svelte
CHANGED
|
@@ -9,6 +9,6 @@ interface Props extends IconProps {
|
|
|
9
9
|
|
|
10
10
|
let { children, ...props }: Props = $props();
|
|
11
11
|
|
|
12
|
-
const iconNode: IconNode = [["path",{"d":"M12 16l3.644 3.644a1.21 1.21 0 0 0 1.712 0l2.288 -2.288a1.21 1.21 0 0 0 0 -1.712l-3.644 -3.644l3.644 -3.644a1.21 1.21 0 0 0 0 -1.712l-2.288 -2.288a1.21 1.21 0 0 0 -1.712 0l-3.644 3.644l-3.644 -3.644a1.21 1.21 0 0 0 -1.712 0l-2.288 2.288a1.21 1.21 0 0 0 0 1.712l3.644 3.644l-3.644 3.644a1.21 1.21 0 0 0 0 1.712l2.288 2.288a1.21 1.21 0 0 0 1.712
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M12 16l3.644 3.644a1.21 1.21 0 0 0 1.712 0l2.288 -2.288a1.21 1.21 0 0 0 0 -1.712l-3.644 -3.644l3.644 -3.644a1.21 1.21 0 0 0 0 -1.712l-2.288 -2.288a1.21 1.21 0 0 0 -1.712 0l-3.644 3.644l-3.644 -3.644a1.21 1.21 0 0 0 -1.712 0l-2.288 2.288a1.21 1.21 0 0 0 0 1.712l3.644 3.644l-3.644 3.644a1.21 1.21 0 0 0 0 1.712l2.288 2.288a1.21 1.21 0 0 0 1.712 0l3.644 -3.644"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="x-mark" {...props} iconNode={iconNode} {children} />
|
package/dist/icons-list.js
CHANGED
|
@@ -902,6 +902,7 @@ export default [
|
|
|
902
902
|
"brand-stackoverflow",
|
|
903
903
|
"brand-stackshare",
|
|
904
904
|
"brand-steam",
|
|
905
|
+
"brand-stellar",
|
|
905
906
|
"brand-stocktwits",
|
|
906
907
|
"brand-storj",
|
|
907
908
|
"brand-storybook",
|
|
@@ -949,6 +950,7 @@ export default [
|
|
|
949
950
|
"brand-unsplash",
|
|
950
951
|
"brand-upwork",
|
|
951
952
|
"brand-valorant",
|
|
953
|
+
"brand-vechain",
|
|
952
954
|
"brand-vercel",
|
|
953
955
|
"brand-vimeo",
|
|
954
956
|
"brand-vinted",
|
|
@@ -1478,6 +1480,8 @@ export default [
|
|
|
1478
1480
|
"circuit-voltmeter",
|
|
1479
1481
|
"clear-all",
|
|
1480
1482
|
"clear-formatting",
|
|
1483
|
+
"clef-staff",
|
|
1484
|
+
"clef",
|
|
1481
1485
|
"click",
|
|
1482
1486
|
"cliff-jumping",
|
|
1483
1487
|
"clipboard-check",
|
|
@@ -1739,6 +1743,7 @@ export default [
|
|
|
1739
1743
|
"currency-frank",
|
|
1740
1744
|
"currency-guarani",
|
|
1741
1745
|
"currency-hryvnia",
|
|
1746
|
+
"currency-husd",
|
|
1742
1747
|
"currency-iranian-rial",
|
|
1743
1748
|
"currency-kip",
|
|
1744
1749
|
"currency-krone-czech",
|
|
@@ -1772,12 +1777,14 @@ export default [
|
|
|
1772
1777
|
"currency-som",
|
|
1773
1778
|
"currency-taka",
|
|
1774
1779
|
"currency-tenge",
|
|
1780
|
+
"currency-tether",
|
|
1775
1781
|
"currency-tugrik",
|
|
1776
1782
|
"currency-won",
|
|
1777
1783
|
"currency-xrp",
|
|
1778
1784
|
"currency-yen-off",
|
|
1779
1785
|
"currency-yen",
|
|
1780
1786
|
"currency-yuan",
|
|
1787
|
+
"currency-zcash",
|
|
1781
1788
|
"currency-zloty",
|
|
1782
1789
|
"currency",
|
|
1783
1790
|
"current-location-off",
|
|
@@ -1828,6 +1835,7 @@ export default [
|
|
|
1828
1835
|
"device-camera-phone",
|
|
1829
1836
|
"device-cctv-off",
|
|
1830
1837
|
"device-cctv",
|
|
1838
|
+
"device-computer-camera-2",
|
|
1831
1839
|
"device-computer-camera-off",
|
|
1832
1840
|
"device-computer-camera",
|
|
1833
1841
|
"device-desktop-analytics",
|
|
@@ -2075,6 +2083,7 @@ export default [
|
|
|
2075
2083
|
"dog",
|
|
2076
2084
|
"door-enter",
|
|
2077
2085
|
"door-exit",
|
|
2086
|
+
"door-hanger",
|
|
2078
2087
|
"door-off",
|
|
2079
2088
|
"door",
|
|
2080
2089
|
"dots-circle-horizontal",
|
|
@@ -2119,6 +2128,7 @@ export default [
|
|
|
2119
2128
|
"ear-off",
|
|
2120
2129
|
"ear-scan",
|
|
2121
2130
|
"ear",
|
|
2131
|
+
"earphone-bluetooth",
|
|
2122
2132
|
"ease-in-control-point",
|
|
2123
2133
|
"ease-in-out-control-points",
|
|
2124
2134
|
"ease-in-out",
|
|
@@ -2529,6 +2539,7 @@ export default [
|
|
|
2529
2539
|
"gps",
|
|
2530
2540
|
"gradienter",
|
|
2531
2541
|
"grain",
|
|
2542
|
+
"grape",
|
|
2532
2543
|
"graph-off",
|
|
2533
2544
|
"graph",
|
|
2534
2545
|
"grave-2",
|
|
@@ -2554,6 +2565,7 @@ export default [
|
|
|
2554
2565
|
"h-4",
|
|
2555
2566
|
"h-5",
|
|
2556
2567
|
"h-6",
|
|
2568
|
+
"hammer-drill",
|
|
2557
2569
|
"hammer-off",
|
|
2558
2570
|
"hammer",
|
|
2559
2571
|
"hand-click-off",
|
|
@@ -2780,6 +2792,7 @@ export default [
|
|
|
2780
2792
|
"inbox",
|
|
2781
2793
|
"indent-decrease",
|
|
2782
2794
|
"indent-increase",
|
|
2795
|
+
"infinity-2",
|
|
2783
2796
|
"infinity-off",
|
|
2784
2797
|
"infinity",
|
|
2785
2798
|
"info-circle",
|
|
@@ -2861,6 +2874,7 @@ export default [
|
|
|
2861
2874
|
"laurel-wreath-2",
|
|
2862
2875
|
"laurel-wreath-3",
|
|
2863
2876
|
"laurel-wreath",
|
|
2877
|
+
"lawn-mower",
|
|
2864
2878
|
"layers-difference",
|
|
2865
2879
|
"layers-intersect-2",
|
|
2866
2880
|
"layers-intersect",
|
|
@@ -3004,6 +3018,7 @@ export default [
|
|
|
3004
3018
|
"load-balancer",
|
|
3005
3019
|
"loader-2",
|
|
3006
3020
|
"loader-3",
|
|
3021
|
+
"loader-4",
|
|
3007
3022
|
"loader-quarter",
|
|
3008
3023
|
"loader",
|
|
3009
3024
|
"location-bolt",
|
|
@@ -3406,6 +3421,7 @@ export default [
|
|
|
3406
3421
|
"moon-stars",
|
|
3407
3422
|
"moon",
|
|
3408
3423
|
"moped",
|
|
3424
|
+
"mosque",
|
|
3409
3425
|
"motorbike",
|
|
3410
3426
|
"mountain-off",
|
|
3411
3427
|
"mountain",
|
|
@@ -3690,6 +3706,7 @@ export default [
|
|
|
3690
3706
|
"pencil-up",
|
|
3691
3707
|
"pencil-x",
|
|
3692
3708
|
"pencil",
|
|
3709
|
+
"pendulum",
|
|
3693
3710
|
"pennant-2",
|
|
3694
3711
|
"pennant-off",
|
|
3695
3712
|
"pennant",
|
|
@@ -3864,6 +3881,7 @@ export default [
|
|
|
3864
3881
|
"plug-off",
|
|
3865
3882
|
"plug-x",
|
|
3866
3883
|
"plug",
|
|
3884
|
+
"plunger",
|
|
3867
3885
|
"plus-equal",
|
|
3868
3886
|
"plus-minus",
|
|
3869
3887
|
"plus",
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte-runes",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.42.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "codecalm",
|
|
6
6
|
"description": "A set of free MIT-licensed high-quality SVG icons for Svelte 5+ using runes",
|
|
7
|
-
"homepage": "https://tabler
|
|
7
|
+
"homepage": "https://tabler.io/icons",
|
|
8
8
|
"bugs": {
|
|
9
9
|
"url": "https://github.com/tabler/tabler-icons/issues"
|
|
10
10
|
},
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"ui"
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@tabler/icons": "3.
|
|
55
|
+
"@tabler/icons": "3.42.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@sveltejs/package": "^2.3.7",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@tsconfig/svelte": "^5.0.4",
|
|
62
62
|
"svelte": "^5.0.0",
|
|
63
63
|
"svelte-check": "^4.3.4",
|
|
64
|
-
"vite": "^
|
|
64
|
+
"vite": "^7.3.0"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
67
|
"svelte": "^5.0.0"
|