@tabler/icons-svelte-runes 3.42.0 → 3.43.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/acorn.svelte +14 -0
- package/dist/icons/acorn.svelte.d.ts +8 -0
- package/dist/icons/acrobatic.svelte +14 -0
- package/dist/icons/acrobatic.svelte.d.ts +8 -0
- package/dist/icons/banana.svelte +14 -0
- package/dist/icons/banana.svelte.d.ts +8 -0
- package/dist/icons/bike.svelte +1 -1
- package/dist/icons/brand-audible.svelte +14 -0
- package/dist/icons/brand-audible.svelte.d.ts +8 -0
- package/dist/icons/building-eiffel-tower.svelte +14 -0
- package/dist/icons/building-eiffel-tower.svelte.d.ts +8 -0
- package/dist/icons/car-door.svelte +14 -0
- package/dist/icons/car-door.svelte.d.ts +8 -0
- package/dist/icons/car-lifter.svelte +14 -0
- package/dist/icons/car-lifter.svelte.d.ts +8 -0
- package/dist/icons/chocolate.svelte +14 -0
- package/dist/icons/chocolate.svelte.d.ts +8 -0
- package/dist/icons/cliff-jumping.svelte +1 -1
- package/dist/icons/currency-dong.svelte +1 -1
- package/dist/icons/dumbbell.svelte +14 -0
- package/dist/icons/dumbbell.svelte.d.ts +8 -0
- package/dist/icons/exercise-ball.svelte +14 -0
- package/dist/icons/exercise-ball.svelte.d.ts +8 -0
- package/dist/icons/flood.svelte +14 -0
- package/dist/icons/flood.svelte.d.ts +8 -0
- package/dist/icons/hula-hoop.svelte +14 -0
- package/dist/icons/hula-hoop.svelte.d.ts +8 -0
- package/dist/icons/index.d.ts +18 -0
- package/dist/icons/index.js +18 -0
- package/dist/icons/karate.svelte +1 -1
- package/dist/icons/leaf-maple.svelte +14 -0
- package/dist/icons/leaf-maple.svelte.d.ts +8 -0
- package/dist/icons/notdef.svelte +14 -0
- package/dist/icons/notdef.svelte.d.ts +8 -0
- package/dist/icons/olympic-torch.svelte +1 -1
- package/dist/icons/play-basketball.svelte +1 -1
- package/dist/icons/play-football.svelte +1 -1
- package/dist/icons/play-handball.svelte +1 -1
- package/dist/icons/play-volleyball.svelte +1 -1
- package/dist/icons/rugby.svelte +14 -0
- package/dist/icons/rugby.svelte.d.ts +8 -0
- package/dist/icons/run.svelte +1 -1
- package/dist/icons/skateboarding.svelte +1 -1
- package/dist/icons/ski-jumping.svelte +1 -1
- package/dist/icons/stretching-2.svelte +1 -1
- package/dist/icons/taiwan-dollar.svelte +14 -0
- package/dist/icons/taiwan-dollar.svelte.d.ts +8 -0
- package/dist/icons/target-2.svelte +14 -0
- package/dist/icons/target-2.svelte.d.ts +8 -0
- package/dist/icons/unicycle.svelte +14 -0
- package/dist/icons/unicycle.svelte.d.ts +8 -0
- package/dist/icons/waterpolo.svelte +1 -1
- package/dist/icons/yoga.svelte +1 -1
- package/dist/icons-list.js +18 -0
- package/package.json +2 -2
|
@@ -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":"M18 10l-.45 4.1a8.36 8.36 0 0 1 -5.18 6.83a1 1 0 0 1 -.74 0a8.36 8.36 0 0 1 -5.18 -6.83l-.45 -4.1"}],["path",{"d":"M13 3a4.9 4.9 0 0 0 -1 3"}],["path",{"d":"M8 6h8a3 3 0 0 1 3 3a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1a3 3 0 0 1 3 -3"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="acorn" {...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 Acorn: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Acorn = ReturnType<typeof Acorn>;
|
|
8
|
+
export default Acorn;
|
|
@@ -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.207 3l-6.735 2.462a1 1 0 0 0 -.364 1.646l1.892 1.892"}],["path",{"d":"M10.5 8.25l1.5 -.25h3.174a2 2 0 0 1 1.411 .583l1.422 1.417"}],["path",{"d":"M8 9c0 4.5 1.781 5.14 3 5.5"}],["path",{"d":"M13.007 21h-1a1 1 0 0 1 -1 -1l-.007 -5.5"}],["path",{"d":"M12.007 14a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="acrobatic" {...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 Acrobatic: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Acrobatic = ReturnType<typeof Acrobatic>;
|
|
8
|
+
export default Acrobatic;
|
|
@@ -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 6v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a9.09 9.09 0 0 1 -4 8.08c-2 1.31 -5 1.57 -7 1.59a2 2 0 0 0 -2 2a2 2 0 0 0 1.16 1.81c2.69 1.2 9.46 3.44 14.35 -1.66c4.49 -4.74 1.49 -11.82 1.49 -11.82"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="banana" {...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 Banana: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Banana = ReturnType<typeof Banana>;
|
|
8
|
+
export default Banana;
|
package/dist/icons/bike.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":"M2 18a3 3 0 1 0 6 0a3 3 0
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M2 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"}],["path",{"d":"M16 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"}],["path",{"d":"M12 19v-4l-3 -3l5 -4l2 3h3"}],["path",{"d":"M13.007 5a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="bike" {...props} iconNode={iconNode} {children} />
|
|
@@ -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":"M18.46 9.75a9 9 0 0 0 -12.92 0"}],["path",{"d":"M14.34 11.58a5 5 0 0 0 -4.68 0"}],["path",{"d":"M22 13l-10 4l-10 -4"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="brand-audible" {...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 BrandAudible: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type BrandAudible = ReturnType<typeof BrandAudible>;
|
|
8
|
+
export default BrandAudible;
|
|
@@ -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":"M11 4c0 4.889 -2.292 12.111 -5 17"}],["path",{"d":"M13 4c0 4.889 2.292 12.111 5 17"}],["path",{"d":"M3 21h18"}],["path",{"d":"M8 14h8"}],["path",{"d":"M9 10h6"}],["path",{"d":"M10 4h4"}],["path",{"d":"M12 2v1.778"}],["path",{"d":"M10 21s.27 -1.406 .667 -2c.333 -.5 .666 -1 1.333 -1s1 .5 1.333 1c.448 .672 .667 2 .667 2"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="building-eiffel-tower" {...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 BuildingEiffelTower: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type BuildingEiffelTower = ReturnType<typeof BuildingEiffelTower>;
|
|
8
|
+
export default BuildingEiffelTower;
|
|
@@ -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 14h2"}],["path",{"d":"M19 10h-16"}],["path",{"d":"M6.7 3.45l-3.7 5.55v3.08a1 1 0 0 0 .85 1a6 6 0 0 1 5.15 5.92v1a1 1 0 0 0 1 1h8a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1h-10.46a1 1 0 0 0 -.84 .45"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="car-door" {...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 CarDoor: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type CarDoor = ReturnType<typeof CarDoor>;
|
|
8
|
+
export default CarDoor;
|
|
@@ -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 21l10 -7l-10 -7"}],["path",{"d":"M17 7l-10 7l10 7"}],["path",{"d":"M20 7h-16a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1"}],["path",{"d":"M3 21h18"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="car-lifter" {...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 CarLifter: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type CarLifter = ReturnType<typeof CarLifter>;
|
|
8
|
+
export default CarLifter;
|
|
@@ -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-16"}],["path",{"d":"M6 15h12"}],["path",{"d":"M6 9h10.5"}],["path",{"d":"M10.05 3a2.5 2.5 0 0 0 3.987 1.47a3 3 0 0 0 2.047 2.387a2.504 2.504 0 0 0 1.916 3.093v9.05a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h2.05"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="chocolate" {...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 Chocolate: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Chocolate = ReturnType<typeof Chocolate>;
|
|
8
|
+
export default Chocolate;
|
|
@@ -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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M10.5 18l2.5 2l2 -2"}],["path",{"d":"M18 21l3 -3l-4 -2l-2 -5"}],["path",{"d":"M9 8l3 3l3 1l4 -2l3 -2"}],["path",{"d":"M3 21v-1l2 -3l.5 -2.5l1.5 -2.5l-1 -5l1 -3l-1 -1l-2 .5l-2 -.5"}],["path",{"d":"M13.007 8a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="cliff-jumping" {...props} iconNode={iconNode} {children} />
|
|
@@ -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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M8 20h8"}],["path",{"d":"M15 13a3 3 0 0 1 -3 3a3 3 0 0 1 -3 -3a3 3 0 0 1 3 -3a3 3 0 0 1 3 3"}],["path",{"d":"M15 4v12"}],["path",{"d":"M13 6h4"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="currency-dong" {...props} iconNode={iconNode} {children} />
|
|
@@ -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.026 9.61l-.95 -4.18a2 2 0 0 1 1.95 -2.43h8a2 2 0 0 1 2 2.43l-1 4.2"}],["path",{"d":"M9.026 17.001h6"}],["path",{"d":"M18.906 20.06a7.92 7.92 0 0 0 1 -5.33a8 8 0 1 0 -14.77 5.33a2 2 0 0 0 1.71 .94h10.36a2 2 0 0 0 1.7 -.94"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="dumbbell" {...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 Dumbbell: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Dumbbell = ReturnType<typeof Dumbbell>;
|
|
8
|
+
export default Dumbbell;
|
|
@@ -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.59 18.31a15.57 15.57 0 0 1 4.51 -9.21a15.9 15.9 0 0 1 7.43 -4.19"}],["path",{"d":"M11.55 21a9.34 9.34 0 0 1 2.79 -7.65a9.5 9.5 0 0 1 6.54 -2.85"}],["path",{"d":"M3 12a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="exercise-ball" {...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 ExerciseBall: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type ExerciseBall = ReturnType<typeof ExerciseBall>;
|
|
8
|
+
export default ExerciseBall;
|
|
@@ -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":"M3 10l9 -7l9 7"}],["path",{"d":"M6 7.75v4.25m12 0v-4.25"}],["path",{"d":"M3 20.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"}],["path",{"d":"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="flood" {...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 Flood: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Flood = ReturnType<typeof Flood>;
|
|
8
|
+
export default Flood;
|
|
@@ -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":"M10 5a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}],["path",{"d":"M4 6l2 1.5l6 .5l6 -.5l2 -1.5"}],["path",{"d":"M16 21l-4 -8v-5"}],["path",{"d":"M8 21l4 -8"}],["path",{"d":"M9.007 10.999c-2.37 .32 -4.007 1.201 -4.007 2.001c0 1.105 3.134 2 7 2s7 -.895 7 -2c0 -.798 -1.636 -1.679 -4 -2"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="hula-hoop" {...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 HulaHoop: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type HulaHoop = ReturnType<typeof HulaHoop>;
|
|
8
|
+
export default HulaHoop;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -8,6 +8,8 @@ export { default as IconAccessPointOff } from './access-point-off.svelte';
|
|
|
8
8
|
export { default as IconAccessPoint } from './access-point.svelte';
|
|
9
9
|
export { default as IconAccessibleOff } from './accessible-off.svelte';
|
|
10
10
|
export { default as IconAccessible } from './accessible.svelte';
|
|
11
|
+
export { default as IconAcorn } from './acorn.svelte';
|
|
12
|
+
export { default as IconAcrobatic } from './acrobatic.svelte';
|
|
11
13
|
export { default as IconActivityHeartbeat } from './activity-heartbeat.svelte';
|
|
12
14
|
export { default as IconActivity } from './activity.svelte';
|
|
13
15
|
export { default as IconAd2 } from './ad-2.svelte';
|
|
@@ -400,6 +402,7 @@ export { default as IconBalloon } from './balloon.svelte';
|
|
|
400
402
|
export { default as IconBallpenOff } from './ballpen-off.svelte';
|
|
401
403
|
export { default as IconBallpen } from './ballpen.svelte';
|
|
402
404
|
export { default as IconBan } from './ban.svelte';
|
|
405
|
+
export { default as IconBanana } from './banana.svelte';
|
|
403
406
|
export { default as IconBandageOff } from './bandage-off.svelte';
|
|
404
407
|
export { default as IconBandage } from './bandage.svelte';
|
|
405
408
|
export { default as IconBarbellOff } from './barbell-off.svelte';
|
|
@@ -653,6 +656,7 @@ export { default as IconBrandAppstore } from './brand-appstore.svelte';
|
|
|
653
656
|
export { default as IconBrandArc } from './brand-arc.svelte';
|
|
654
657
|
export { default as IconBrandAsana } from './brand-asana.svelte';
|
|
655
658
|
export { default as IconBrandAstro } from './brand-astro.svelte';
|
|
659
|
+
export { default as IconBrandAudible } from './brand-audible.svelte';
|
|
656
660
|
export { default as IconBrandAuth0 } from './brand-auth0.svelte';
|
|
657
661
|
export { default as IconBrandAws } from './brand-aws.svelte';
|
|
658
662
|
export { default as IconBrandAzure } from './brand-azure.svelte';
|
|
@@ -1044,6 +1048,7 @@ export { default as IconBuildingCircus } from './building-circus.svelte';
|
|
|
1044
1048
|
export { default as IconBuildingCog } from './building-cog.svelte';
|
|
1045
1049
|
export { default as IconBuildingCommunity } from './building-community.svelte';
|
|
1046
1050
|
export { default as IconBuildingCottage } from './building-cottage.svelte';
|
|
1051
|
+
export { default as IconBuildingEiffelTower } from './building-eiffel-tower.svelte';
|
|
1047
1052
|
export { default as IconBuildingEstate } from './building-estate.svelte';
|
|
1048
1053
|
export { default as IconBuildingFactory2 } from './building-factory-2.svelte';
|
|
1049
1054
|
export { default as IconBuildingFactory } from './building-factory.svelte';
|
|
@@ -1159,12 +1164,14 @@ export { default as IconCapture } from './capture.svelte';
|
|
|
1159
1164
|
export { default as IconCar4wd } from './car-4wd.svelte';
|
|
1160
1165
|
export { default as IconCarCrane } from './car-crane.svelte';
|
|
1161
1166
|
export { default as IconCarCrash } from './car-crash.svelte';
|
|
1167
|
+
export { default as IconCarDoor } from './car-door.svelte';
|
|
1162
1168
|
export { default as IconCarFan1 } from './car-fan-1.svelte';
|
|
1163
1169
|
export { default as IconCarFan2 } from './car-fan-2.svelte';
|
|
1164
1170
|
export { default as IconCarFan3 } from './car-fan-3.svelte';
|
|
1165
1171
|
export { default as IconCarFanAuto } from './car-fan-auto.svelte';
|
|
1166
1172
|
export { default as IconCarFan } from './car-fan.svelte';
|
|
1167
1173
|
export { default as IconCarGarage } from './car-garage.svelte';
|
|
1174
|
+
export { default as IconCarLifter } from './car-lifter.svelte';
|
|
1168
1175
|
export { default as IconCarOffRoad } from './car-off-road.svelte';
|
|
1169
1176
|
export { default as IconCarOff } from './car-off.svelte';
|
|
1170
1177
|
export { default as IconCarSuspension } from './car-suspension.svelte';
|
|
@@ -1304,6 +1311,7 @@ export { default as IconChevronsUpLeft } from './chevrons-up-left.svelte';
|
|
|
1304
1311
|
export { default as IconChevronsUpRight } from './chevrons-up-right.svelte';
|
|
1305
1312
|
export { default as IconChevronsUp } from './chevrons-up.svelte';
|
|
1306
1313
|
export { default as IconChisel } from './chisel.svelte';
|
|
1314
|
+
export { default as IconChocolate } from './chocolate.svelte';
|
|
1307
1315
|
export { default as IconChristmasBall } from './christmas-ball.svelte';
|
|
1308
1316
|
export { default as IconChristmasTreeOff } from './christmas-tree-off.svelte';
|
|
1309
1317
|
export { default as IconChristmasTree } from './christmas-tree.svelte';
|
|
@@ -2122,6 +2130,7 @@ export { default as IconDropletX } from './droplet-x.svelte';
|
|
|
2122
2130
|
export { default as IconDroplet } from './droplet.svelte';
|
|
2123
2131
|
export { default as IconDroplets } from './droplets.svelte';
|
|
2124
2132
|
export { default as IconDualScreen } from './dual-screen.svelte';
|
|
2133
|
+
export { default as IconDumbbell } from './dumbbell.svelte';
|
|
2125
2134
|
export { default as IconDumpling } from './dumpling.svelte';
|
|
2126
2135
|
export { default as IconEPassport } from './e-passport.svelte';
|
|
2127
2136
|
export { default as IconEarOff } from './ear-off.svelte';
|
|
@@ -2166,6 +2175,7 @@ export { default as IconExchange } from './exchange.svelte';
|
|
|
2166
2175
|
export { default as IconExclamationCircle } from './exclamation-circle.svelte';
|
|
2167
2176
|
export { default as IconExclamationMarkOff } from './exclamation-mark-off.svelte';
|
|
2168
2177
|
export { default as IconExclamationMark } from './exclamation-mark.svelte';
|
|
2178
|
+
export { default as IconExerciseBall } from './exercise-ball.svelte';
|
|
2169
2179
|
export { default as IconExplicitOff } from './explicit-off.svelte';
|
|
2170
2180
|
export { default as IconExplicit } from './explicit.svelte';
|
|
2171
2181
|
export { default as IconExposure0 } from './exposure-0.svelte';
|
|
@@ -2422,6 +2432,7 @@ export { default as IconFloatCenter } from './float-center.svelte';
|
|
|
2422
2432
|
export { default as IconFloatLeft } from './float-left.svelte';
|
|
2423
2433
|
export { default as IconFloatNone } from './float-none.svelte';
|
|
2424
2434
|
export { default as IconFloatRight } from './float-right.svelte';
|
|
2435
|
+
export { default as IconFlood } from './flood.svelte';
|
|
2425
2436
|
export { default as IconFlowerOff } from './flower-off.svelte';
|
|
2426
2437
|
export { default as IconFlower } from './flower.svelte';
|
|
2427
2438
|
export { default as IconFocus2 } from './focus-2.svelte';
|
|
@@ -2772,6 +2783,7 @@ export { default as IconHttpQueOff } from './http-que-off.svelte';
|
|
|
2772
2783
|
export { default as IconHttpQue } from './http-que.svelte';
|
|
2773
2784
|
export { default as IconHttpTraceOff } from './http-trace-off.svelte';
|
|
2774
2785
|
export { default as IconHttpTrace } from './http-trace.svelte';
|
|
2786
|
+
export { default as IconHulaHoop } from './hula-hoop.svelte';
|
|
2775
2787
|
export { default as IconIceCream2 } from './ice-cream-2.svelte';
|
|
2776
2788
|
export { default as IconIceCreamOff } from './ice-cream-off.svelte';
|
|
2777
2789
|
export { default as IconIceCream } from './ice-cream.svelte';
|
|
@@ -2923,6 +2935,7 @@ export { default as IconLayoutSidebarRight } from './layout-sidebar-right.svelte
|
|
|
2923
2935
|
export { default as IconLayoutSidebar } from './layout-sidebar.svelte';
|
|
2924
2936
|
export { default as IconLayout } from './layout.svelte';
|
|
2925
2937
|
export { default as IconLeaf2 } from './leaf-2.svelte';
|
|
2938
|
+
export { default as IconLeafMaple } from './leaf-maple.svelte';
|
|
2926
2939
|
export { default as IconLeafOff } from './leaf-off.svelte';
|
|
2927
2940
|
export { default as IconLeaf } from './leaf.svelte';
|
|
2928
2941
|
export { default as IconLegoOff } from './lego-off.svelte';
|
|
@@ -3500,6 +3513,7 @@ export { default as IconNoCopyright } from './no-copyright.svelte';
|
|
|
3500
3513
|
export { default as IconNoCreativeCommons } from './no-creative-commons.svelte';
|
|
3501
3514
|
export { default as IconNoDerivatives } from './no-derivatives.svelte';
|
|
3502
3515
|
export { default as IconNorthStar } from './north-star.svelte';
|
|
3516
|
+
export { default as IconNotdef } from './notdef.svelte';
|
|
3503
3517
|
export { default as IconNoteOff } from './note-off.svelte';
|
|
3504
3518
|
export { default as IconNote } from './note.svelte';
|
|
3505
3519
|
export { default as IconNotebookOff } from './notebook-off.svelte';
|
|
@@ -4107,6 +4121,7 @@ export { default as IconRowRemove } from './row-remove.svelte';
|
|
|
4107
4121
|
export { default as IconRss } from './rss.svelte';
|
|
4108
4122
|
export { default as IconRubberStampOff } from './rubber-stamp-off.svelte';
|
|
4109
4123
|
export { default as IconRubberStamp } from './rubber-stamp.svelte';
|
|
4124
|
+
export { default as IconRugby } from './rugby.svelte';
|
|
4110
4125
|
export { default as IconRuler2Off } from './ruler-2-off.svelte';
|
|
4111
4126
|
export { default as IconRuler2 } from './ruler-2.svelte';
|
|
4112
4127
|
export { default as IconRuler3 } from './ruler-3.svelte';
|
|
@@ -4618,12 +4633,14 @@ export { default as IconTagStarred } from './tag-starred.svelte';
|
|
|
4618
4633
|
export { default as IconTag } from './tag.svelte';
|
|
4619
4634
|
export { default as IconTagsOff } from './tags-off.svelte';
|
|
4620
4635
|
export { default as IconTags } from './tags.svelte';
|
|
4636
|
+
export { default as IconTaiwanDollar } from './taiwan-dollar.svelte';
|
|
4621
4637
|
export { default as IconTallymark1 } from './tallymark-1.svelte';
|
|
4622
4638
|
export { default as IconTallymark2 } from './tallymark-2.svelte';
|
|
4623
4639
|
export { default as IconTallymark3 } from './tallymark-3.svelte';
|
|
4624
4640
|
export { default as IconTallymark4 } from './tallymark-4.svelte';
|
|
4625
4641
|
export { default as IconTallymarks } from './tallymarks.svelte';
|
|
4626
4642
|
export { default as IconTank } from './tank.svelte';
|
|
4643
|
+
export { default as IconTarget2 } from './target-2.svelte';
|
|
4627
4644
|
export { default as IconTargetArrow } from './target-arrow.svelte';
|
|
4628
4645
|
export { default as IconTargetOff } from './target-off.svelte';
|
|
4629
4646
|
export { default as IconTarget } from './target.svelte';
|
|
@@ -4812,6 +4829,7 @@ export { default as IconUmbrellaClosed } from './umbrella-closed.svelte';
|
|
|
4812
4829
|
export { default as IconUmbrellaOff } from './umbrella-off.svelte';
|
|
4813
4830
|
export { default as IconUmbrella } from './umbrella.svelte';
|
|
4814
4831
|
export { default as IconUnderline } from './underline.svelte';
|
|
4832
|
+
export { default as IconUnicycle } from './unicycle.svelte';
|
|
4815
4833
|
export { default as IconUniverse } from './universe.svelte';
|
|
4816
4834
|
export { default as IconUnlink } from './unlink.svelte';
|
|
4817
4835
|
export { default as IconUpload } from './upload.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -8,6 +8,8 @@ export { default as IconAccessPointOff } from './access-point-off.svelte';
|
|
|
8
8
|
export { default as IconAccessPoint } from './access-point.svelte';
|
|
9
9
|
export { default as IconAccessibleOff } from './accessible-off.svelte';
|
|
10
10
|
export { default as IconAccessible } from './accessible.svelte';
|
|
11
|
+
export { default as IconAcorn } from './acorn.svelte';
|
|
12
|
+
export { default as IconAcrobatic } from './acrobatic.svelte';
|
|
11
13
|
export { default as IconActivityHeartbeat } from './activity-heartbeat.svelte';
|
|
12
14
|
export { default as IconActivity } from './activity.svelte';
|
|
13
15
|
export { default as IconAd2 } from './ad-2.svelte';
|
|
@@ -400,6 +402,7 @@ export { default as IconBalloon } from './balloon.svelte';
|
|
|
400
402
|
export { default as IconBallpenOff } from './ballpen-off.svelte';
|
|
401
403
|
export { default as IconBallpen } from './ballpen.svelte';
|
|
402
404
|
export { default as IconBan } from './ban.svelte';
|
|
405
|
+
export { default as IconBanana } from './banana.svelte';
|
|
403
406
|
export { default as IconBandageOff } from './bandage-off.svelte';
|
|
404
407
|
export { default as IconBandage } from './bandage.svelte';
|
|
405
408
|
export { default as IconBarbellOff } from './barbell-off.svelte';
|
|
@@ -653,6 +656,7 @@ export { default as IconBrandAppstore } from './brand-appstore.svelte';
|
|
|
653
656
|
export { default as IconBrandArc } from './brand-arc.svelte';
|
|
654
657
|
export { default as IconBrandAsana } from './brand-asana.svelte';
|
|
655
658
|
export { default as IconBrandAstro } from './brand-astro.svelte';
|
|
659
|
+
export { default as IconBrandAudible } from './brand-audible.svelte';
|
|
656
660
|
export { default as IconBrandAuth0 } from './brand-auth0.svelte';
|
|
657
661
|
export { default as IconBrandAws } from './brand-aws.svelte';
|
|
658
662
|
export { default as IconBrandAzure } from './brand-azure.svelte';
|
|
@@ -1044,6 +1048,7 @@ export { default as IconBuildingCircus } from './building-circus.svelte';
|
|
|
1044
1048
|
export { default as IconBuildingCog } from './building-cog.svelte';
|
|
1045
1049
|
export { default as IconBuildingCommunity } from './building-community.svelte';
|
|
1046
1050
|
export { default as IconBuildingCottage } from './building-cottage.svelte';
|
|
1051
|
+
export { default as IconBuildingEiffelTower } from './building-eiffel-tower.svelte';
|
|
1047
1052
|
export { default as IconBuildingEstate } from './building-estate.svelte';
|
|
1048
1053
|
export { default as IconBuildingFactory2 } from './building-factory-2.svelte';
|
|
1049
1054
|
export { default as IconBuildingFactory } from './building-factory.svelte';
|
|
@@ -1159,12 +1164,14 @@ export { default as IconCapture } from './capture.svelte';
|
|
|
1159
1164
|
export { default as IconCar4wd } from './car-4wd.svelte';
|
|
1160
1165
|
export { default as IconCarCrane } from './car-crane.svelte';
|
|
1161
1166
|
export { default as IconCarCrash } from './car-crash.svelte';
|
|
1167
|
+
export { default as IconCarDoor } from './car-door.svelte';
|
|
1162
1168
|
export { default as IconCarFan1 } from './car-fan-1.svelte';
|
|
1163
1169
|
export { default as IconCarFan2 } from './car-fan-2.svelte';
|
|
1164
1170
|
export { default as IconCarFan3 } from './car-fan-3.svelte';
|
|
1165
1171
|
export { default as IconCarFanAuto } from './car-fan-auto.svelte';
|
|
1166
1172
|
export { default as IconCarFan } from './car-fan.svelte';
|
|
1167
1173
|
export { default as IconCarGarage } from './car-garage.svelte';
|
|
1174
|
+
export { default as IconCarLifter } from './car-lifter.svelte';
|
|
1168
1175
|
export { default as IconCarOffRoad } from './car-off-road.svelte';
|
|
1169
1176
|
export { default as IconCarOff } from './car-off.svelte';
|
|
1170
1177
|
export { default as IconCarSuspension } from './car-suspension.svelte';
|
|
@@ -1304,6 +1311,7 @@ export { default as IconChevronsUpLeft } from './chevrons-up-left.svelte';
|
|
|
1304
1311
|
export { default as IconChevronsUpRight } from './chevrons-up-right.svelte';
|
|
1305
1312
|
export { default as IconChevronsUp } from './chevrons-up.svelte';
|
|
1306
1313
|
export { default as IconChisel } from './chisel.svelte';
|
|
1314
|
+
export { default as IconChocolate } from './chocolate.svelte';
|
|
1307
1315
|
export { default as IconChristmasBall } from './christmas-ball.svelte';
|
|
1308
1316
|
export { default as IconChristmasTreeOff } from './christmas-tree-off.svelte';
|
|
1309
1317
|
export { default as IconChristmasTree } from './christmas-tree.svelte';
|
|
@@ -2122,6 +2130,7 @@ export { default as IconDropletX } from './droplet-x.svelte';
|
|
|
2122
2130
|
export { default as IconDroplet } from './droplet.svelte';
|
|
2123
2131
|
export { default as IconDroplets } from './droplets.svelte';
|
|
2124
2132
|
export { default as IconDualScreen } from './dual-screen.svelte';
|
|
2133
|
+
export { default as IconDumbbell } from './dumbbell.svelte';
|
|
2125
2134
|
export { default as IconDumpling } from './dumpling.svelte';
|
|
2126
2135
|
export { default as IconEPassport } from './e-passport.svelte';
|
|
2127
2136
|
export { default as IconEarOff } from './ear-off.svelte';
|
|
@@ -2166,6 +2175,7 @@ export { default as IconExchange } from './exchange.svelte';
|
|
|
2166
2175
|
export { default as IconExclamationCircle } from './exclamation-circle.svelte';
|
|
2167
2176
|
export { default as IconExclamationMarkOff } from './exclamation-mark-off.svelte';
|
|
2168
2177
|
export { default as IconExclamationMark } from './exclamation-mark.svelte';
|
|
2178
|
+
export { default as IconExerciseBall } from './exercise-ball.svelte';
|
|
2169
2179
|
export { default as IconExplicitOff } from './explicit-off.svelte';
|
|
2170
2180
|
export { default as IconExplicit } from './explicit.svelte';
|
|
2171
2181
|
export { default as IconExposure0 } from './exposure-0.svelte';
|
|
@@ -2422,6 +2432,7 @@ export { default as IconFloatCenter } from './float-center.svelte';
|
|
|
2422
2432
|
export { default as IconFloatLeft } from './float-left.svelte';
|
|
2423
2433
|
export { default as IconFloatNone } from './float-none.svelte';
|
|
2424
2434
|
export { default as IconFloatRight } from './float-right.svelte';
|
|
2435
|
+
export { default as IconFlood } from './flood.svelte';
|
|
2425
2436
|
export { default as IconFlowerOff } from './flower-off.svelte';
|
|
2426
2437
|
export { default as IconFlower } from './flower.svelte';
|
|
2427
2438
|
export { default as IconFocus2 } from './focus-2.svelte';
|
|
@@ -2772,6 +2783,7 @@ export { default as IconHttpQueOff } from './http-que-off.svelte';
|
|
|
2772
2783
|
export { default as IconHttpQue } from './http-que.svelte';
|
|
2773
2784
|
export { default as IconHttpTraceOff } from './http-trace-off.svelte';
|
|
2774
2785
|
export { default as IconHttpTrace } from './http-trace.svelte';
|
|
2786
|
+
export { default as IconHulaHoop } from './hula-hoop.svelte';
|
|
2775
2787
|
export { default as IconIceCream2 } from './ice-cream-2.svelte';
|
|
2776
2788
|
export { default as IconIceCreamOff } from './ice-cream-off.svelte';
|
|
2777
2789
|
export { default as IconIceCream } from './ice-cream.svelte';
|
|
@@ -2923,6 +2935,7 @@ export { default as IconLayoutSidebarRight } from './layout-sidebar-right.svelte
|
|
|
2923
2935
|
export { default as IconLayoutSidebar } from './layout-sidebar.svelte';
|
|
2924
2936
|
export { default as IconLayout } from './layout.svelte';
|
|
2925
2937
|
export { default as IconLeaf2 } from './leaf-2.svelte';
|
|
2938
|
+
export { default as IconLeafMaple } from './leaf-maple.svelte';
|
|
2926
2939
|
export { default as IconLeafOff } from './leaf-off.svelte';
|
|
2927
2940
|
export { default as IconLeaf } from './leaf.svelte';
|
|
2928
2941
|
export { default as IconLegoOff } from './lego-off.svelte';
|
|
@@ -3500,6 +3513,7 @@ export { default as IconNoCopyright } from './no-copyright.svelte';
|
|
|
3500
3513
|
export { default as IconNoCreativeCommons } from './no-creative-commons.svelte';
|
|
3501
3514
|
export { default as IconNoDerivatives } from './no-derivatives.svelte';
|
|
3502
3515
|
export { default as IconNorthStar } from './north-star.svelte';
|
|
3516
|
+
export { default as IconNotdef } from './notdef.svelte';
|
|
3503
3517
|
export { default as IconNoteOff } from './note-off.svelte';
|
|
3504
3518
|
export { default as IconNote } from './note.svelte';
|
|
3505
3519
|
export { default as IconNotebookOff } from './notebook-off.svelte';
|
|
@@ -4107,6 +4121,7 @@ export { default as IconRowRemove } from './row-remove.svelte';
|
|
|
4107
4121
|
export { default as IconRss } from './rss.svelte';
|
|
4108
4122
|
export { default as IconRubberStampOff } from './rubber-stamp-off.svelte';
|
|
4109
4123
|
export { default as IconRubberStamp } from './rubber-stamp.svelte';
|
|
4124
|
+
export { default as IconRugby } from './rugby.svelte';
|
|
4110
4125
|
export { default as IconRuler2Off } from './ruler-2-off.svelte';
|
|
4111
4126
|
export { default as IconRuler2 } from './ruler-2.svelte';
|
|
4112
4127
|
export { default as IconRuler3 } from './ruler-3.svelte';
|
|
@@ -4618,12 +4633,14 @@ export { default as IconTagStarred } from './tag-starred.svelte';
|
|
|
4618
4633
|
export { default as IconTag } from './tag.svelte';
|
|
4619
4634
|
export { default as IconTagsOff } from './tags-off.svelte';
|
|
4620
4635
|
export { default as IconTags } from './tags.svelte';
|
|
4636
|
+
export { default as IconTaiwanDollar } from './taiwan-dollar.svelte';
|
|
4621
4637
|
export { default as IconTallymark1 } from './tallymark-1.svelte';
|
|
4622
4638
|
export { default as IconTallymark2 } from './tallymark-2.svelte';
|
|
4623
4639
|
export { default as IconTallymark3 } from './tallymark-3.svelte';
|
|
4624
4640
|
export { default as IconTallymark4 } from './tallymark-4.svelte';
|
|
4625
4641
|
export { default as IconTallymarks } from './tallymarks.svelte';
|
|
4626
4642
|
export { default as IconTank } from './tank.svelte';
|
|
4643
|
+
export { default as IconTarget2 } from './target-2.svelte';
|
|
4627
4644
|
export { default as IconTargetArrow } from './target-arrow.svelte';
|
|
4628
4645
|
export { default as IconTargetOff } from './target-off.svelte';
|
|
4629
4646
|
export { default as IconTarget } from './target.svelte';
|
|
@@ -4812,6 +4829,7 @@ export { default as IconUmbrellaClosed } from './umbrella-closed.svelte';
|
|
|
4812
4829
|
export { default as IconUmbrellaOff } from './umbrella-off.svelte';
|
|
4813
4830
|
export { default as IconUmbrella } from './umbrella.svelte';
|
|
4814
4831
|
export { default as IconUnderline } from './underline.svelte';
|
|
4832
|
+
export { default as IconUnicycle } from './unicycle.svelte';
|
|
4815
4833
|
export { default as IconUniverse } from './universe.svelte';
|
|
4816
4834
|
export { default as IconUnlink } from './unlink.svelte';
|
|
4817
4835
|
export { default as IconUpload } from './upload.svelte';
|
package/dist/icons/karate.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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M3 9l4.5 1l3 2.5"}],["path",{"d":"M13 21v-8l3 -5.5"}],["path",{"d":"M8 4.5l4 2l4 1l4 3.5l-2 3.5"}],["path",{"d":"M15.007 5a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="karate" {...props} iconNode={iconNode} {children} />
|
|
@@ -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 21c.5 -4.5 2.5 -8 7 -10"}],["path",{"d":"M13 19c-2.733 0 -4.16 -3.11 -5 -5c-1.892 -.84 -4 -1.826 -4 -4.556c1.014 -.644 2.816 -.649 4 -.444c-.312 -2.071 -.37 -4.414 1 -6c2.364 .369 3 4 3 4c1.463 -1.368 4 -2 6 -2c0 2 -.63 4.538 -2 6q 3.687 .996 4 3c-1.586 1.36 -3.933 1.311 -6 1q .19 1.098 -1 4"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="leaf-maple" {...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 LeafMaple: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type LeafMaple = ReturnType<typeof LeafMaple>;
|
|
8
|
+
export default LeafMaple;
|
|
@@ -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":"M18.49 3.666l-12.976 16.673"}],["path",{"d":"M5.51 3.666l12.976 16.673"}],["path",{"d":"M5 5a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="notdef" {...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 Notdef: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Notdef = ReturnType<typeof Notdef>;
|
|
8
|
+
export default Notdef;
|
|
@@ -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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M14 21h-4c0 -4.364 -1 -7 -2 -11q 4 2 8 0c-1 4 -2 6.636 -2 11"}],["path",{"d":"M11 2c0 2.5 -1 2.66 -1 4a1.9 1.9 0 0 0 2 2a1.87 1.87 0 0 0 2 -2c0 -1.41 -1 -3 -3 -4"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="olympic-torch" {...props} iconNode={iconNode} {children} />
|
|
@@ -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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M9.007 5a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}],["path",{"d":"M5 21l3 -3l.75 -1.5"}],["path",{"d":"M14 21v-4l-4 -3l.5 -6"}],["path",{"d":"M5 12l1 -3l4.5 -1l3.5 3l4 -.5"}],["path",{"d":"M18.007 15.5a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="play-basketball" {...props} iconNode={iconNode} {children} />
|
|
@@ -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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M3 17l5 1l.75 -1.5"}],["path",{"d":"M14 21v-4l-4 -3l1 -6"}],["path",{"d":"M6 12v-3l5 -1l3 3l3 1"}],["path",{"d":"M18.007 19.5a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"}],["path",{"d":"M10.007 5a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="play-football" {...props} iconNode={iconNode} {children} />
|
|
@@ -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":"M13 21l3.5 -2l-4.5 -4l2 -4.5"}],["path",{"d":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M13 21l3.5 -2l-4.5 -4l2 -4.5"}],["path",{"d":"M5 7l4 3l5 .5l4 2.5l2.5 3"}],["path",{"d":"M4 20l5 -1l1.5 -2"}],["path",{"d":"M13.007 8a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}],["path",{"d":"M6.007 3.5a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="play-handball" {...props} iconNode={iconNode} {children} />
|
|
@@ -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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M11.007 5a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}],["path",{"d":"M19.007 9.5a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"}],["path",{"d":"M2 16l5 1l.5 -2.5"}],["path",{"d":"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="play-volleyball" {...props} iconNode={iconNode} {children} />
|
|
@@ -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":"M14 15h-4v6h4v-6"}],["path",{"d":"M12 15v-4"}],["path",{"d":"M8 21h8"}],["path",{"d":"M19 3v8h-14v-8"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="rugby" {...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 Rugby: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Rugby = ReturnType<typeof Rugby>;
|
|
8
|
+
export default Rugby;
|
package/dist/icons/run.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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M11.007 5a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}],["path",{"d":"M4 17l5 1l.75 -1.5"}],["path",{"d":"M15 21v-4l-4 -3l1 -6"}],["path",{"d":"M7 12v-3l5 -1l3 3l3 1"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="run" {...props} iconNode={iconNode} {children} />
|
|
@@ -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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M5.5 15h3.5l.75 -1.5"}],["path",{"d":"M14 19v-5l-2.5 -3l2.5 -4"}],["path",{"d":"M8 8l3 -1h4l1 3h3"}],["path",{"d":"M17.5 21a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1"}],["path",{"d":"M3 18c0 .552 .895 1 2 1h14c1.105 0 2 -.448 2 -1"}],["path",{"d":"M6.5 21a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1"}],["path",{"d":"M14.007 4a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="skateboarding" {...props} iconNode={iconNode} {children} />
|
|
@@ -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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M17 17.5l-5 -4.5v-6l5 4"}],["path",{"d":"M7 17.5l5 -4.5"}],["path",{"d":"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"}],["path",{"d":"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"}],["path",{"d":"M7 11l5 -4"}],["path",{"d":"M10.007 4a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="ski-jumping" {...props} iconNode={iconNode} {children} />
|
|
@@ -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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M6.5 21l3.5 -5"}],["path",{"d":"M5 11l7 -2"}],["path",{"d":"M16 21l-4 -7v-5l7 -4"}],["path",{"d":"M9.007 6a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="stretching-2" {...props} iconNode={iconNode} {children} />
|
|
@@ -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 19a4 4 0 0 0 4 -4v-7"}],["path",{"d":"M14 8v10a1 1 0 0 0 1.45 .89l2.55 -1.27"}],["path",{"d":"M6 5h12"}],["path",{"d":"M6 8h12"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="taiwan-dollar" {...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 TaiwanDollar: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type TaiwanDollar = ReturnType<typeof TaiwanDollar>;
|
|
8
|
+
export default TaiwanDollar;
|
|
@@ -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 21l-1.74 -6"}],["path",{"d":"M7 21l1.74 -6"}],["path",{"d":"M12 4v-1"}],["path",{"d":"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0"}],["path",{"d":"M18 10a6 6 0 1 0 -12 0a6 6 0 0 0 12 0"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="target-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 Target2: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Target2 = ReturnType<typeof Target2>;
|
|
8
|
+
export default Target2;
|
|
@@ -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 16a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"}],["path",{"d":"M12 16v-11"}],["path",{"d":"M8 3q 2 2 7 2"}]];
|
|
13
|
+
</script>
|
|
14
|
+
<Icon type="outline" name="unicycle" {...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 Unicycle: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type Unicycle = ReturnType<typeof Unicycle>;
|
|
8
|
+
export default Unicycle;
|
|
@@ -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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M5 8l3 4l5 1l7 -1"}],["path",{"d":"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"}],["path",{"d":"M12 16l1 -3"}],["path",{"d":"M11.007 9a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}],["path",{"d":"M5.007 3.5a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="waterpolo" {...props} iconNode={iconNode} {children} />
|
package/dist/icons/yoga.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":"
|
|
12
|
+
const iconNode: IconNode = [["path",{"d":"M4 20h4l1.5 -3"}],["path",{"d":"M17 20l-1 -5h-5l1 -7"}],["path",{"d":"M4 10l4 -1l4 -1l4 1.5l4 1.5"}],["path",{"d":"M10.007 5a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}]];
|
|
13
13
|
</script>
|
|
14
14
|
<Icon type="outline" name="yoga" {...props} iconNode={iconNode} {children} />
|
package/dist/icons-list.js
CHANGED
|
@@ -9,6 +9,8 @@ export default [
|
|
|
9
9
|
"access-point",
|
|
10
10
|
"accessible-off",
|
|
11
11
|
"accessible",
|
|
12
|
+
"acorn",
|
|
13
|
+
"acrobatic",
|
|
12
14
|
"activity-heartbeat",
|
|
13
15
|
"activity",
|
|
14
16
|
"ad-2",
|
|
@@ -401,6 +403,7 @@ export default [
|
|
|
401
403
|
"ballpen-off",
|
|
402
404
|
"ballpen",
|
|
403
405
|
"ban",
|
|
406
|
+
"banana",
|
|
404
407
|
"bandage-off",
|
|
405
408
|
"bandage",
|
|
406
409
|
"barbell-off",
|
|
@@ -654,6 +657,7 @@ export default [
|
|
|
654
657
|
"brand-arc",
|
|
655
658
|
"brand-asana",
|
|
656
659
|
"brand-astro",
|
|
660
|
+
"brand-audible",
|
|
657
661
|
"brand-auth0",
|
|
658
662
|
"brand-aws",
|
|
659
663
|
"brand-azure",
|
|
@@ -1045,6 +1049,7 @@ export default [
|
|
|
1045
1049
|
"building-cog",
|
|
1046
1050
|
"building-community",
|
|
1047
1051
|
"building-cottage",
|
|
1052
|
+
"building-eiffel-tower",
|
|
1048
1053
|
"building-estate",
|
|
1049
1054
|
"building-factory-2",
|
|
1050
1055
|
"building-factory",
|
|
@@ -1160,12 +1165,14 @@ export default [
|
|
|
1160
1165
|
"car-4wd",
|
|
1161
1166
|
"car-crane",
|
|
1162
1167
|
"car-crash",
|
|
1168
|
+
"car-door",
|
|
1163
1169
|
"car-fan-1",
|
|
1164
1170
|
"car-fan-2",
|
|
1165
1171
|
"car-fan-3",
|
|
1166
1172
|
"car-fan-auto",
|
|
1167
1173
|
"car-fan",
|
|
1168
1174
|
"car-garage",
|
|
1175
|
+
"car-lifter",
|
|
1169
1176
|
"car-off-road",
|
|
1170
1177
|
"car-off",
|
|
1171
1178
|
"car-suspension",
|
|
@@ -1305,6 +1312,7 @@ export default [
|
|
|
1305
1312
|
"chevrons-up-right",
|
|
1306
1313
|
"chevrons-up",
|
|
1307
1314
|
"chisel",
|
|
1315
|
+
"chocolate",
|
|
1308
1316
|
"christmas-ball",
|
|
1309
1317
|
"christmas-tree-off",
|
|
1310
1318
|
"christmas-tree",
|
|
@@ -2123,6 +2131,7 @@ export default [
|
|
|
2123
2131
|
"droplet",
|
|
2124
2132
|
"droplets",
|
|
2125
2133
|
"dual-screen",
|
|
2134
|
+
"dumbbell",
|
|
2126
2135
|
"dumpling",
|
|
2127
2136
|
"e-passport",
|
|
2128
2137
|
"ear-off",
|
|
@@ -2167,6 +2176,7 @@ export default [
|
|
|
2167
2176
|
"exclamation-circle",
|
|
2168
2177
|
"exclamation-mark-off",
|
|
2169
2178
|
"exclamation-mark",
|
|
2179
|
+
"exercise-ball",
|
|
2170
2180
|
"explicit-off",
|
|
2171
2181
|
"explicit",
|
|
2172
2182
|
"exposure-0",
|
|
@@ -2423,6 +2433,7 @@ export default [
|
|
|
2423
2433
|
"float-left",
|
|
2424
2434
|
"float-none",
|
|
2425
2435
|
"float-right",
|
|
2436
|
+
"flood",
|
|
2426
2437
|
"flower-off",
|
|
2427
2438
|
"flower",
|
|
2428
2439
|
"focus-2",
|
|
@@ -2773,6 +2784,7 @@ export default [
|
|
|
2773
2784
|
"http-que",
|
|
2774
2785
|
"http-trace-off",
|
|
2775
2786
|
"http-trace",
|
|
2787
|
+
"hula-hoop",
|
|
2776
2788
|
"ice-cream-2",
|
|
2777
2789
|
"ice-cream-off",
|
|
2778
2790
|
"ice-cream",
|
|
@@ -2924,6 +2936,7 @@ export default [
|
|
|
2924
2936
|
"layout-sidebar",
|
|
2925
2937
|
"layout",
|
|
2926
2938
|
"leaf-2",
|
|
2939
|
+
"leaf-maple",
|
|
2927
2940
|
"leaf-off",
|
|
2928
2941
|
"leaf",
|
|
2929
2942
|
"lego-off",
|
|
@@ -3501,6 +3514,7 @@ export default [
|
|
|
3501
3514
|
"no-creative-commons",
|
|
3502
3515
|
"no-derivatives",
|
|
3503
3516
|
"north-star",
|
|
3517
|
+
"notdef",
|
|
3504
3518
|
"note-off",
|
|
3505
3519
|
"note",
|
|
3506
3520
|
"notebook-off",
|
|
@@ -4108,6 +4122,7 @@ export default [
|
|
|
4108
4122
|
"rss",
|
|
4109
4123
|
"rubber-stamp-off",
|
|
4110
4124
|
"rubber-stamp",
|
|
4125
|
+
"rugby",
|
|
4111
4126
|
"ruler-2-off",
|
|
4112
4127
|
"ruler-2",
|
|
4113
4128
|
"ruler-3",
|
|
@@ -4619,12 +4634,14 @@ export default [
|
|
|
4619
4634
|
"tag",
|
|
4620
4635
|
"tags-off",
|
|
4621
4636
|
"tags",
|
|
4637
|
+
"taiwan-dollar",
|
|
4622
4638
|
"tallymark-1",
|
|
4623
4639
|
"tallymark-2",
|
|
4624
4640
|
"tallymark-3",
|
|
4625
4641
|
"tallymark-4",
|
|
4626
4642
|
"tallymarks",
|
|
4627
4643
|
"tank",
|
|
4644
|
+
"target-2",
|
|
4628
4645
|
"target-arrow",
|
|
4629
4646
|
"target-off",
|
|
4630
4647
|
"target",
|
|
@@ -4813,6 +4830,7 @@ export default [
|
|
|
4813
4830
|
"umbrella-off",
|
|
4814
4831
|
"umbrella",
|
|
4815
4832
|
"underline",
|
|
4833
|
+
"unicycle",
|
|
4816
4834
|
"universe",
|
|
4817
4835
|
"unlink",
|
|
4818
4836
|
"upload",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte-runes",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.43.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",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"ui"
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@tabler/icons": "3.
|
|
55
|
+
"@tabler/icons": "3.43.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@sveltejs/package": "^2.3.7",
|