@tabler/icons-svelte 3.21.0 → 3.22.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/brand-messenger-filled.svelte +6 -0
- package/dist/icons/brand-messenger-filled.svelte.d.ts +17 -0
- package/dist/icons/brand-tesla.svelte +6 -0
- package/dist/icons/brand-tesla.svelte.d.ts +17 -0
- package/dist/icons/brand-weibo-filled.svelte +6 -0
- package/dist/icons/brand-weibo-filled.svelte.d.ts +17 -0
- package/dist/icons/bubble-text-filled.svelte +6 -0
- package/dist/icons/bubble-text-filled.svelte.d.ts +17 -0
- package/dist/icons/clipboard-search.svelte +6 -0
- package/dist/icons/clipboard-search.svelte.d.ts +17 -0
- package/dist/icons/ghost-3-filled.svelte +6 -0
- package/dist/icons/ghost-3-filled.svelte.d.ts +17 -0
- package/dist/icons/golf-filled.svelte +6 -0
- package/dist/icons/golf-filled.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +18 -0
- package/dist/icons/index.js +18 -0
- package/dist/icons/keyboard-filled.svelte +6 -0
- package/dist/icons/keyboard-filled.svelte.d.ts +17 -0
- package/dist/icons/live-view-filled.svelte +6 -0
- package/dist/icons/live-view-filled.svelte.d.ts +17 -0
- package/dist/icons/meeple-filled.svelte +6 -0
- package/dist/icons/meeple-filled.svelte.d.ts +17 -0
- package/dist/icons/message-2-filled.svelte +6 -0
- package/dist/icons/message-2-filled.svelte.d.ts +17 -0
- package/dist/icons/nurse-filled.svelte +6 -0
- package/dist/icons/nurse-filled.svelte.d.ts +17 -0
- package/dist/icons/nurse.svelte +1 -1
- package/dist/icons/palette-filled.svelte +6 -0
- package/dist/icons/palette-filled.svelte.d.ts +17 -0
- package/dist/icons/quote-filled.svelte +6 -0
- package/dist/icons/quote-filled.svelte.d.ts +17 -0
- package/dist/icons/sos.svelte +1 -1
- package/dist/icons/tag-minus.svelte +6 -0
- package/dist/icons/tag-minus.svelte.d.ts +17 -0
- package/dist/icons/tag-plus.svelte +6 -0
- package/dist/icons/tag-plus.svelte.d.ts +17 -0
- package/dist/icons/video-filled.svelte +6 -0
- package/dist/icons/video-filled.svelte.d.ts +17 -0
- package/dist/icons/windsock-filled.svelte +6 -0
- package/dist/icons/windsock-filled.svelte.d.ts +17 -0
- package/dist/icons-list.js +18 -0
- package/package.json +2 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M18.894 5.446c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.233 -.101l-4.374 .931l-.033 .005l-.042 .008l-.031 .002l-.01 .003h-.018l-.052 .004l-.024 -.001l-.02 .001l-.033 -.003h-.035l-.022 -.004l-.022 -.002l-.035 -.007l-.034 -.005l-.016 -.004l-.024 -.005l-.049 -.016l-.024 -.005l-.011 -.005l-.022 -.007l-.045 -.02l-.03 -.012l-.011 -.006l-.014 -.006l-.031 -.018l-.045 -.024l-.016 -.011l-.037 -.026l-.04 -.027l-.015 -.013l-.043 -.04l-.025 -.02l-.062 -.07l-.013 -.013l-.011 -.014l-.027 -.04l-.026 -.035a1 1 0 0 1 -.054 -.095l-.006 -.013l-.019 -.045l-.02 -.042l-.004 -.016l-.004 -.01l-.011 -.04l-.013 -.04l-.002 -.014l-.005 -.019l-.005 -.033l-.008 -.042l-.002 -.031l-.003 -.026l-.004 -.054l.001 -.036l.001 -.023l.002 -.053l.004 -.025v-.019l.008 -.036l.005 -.033l.004 -.017l.005 -.023l.018 -.06l.003 -.013l1.15 -3.45l-.022 -.037c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168c3.898 -2.766 9.469 -2.54 13.073 .535m-2.062 5a1 1 0 0 0 -1.387 -.278l-2.318 1.544l-1.42 -1.42a1 1 0 0 0 -1.262 -.124l-3 2a1 1 0 0 0 -.277 1.387l.07 .093a1 1 0 0 0 1.317 .184l2.317 -1.545l1.42 1.42a1 1 0 0 0 1.263 .125l3 -2a1 1 0 0 0 .277 -1.387" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="brand-messenger-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type BrandMessengerFilledProps = typeof __propDef.props;
|
|
13
|
+
export type BrandMessengerFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type BrandMessengerFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BrandMessengerFilled extends SvelteComponentTyped<BrandMessengerFilledProps, BrandMessengerFilledEvents, BrandMessengerFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 21l3 -11c2.359 0 3 0 3 1c0 0 1.18 -1.745 2 -3c-3.077 -1.464 -6 -1 -6 -1l-2 2l-2 -2s-2.923 -.464 -6 1c.82 1.255 2 3 2 3c0 -1 .744 -1 3 -1z" }], ["path", { "d": "M20 5c-5.114 -2 -10.886 -2 -16 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="brand-tesla" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type BrandTeslaProps = typeof __propDef.props;
|
|
13
|
+
export type BrandTeslaEvents = typeof __propDef.events;
|
|
14
|
+
export type BrandTeslaSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BrandTesla extends SvelteComponentTyped<BrandTeslaProps, BrandTeslaEvents, BrandTeslaSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M4.972 8.183c2.81 -2.987 6.162 -4.207 8.006 -2.24c.298 .316 .554 .773 .736 1.266l.127 -.031c2.064 -.469 4 1.287 3.817 3.544l-.005 .036l.15 .057c1.46 .574 2.14 1.355 2.193 3.081l.004 .231c0 3.776 -4.107 6.873 -9 6.873c-4.854 0 -9 -2.72 -9 -6.565c0 -2.04 1.068 -4.222 2.972 -6.252" }], ["path", { "d": "M16 3a6 6 0 0 1 6 6v1a1 1 0 0 1 -2 0v-1a4 4 0 0 0 -4 -4h-1a1 1 0 0 1 0 -2z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="brand-weibo-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type BrandWeiboFilledProps = typeof __propDef.props;
|
|
13
|
+
export type BrandWeiboFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type BrandWeiboFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BrandWeiboFilled extends SvelteComponentTyped<BrandWeiboFilledProps, BrandWeiboFilledEvents, BrandWeiboFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.4 2l.253 .005a6.34 6.34 0 0 1 5.235 3.166l.089 .163l.178 .039a6.33 6.33 0 0 1 4.254 3.406l.105 .228a6.334 6.334 0 0 1 -5.74 8.865l-.144 -.002l-.037 .052a5.26 5.26 0 0 1 -5.458 1.926l-.186 -.051l-3.435 2.06a1 1 0 0 1 -1.508 -.743l-.006 -.114v-2.435l-.055 -.026a3.67 3.67 0 0 1 -1.554 -1.498l-.102 -.199a3.67 3.67 0 0 1 -.312 -2.14l.038 -.21l-.116 -.092a5.8 5.8 0 0 1 -1.887 -6.025l.071 -.238a5.8 5.8 0 0 1 5.42 -4.004h.157l.15 -.165a6.33 6.33 0 0 1 4.33 -1.963zm1.6 11h-5a1 1 0 0 0 0 2h5a1 1 0 0 0 0 -2m3 -4h-10a1 1 0 1 0 0 2h10a1 1 0 0 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="bubble-text-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type BubbleTextFilledProps = typeof __propDef.props;
|
|
13
|
+
export type BubbleTextFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type BubbleTextFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BubbleTextFilled extends SvelteComponentTyped<BubbleTextFilledProps, BubbleTextFilledEvents, BubbleTextFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h4.5m7.5 -10v-4a2 2 0 0 0 -2 -2h-2" }], ["path", { "d": "M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2" }], ["path", { "d": "M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" }], ["path", { "d": "M20.2 20.2l1.8 1.8" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="clipboard-search" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type ClipboardSearchProps = typeof __propDef.props;
|
|
13
|
+
export type ClipboardSearchEvents = typeof __propDef.events;
|
|
14
|
+
export type ClipboardSearchSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ClipboardSearch extends SvelteComponentTyped<ClipboardSearchProps, ClipboardSearchEvents, ClipboardSearchSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 3a8 8 0 0 1 8 8v6.954l.009 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.111 .502 -2.42 .22 -3.266 -.74a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.249c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.01 -.104l.007 -.077l-.008 .074v-6.95l.004 -.25a8 8 0 0 1 7.747 -7.746zm-1.99 6h-.01a1 1 0 1 0 0 2h.01a1 1 0 0 0 0 -2m4 0h-.01a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="ghost-3-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type Ghost_3FilledProps = typeof __propDef.props;
|
|
13
|
+
export type Ghost_3FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type Ghost_3FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Ghost_3Filled extends SvelteComponentTyped<Ghost_3FilledProps, Ghost_3FilledEvents, Ghost_3FilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M11 3a1 1 0 0 1 1.496 -.868l7 4a1 1 0 0 1 0 1.736l-6.496 3.712v6.42a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -1 -1z" }], ["path", { "d": "M14.135 17.168a1 1 0 0 1 1.367 -.363c.916 .532 1.498 1.291 1.498 2.195c0 1.84 -2.319 3 -5 3s-5 -1.16 -5 -3c0 -.911 .577 -1.66 1.498 -2.195a1 1 0 1 1 1.004 1.73c-.365 .212 -.502 .39 -.502 .465c0 .086 .179 .296 .622 .518c.6 .3 1.456 .482 2.378 .482s1.777 -.182 2.378 -.482c.443 -.222 .622 -.432 .622 -.518c0 -.07 -.142 -.256 -.502 -.465a1 1 0 0 1 -.363 -1.367" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="golf-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type GolfFilledProps = typeof __propDef.props;
|
|
13
|
+
export type GolfFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type GolfFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class GolfFilled extends SvelteComponentTyped<GolfFilledProps, GolfFilledEvents, GolfFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -902,6 +902,7 @@ export { default as IconBrandTeams } from './brand-teams.svelte';
|
|
|
902
902
|
export { default as IconBrandTed } from './brand-ted.svelte';
|
|
903
903
|
export { default as IconBrandTelegram } from './brand-telegram.svelte';
|
|
904
904
|
export { default as IconBrandTerraform } from './brand-terraform.svelte';
|
|
905
|
+
export { default as IconBrandTesla } from './brand-tesla.svelte';
|
|
905
906
|
export { default as IconBrandTether } from './brand-tether.svelte';
|
|
906
907
|
export { default as IconBrandThingiverse } from './brand-thingiverse.svelte';
|
|
907
908
|
export { default as IconBrandThreads } from './brand-threads.svelte';
|
|
@@ -1437,6 +1438,7 @@ export { default as IconClipboardHeart } from './clipboard-heart.svelte';
|
|
|
1437
1438
|
export { default as IconClipboardList } from './clipboard-list.svelte';
|
|
1438
1439
|
export { default as IconClipboardOff } from './clipboard-off.svelte';
|
|
1439
1440
|
export { default as IconClipboardPlus } from './clipboard-plus.svelte';
|
|
1441
|
+
export { default as IconClipboardSearch } from './clipboard-search.svelte';
|
|
1440
1442
|
export { default as IconClipboardSmile } from './clipboard-smile.svelte';
|
|
1441
1443
|
export { default as IconClipboardText } from './clipboard-text.svelte';
|
|
1442
1444
|
export { default as IconClipboardTypography } from './clipboard-typography.svelte';
|
|
@@ -4449,7 +4451,9 @@ export { default as IconTableShare } from './table-share.svelte';
|
|
|
4449
4451
|
export { default as IconTableShortcut } from './table-shortcut.svelte';
|
|
4450
4452
|
export { default as IconTableSpark } from './table-spark.svelte';
|
|
4451
4453
|
export { default as IconTable } from './table.svelte';
|
|
4454
|
+
export { default as IconTagMinus } from './tag-minus.svelte';
|
|
4452
4455
|
export { default as IconTagOff } from './tag-off.svelte';
|
|
4456
|
+
export { default as IconTagPlus } from './tag-plus.svelte';
|
|
4453
4457
|
export { default as IconTagStarred } from './tag-starred.svelte';
|
|
4454
4458
|
export { default as IconTag } from './tag.svelte';
|
|
4455
4459
|
export { default as IconTagsOff } from './tags-off.svelte';
|
|
@@ -5042,6 +5046,7 @@ export { default as IconBrandGoogleFilled } from './brand-google-filled.svelte';
|
|
|
5042
5046
|
export { default as IconBrandInstagramFilled } from './brand-instagram-filled.svelte';
|
|
5043
5047
|
export { default as IconBrandKickFilled } from './brand-kick-filled.svelte';
|
|
5044
5048
|
export { default as IconBrandLinkedinFilled } from './brand-linkedin-filled.svelte';
|
|
5049
|
+
export { default as IconBrandMessengerFilled } from './brand-messenger-filled.svelte';
|
|
5045
5050
|
export { default as IconBrandOpenSourceFilled } from './brand-open-source-filled.svelte';
|
|
5046
5051
|
export { default as IconBrandOperaFilled } from './brand-opera-filled.svelte';
|
|
5047
5052
|
export { default as IconBrandPatreonFilled } from './brand-patreon-filled.svelte';
|
|
@@ -5059,6 +5064,7 @@ export { default as IconBrandTumblrFilled } from './brand-tumblr-filled.svelte';
|
|
|
5059
5064
|
export { default as IconBrandTwitterFilled } from './brand-twitter-filled.svelte';
|
|
5060
5065
|
export { default as IconBrandVercelFilled } from './brand-vercel-filled.svelte';
|
|
5061
5066
|
export { default as IconBrandVimeoFilled } from './brand-vimeo-filled.svelte';
|
|
5067
|
+
export { default as IconBrandWeiboFilled } from './brand-weibo-filled.svelte';
|
|
5062
5068
|
export { default as IconBrandWhatsappFilled } from './brand-whatsapp-filled.svelte';
|
|
5063
5069
|
export { default as IconBrandWindowsFilled } from './brand-windows-filled.svelte';
|
|
5064
5070
|
export { default as IconBrandXFilled } from './brand-x-filled.svelte';
|
|
@@ -5070,6 +5076,7 @@ export { default as IconBrightnessAutoFilled } from './brightness-auto-filled.sv
|
|
|
5070
5076
|
export { default as IconBrightnessDownFilled } from './brightness-down-filled.svelte';
|
|
5071
5077
|
export { default as IconBrightnessUpFilled } from './brightness-up-filled.svelte';
|
|
5072
5078
|
export { default as IconBrightnessFilled } from './brightness-filled.svelte';
|
|
5079
|
+
export { default as IconBubbleTextFilled } from './bubble-text-filled.svelte';
|
|
5073
5080
|
export { default as IconBubbleFilled } from './bubble-filled.svelte';
|
|
5074
5081
|
export { default as IconBugFilled } from './bug-filled.svelte';
|
|
5075
5082
|
export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
|
|
@@ -5278,12 +5285,14 @@ export { default as IconFountainFilled } from './fountain-filled.svelte';
|
|
|
5278
5285
|
export { default as IconFunctionFilled } from './function-filled.svelte';
|
|
5279
5286
|
export { default as IconGaugeFilled } from './gauge-filled.svelte';
|
|
5280
5287
|
export { default as IconGhost2Filled } from './ghost-2-filled.svelte';
|
|
5288
|
+
export { default as IconGhost3Filled } from './ghost-3-filled.svelte';
|
|
5281
5289
|
export { default as IconGhostFilled } from './ghost-filled.svelte';
|
|
5282
5290
|
export { default as IconGiftCardFilled } from './gift-card-filled.svelte';
|
|
5283
5291
|
export { default as IconGiftFilled } from './gift-filled.svelte';
|
|
5284
5292
|
export { default as IconGlassFullFilled } from './glass-full-filled.svelte';
|
|
5285
5293
|
export { default as IconGlassFilled } from './glass-filled.svelte';
|
|
5286
5294
|
export { default as IconGlobeFilled } from './globe-filled.svelte';
|
|
5295
|
+
export { default as IconGolfFilled } from './golf-filled.svelte';
|
|
5287
5296
|
export { default as IconGpsFilled } from './gps-filled.svelte';
|
|
5288
5297
|
export { default as IconGraphFilled } from './graph-filled.svelte';
|
|
5289
5298
|
export { default as IconGuitarPickFilled } from './guitar-pick-filled.svelte';
|
|
@@ -5361,6 +5370,7 @@ export { default as IconIroningFilled } from './ironing-filled.svelte';
|
|
|
5361
5370
|
export { default as IconJetpackFilled } from './jetpack-filled.svelte';
|
|
5362
5371
|
export { default as IconJewishStarFilled } from './jewish-star-filled.svelte';
|
|
5363
5372
|
export { default as IconKeyFilled } from './key-filled.svelte';
|
|
5373
|
+
export { default as IconKeyboardFilled } from './keyboard-filled.svelte';
|
|
5364
5374
|
export { default as IconKeyframeAlignCenterFilled } from './keyframe-align-center-filled.svelte';
|
|
5365
5375
|
export { default as IconKeyframeAlignHorizontalFilled } from './keyframe-align-horizontal-filled.svelte';
|
|
5366
5376
|
export { default as IconKeyframeAlignVerticalFilled } from './keyframe-align-vertical-filled.svelte';
|
|
@@ -5398,6 +5408,7 @@ export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svel
|
|
|
5398
5408
|
export { default as IconLayoutFilled } from './layout-filled.svelte';
|
|
5399
5409
|
export { default as IconLegoFilled } from './lego-filled.svelte';
|
|
5400
5410
|
export { default as IconLivePhotoFilled } from './live-photo-filled.svelte';
|
|
5411
|
+
export { default as IconLiveViewFilled } from './live-view-filled.svelte';
|
|
5401
5412
|
export { default as IconLocationFilled } from './location-filled.svelte';
|
|
5402
5413
|
export { default as IconLockSquareRoundedFilled } from './lock-square-rounded-filled.svelte';
|
|
5403
5414
|
export { default as IconLockFilled } from './lock-filled.svelte';
|
|
@@ -5410,7 +5421,9 @@ export { default as IconManFilled } from './man-filled.svelte';
|
|
|
5410
5421
|
export { default as IconManualGearboxFilled } from './manual-gearbox-filled.svelte';
|
|
5411
5422
|
export { default as IconMapPinFilled } from './map-pin-filled.svelte';
|
|
5412
5423
|
export { default as IconMedicalCrossFilled } from './medical-cross-filled.svelte';
|
|
5424
|
+
export { default as IconMeepleFilled } from './meeple-filled.svelte';
|
|
5413
5425
|
export { default as IconMelonFilled } from './melon-filled.svelte';
|
|
5426
|
+
export { default as IconMessage2Filled } from './message-2-filled.svelte';
|
|
5414
5427
|
export { default as IconMessageChatbotFilled } from './message-chatbot-filled.svelte';
|
|
5415
5428
|
export { default as IconMessageCircleFilled } from './message-circle-filled.svelte';
|
|
5416
5429
|
export { default as IconMessageReportFilled } from './message-report-filled.svelte';
|
|
@@ -5438,10 +5451,12 @@ export { default as IconMouseFilled } from './mouse-filled.svelte';
|
|
|
5438
5451
|
export { default as IconMugFilled } from './mug-filled.svelte';
|
|
5439
5452
|
export { default as IconMushroomFilled } from './mushroom-filled.svelte';
|
|
5440
5453
|
export { default as IconNavigationFilled } from './navigation-filled.svelte';
|
|
5454
|
+
export { default as IconNurseFilled } from './nurse-filled.svelte';
|
|
5441
5455
|
export { default as IconOctagonFilled } from './octagon-filled.svelte';
|
|
5442
5456
|
export { default as IconOvalVerticalFilled } from './oval-vertical-filled.svelte';
|
|
5443
5457
|
export { default as IconOvalFilled } from './oval-filled.svelte';
|
|
5444
5458
|
export { default as IconPaintFilled } from './paint-filled.svelte';
|
|
5459
|
+
export { default as IconPaletteFilled } from './palette-filled.svelte';
|
|
5445
5460
|
export { default as IconPanoramaHorizontalFilled } from './panorama-horizontal-filled.svelte';
|
|
5446
5461
|
export { default as IconPanoramaVerticalFilled } from './panorama-vertical-filled.svelte';
|
|
5447
5462
|
export { default as IconParkingCircleFilled } from './parking-circle-filled.svelte';
|
|
@@ -5488,6 +5503,7 @@ export { default as IconPooFilled } from './poo-filled.svelte';
|
|
|
5488
5503
|
export { default as IconPresentationAnalyticsFilled } from './presentation-analytics-filled.svelte';
|
|
5489
5504
|
export { default as IconPresentationFilled } from './presentation-filled.svelte';
|
|
5490
5505
|
export { default as IconPuzzleFilled } from './puzzle-filled.svelte';
|
|
5506
|
+
export { default as IconQuoteFilled } from './quote-filled.svelte';
|
|
5491
5507
|
export { default as IconRadarFilled } from './radar-filled.svelte';
|
|
5492
5508
|
export { default as IconRadioactiveFilled } from './radioactive-filled.svelte';
|
|
5493
5509
|
export { default as IconReceiptFilled } from './receipt-filled.svelte';
|
|
@@ -5677,7 +5693,9 @@ export { default as IconTrophyFilled } from './trophy-filled.svelte';
|
|
|
5677
5693
|
export { default as IconUmbrellaFilled } from './umbrella-filled.svelte';
|
|
5678
5694
|
export { default as IconUserFilled } from './user-filled.svelte';
|
|
5679
5695
|
export { default as IconVersionsFilled } from './versions-filled.svelte';
|
|
5696
|
+
export { default as IconVideoFilled } from './video-filled.svelte';
|
|
5680
5697
|
export { default as IconWindmillFilled } from './windmill-filled.svelte';
|
|
5698
|
+
export { default as IconWindsockFilled } from './windsock-filled.svelte';
|
|
5681
5699
|
export { default as IconWomanFilled } from './woman-filled.svelte';
|
|
5682
5700
|
export { default as IconXboxAFilled } from './xbox-a-filled.svelte';
|
|
5683
5701
|
export { default as IconXboxBFilled } from './xbox-b-filled.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -902,6 +902,7 @@ export { default as IconBrandTeams } from './brand-teams.svelte';
|
|
|
902
902
|
export { default as IconBrandTed } from './brand-ted.svelte';
|
|
903
903
|
export { default as IconBrandTelegram } from './brand-telegram.svelte';
|
|
904
904
|
export { default as IconBrandTerraform } from './brand-terraform.svelte';
|
|
905
|
+
export { default as IconBrandTesla } from './brand-tesla.svelte';
|
|
905
906
|
export { default as IconBrandTether } from './brand-tether.svelte';
|
|
906
907
|
export { default as IconBrandThingiverse } from './brand-thingiverse.svelte';
|
|
907
908
|
export { default as IconBrandThreads } from './brand-threads.svelte';
|
|
@@ -1437,6 +1438,7 @@ export { default as IconClipboardHeart } from './clipboard-heart.svelte';
|
|
|
1437
1438
|
export { default as IconClipboardList } from './clipboard-list.svelte';
|
|
1438
1439
|
export { default as IconClipboardOff } from './clipboard-off.svelte';
|
|
1439
1440
|
export { default as IconClipboardPlus } from './clipboard-plus.svelte';
|
|
1441
|
+
export { default as IconClipboardSearch } from './clipboard-search.svelte';
|
|
1440
1442
|
export { default as IconClipboardSmile } from './clipboard-smile.svelte';
|
|
1441
1443
|
export { default as IconClipboardText } from './clipboard-text.svelte';
|
|
1442
1444
|
export { default as IconClipboardTypography } from './clipboard-typography.svelte';
|
|
@@ -4449,7 +4451,9 @@ export { default as IconTableShare } from './table-share.svelte';
|
|
|
4449
4451
|
export { default as IconTableShortcut } from './table-shortcut.svelte';
|
|
4450
4452
|
export { default as IconTableSpark } from './table-spark.svelte';
|
|
4451
4453
|
export { default as IconTable } from './table.svelte';
|
|
4454
|
+
export { default as IconTagMinus } from './tag-minus.svelte';
|
|
4452
4455
|
export { default as IconTagOff } from './tag-off.svelte';
|
|
4456
|
+
export { default as IconTagPlus } from './tag-plus.svelte';
|
|
4453
4457
|
export { default as IconTagStarred } from './tag-starred.svelte';
|
|
4454
4458
|
export { default as IconTag } from './tag.svelte';
|
|
4455
4459
|
export { default as IconTagsOff } from './tags-off.svelte';
|
|
@@ -5042,6 +5046,7 @@ export { default as IconBrandGoogleFilled } from './brand-google-filled.svelte';
|
|
|
5042
5046
|
export { default as IconBrandInstagramFilled } from './brand-instagram-filled.svelte';
|
|
5043
5047
|
export { default as IconBrandKickFilled } from './brand-kick-filled.svelte';
|
|
5044
5048
|
export { default as IconBrandLinkedinFilled } from './brand-linkedin-filled.svelte';
|
|
5049
|
+
export { default as IconBrandMessengerFilled } from './brand-messenger-filled.svelte';
|
|
5045
5050
|
export { default as IconBrandOpenSourceFilled } from './brand-open-source-filled.svelte';
|
|
5046
5051
|
export { default as IconBrandOperaFilled } from './brand-opera-filled.svelte';
|
|
5047
5052
|
export { default as IconBrandPatreonFilled } from './brand-patreon-filled.svelte';
|
|
@@ -5059,6 +5064,7 @@ export { default as IconBrandTumblrFilled } from './brand-tumblr-filled.svelte';
|
|
|
5059
5064
|
export { default as IconBrandTwitterFilled } from './brand-twitter-filled.svelte';
|
|
5060
5065
|
export { default as IconBrandVercelFilled } from './brand-vercel-filled.svelte';
|
|
5061
5066
|
export { default as IconBrandVimeoFilled } from './brand-vimeo-filled.svelte';
|
|
5067
|
+
export { default as IconBrandWeiboFilled } from './brand-weibo-filled.svelte';
|
|
5062
5068
|
export { default as IconBrandWhatsappFilled } from './brand-whatsapp-filled.svelte';
|
|
5063
5069
|
export { default as IconBrandWindowsFilled } from './brand-windows-filled.svelte';
|
|
5064
5070
|
export { default as IconBrandXFilled } from './brand-x-filled.svelte';
|
|
@@ -5070,6 +5076,7 @@ export { default as IconBrightnessAutoFilled } from './brightness-auto-filled.sv
|
|
|
5070
5076
|
export { default as IconBrightnessDownFilled } from './brightness-down-filled.svelte';
|
|
5071
5077
|
export { default as IconBrightnessUpFilled } from './brightness-up-filled.svelte';
|
|
5072
5078
|
export { default as IconBrightnessFilled } from './brightness-filled.svelte';
|
|
5079
|
+
export { default as IconBubbleTextFilled } from './bubble-text-filled.svelte';
|
|
5073
5080
|
export { default as IconBubbleFilled } from './bubble-filled.svelte';
|
|
5074
5081
|
export { default as IconBugFilled } from './bug-filled.svelte';
|
|
5075
5082
|
export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
|
|
@@ -5278,12 +5285,14 @@ export { default as IconFountainFilled } from './fountain-filled.svelte';
|
|
|
5278
5285
|
export { default as IconFunctionFilled } from './function-filled.svelte';
|
|
5279
5286
|
export { default as IconGaugeFilled } from './gauge-filled.svelte';
|
|
5280
5287
|
export { default as IconGhost2Filled } from './ghost-2-filled.svelte';
|
|
5288
|
+
export { default as IconGhost3Filled } from './ghost-3-filled.svelte';
|
|
5281
5289
|
export { default as IconGhostFilled } from './ghost-filled.svelte';
|
|
5282
5290
|
export { default as IconGiftCardFilled } from './gift-card-filled.svelte';
|
|
5283
5291
|
export { default as IconGiftFilled } from './gift-filled.svelte';
|
|
5284
5292
|
export { default as IconGlassFullFilled } from './glass-full-filled.svelte';
|
|
5285
5293
|
export { default as IconGlassFilled } from './glass-filled.svelte';
|
|
5286
5294
|
export { default as IconGlobeFilled } from './globe-filled.svelte';
|
|
5295
|
+
export { default as IconGolfFilled } from './golf-filled.svelte';
|
|
5287
5296
|
export { default as IconGpsFilled } from './gps-filled.svelte';
|
|
5288
5297
|
export { default as IconGraphFilled } from './graph-filled.svelte';
|
|
5289
5298
|
export { default as IconGuitarPickFilled } from './guitar-pick-filled.svelte';
|
|
@@ -5361,6 +5370,7 @@ export { default as IconIroningFilled } from './ironing-filled.svelte';
|
|
|
5361
5370
|
export { default as IconJetpackFilled } from './jetpack-filled.svelte';
|
|
5362
5371
|
export { default as IconJewishStarFilled } from './jewish-star-filled.svelte';
|
|
5363
5372
|
export { default as IconKeyFilled } from './key-filled.svelte';
|
|
5373
|
+
export { default as IconKeyboardFilled } from './keyboard-filled.svelte';
|
|
5364
5374
|
export { default as IconKeyframeAlignCenterFilled } from './keyframe-align-center-filled.svelte';
|
|
5365
5375
|
export { default as IconKeyframeAlignHorizontalFilled } from './keyframe-align-horizontal-filled.svelte';
|
|
5366
5376
|
export { default as IconKeyframeAlignVerticalFilled } from './keyframe-align-vertical-filled.svelte';
|
|
@@ -5398,6 +5408,7 @@ export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svel
|
|
|
5398
5408
|
export { default as IconLayoutFilled } from './layout-filled.svelte';
|
|
5399
5409
|
export { default as IconLegoFilled } from './lego-filled.svelte';
|
|
5400
5410
|
export { default as IconLivePhotoFilled } from './live-photo-filled.svelte';
|
|
5411
|
+
export { default as IconLiveViewFilled } from './live-view-filled.svelte';
|
|
5401
5412
|
export { default as IconLocationFilled } from './location-filled.svelte';
|
|
5402
5413
|
export { default as IconLockSquareRoundedFilled } from './lock-square-rounded-filled.svelte';
|
|
5403
5414
|
export { default as IconLockFilled } from './lock-filled.svelte';
|
|
@@ -5410,7 +5421,9 @@ export { default as IconManFilled } from './man-filled.svelte';
|
|
|
5410
5421
|
export { default as IconManualGearboxFilled } from './manual-gearbox-filled.svelte';
|
|
5411
5422
|
export { default as IconMapPinFilled } from './map-pin-filled.svelte';
|
|
5412
5423
|
export { default as IconMedicalCrossFilled } from './medical-cross-filled.svelte';
|
|
5424
|
+
export { default as IconMeepleFilled } from './meeple-filled.svelte';
|
|
5413
5425
|
export { default as IconMelonFilled } from './melon-filled.svelte';
|
|
5426
|
+
export { default as IconMessage2Filled } from './message-2-filled.svelte';
|
|
5414
5427
|
export { default as IconMessageChatbotFilled } from './message-chatbot-filled.svelte';
|
|
5415
5428
|
export { default as IconMessageCircleFilled } from './message-circle-filled.svelte';
|
|
5416
5429
|
export { default as IconMessageReportFilled } from './message-report-filled.svelte';
|
|
@@ -5438,10 +5451,12 @@ export { default as IconMouseFilled } from './mouse-filled.svelte';
|
|
|
5438
5451
|
export { default as IconMugFilled } from './mug-filled.svelte';
|
|
5439
5452
|
export { default as IconMushroomFilled } from './mushroom-filled.svelte';
|
|
5440
5453
|
export { default as IconNavigationFilled } from './navigation-filled.svelte';
|
|
5454
|
+
export { default as IconNurseFilled } from './nurse-filled.svelte';
|
|
5441
5455
|
export { default as IconOctagonFilled } from './octagon-filled.svelte';
|
|
5442
5456
|
export { default as IconOvalVerticalFilled } from './oval-vertical-filled.svelte';
|
|
5443
5457
|
export { default as IconOvalFilled } from './oval-filled.svelte';
|
|
5444
5458
|
export { default as IconPaintFilled } from './paint-filled.svelte';
|
|
5459
|
+
export { default as IconPaletteFilled } from './palette-filled.svelte';
|
|
5445
5460
|
export { default as IconPanoramaHorizontalFilled } from './panorama-horizontal-filled.svelte';
|
|
5446
5461
|
export { default as IconPanoramaVerticalFilled } from './panorama-vertical-filled.svelte';
|
|
5447
5462
|
export { default as IconParkingCircleFilled } from './parking-circle-filled.svelte';
|
|
@@ -5488,6 +5503,7 @@ export { default as IconPooFilled } from './poo-filled.svelte';
|
|
|
5488
5503
|
export { default as IconPresentationAnalyticsFilled } from './presentation-analytics-filled.svelte';
|
|
5489
5504
|
export { default as IconPresentationFilled } from './presentation-filled.svelte';
|
|
5490
5505
|
export { default as IconPuzzleFilled } from './puzzle-filled.svelte';
|
|
5506
|
+
export { default as IconQuoteFilled } from './quote-filled.svelte';
|
|
5491
5507
|
export { default as IconRadarFilled } from './radar-filled.svelte';
|
|
5492
5508
|
export { default as IconRadioactiveFilled } from './radioactive-filled.svelte';
|
|
5493
5509
|
export { default as IconReceiptFilled } from './receipt-filled.svelte';
|
|
@@ -5677,7 +5693,9 @@ export { default as IconTrophyFilled } from './trophy-filled.svelte';
|
|
|
5677
5693
|
export { default as IconUmbrellaFilled } from './umbrella-filled.svelte';
|
|
5678
5694
|
export { default as IconUserFilled } from './user-filled.svelte';
|
|
5679
5695
|
export { default as IconVersionsFilled } from './versions-filled.svelte';
|
|
5696
|
+
export { default as IconVideoFilled } from './video-filled.svelte';
|
|
5680
5697
|
export { default as IconWindmillFilled } from './windmill-filled.svelte';
|
|
5698
|
+
export { default as IconWindsockFilled } from './windsock-filled.svelte';
|
|
5681
5699
|
export { default as IconWomanFilled } from './woman-filled.svelte';
|
|
5682
5700
|
export { default as IconXboxAFilled } from './xbox-a-filled.svelte';
|
|
5683
5701
|
export { default as IconXboxBFilled } from './xbox-b-filled.svelte';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M20 5a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-16a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3zm-14 8a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1m12 0a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1m-7.998 0a1 1 0 0 0 -.004 2l4 .01a1 1 0 0 0 .005 -2zm-4.002 -4a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1m4 0a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1m4 0a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1m4 0a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="keyboard-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type KeyboardFilledProps = typeof __propDef.props;
|
|
13
|
+
export type KeyboardFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type KeyboardFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class KeyboardFilled extends SvelteComponentTyped<KeyboardFilledProps, KeyboardFilledEvents, KeyboardFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M8 3a1 1 0 1 1 0 2h-2a1 1 0 0 0 -1 1v2a1 1 0 1 1 -2 0v-2a3 3 0 0 1 3 -3z" }], ["path", { "d": "M4 15a1 1 0 0 1 1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 0 2h-2a3 3 0 0 1 -3 -3v-2a1 1 0 0 1 1 -1" }], ["path", { "d": "M18 3a3 3 0 0 1 3 3v2a1 1 0 0 1 -2 0v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 0 -2z" }], ["path", { "d": "M20 15a1 1 0 0 1 1 1v2a3 3 0 0 1 -3 3h-2a1 1 0 0 1 0 -2h2a1 1 0 0 0 1 -1v-2a1 1 0 0 1 1 -1" }], ["path", { "d": "M15.19 7.214a5 5 0 0 1 1.185 6.27l-.056 .09l-3.484 4.976a1 1 0 0 1 -.077 .103l-.017 .019l-.057 .056l-.012 .013l-.019 .017a1 1 0 0 1 -.096 .073l-.053 .03l-.038 .024l-.011 .005a1 1 0 0 1 -.223 .083l-.045 .008l-.066 .012a1 1 0 0 1 -.242 0l-.061 -.011l-.05 -.01a1 1 0 0 1 -.234 -.087l-.047 -.028l-.044 -.026l-.011 -.008l-.032 -.025l-.053 -.04l-.01 -.01l-.009 -.007l-.034 -.035l-.035 -.034l-.007 -.01l-.01 -.009l-.037 -.05l-.024 -.03l-3.5 -5l-.056 -.089a5 5 0 0 1 7.566 -6.27m-3.191 2.786a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="live-view-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type LiveViewFilledProps = typeof __propDef.props;
|
|
13
|
+
export type LiveViewFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type LiveViewFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class LiveViewFilled extends SvelteComponentTyped<LiveViewFilledProps, LiveViewFilledEvents, LiveViewFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 2c2.486 0 3.713 1.766 3.955 4.1l.01 .124l.129 .036c3.17 .928 5.754 2.487 5.9 4.556l.006 .184c0 1.427 -1.297 2.322 -2.871 2.733l-.201 .049l.026 .03c.244 .276 .532 .603 .7 .797l.057 .066c.49 .573 .884 1.073 1.216 1.56c.69 1.01 1.073 1.904 1.073 2.765a2 2 0 0 1 -2 2h-5c-1.043 0 -1.344 -.453 -2.394 -2.553c-.29 -.58 -.448 -.882 -.593 -1.118l-.013 -.022l-.013 .022c-.129 .21 -.268 .472 -.5 .935l-.093 .183c-1.05 2.1 -1.351 2.553 -2.394 2.553h-5a2 2 0 0 1 -2 -2c0 -.86 .384 -1.755 1.073 -2.765a18 18 0 0 1 1.216 -1.56c.152 -.178 .482 -.553 .757 -.863l.025 -.03l-.2 -.049c-1.506 -.393 -2.758 -1.23 -2.864 -2.55l-.007 -.183c0 -2.16 2.643 -3.785 5.906 -4.74l.128 -.036l.011 -.124c.235 -2.26 1.394 -3.99 3.726 -4.095z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="meeple-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type MeepleFilledProps = typeof __propDef.props;
|
|
13
|
+
export type MeepleFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type MeepleFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class MeepleFilled extends SvelteComponentTyped<MeepleFilledProps, MeepleFilledEvents, MeepleFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M18 3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-2.586l-2.707 2.707a1 1 0 0 1 -1.32 .083l-.094 -.083l-2.708 -2.707h-2.585a4 4 0 0 1 -3.995 -3.8l-.005 -.2v-8a4 4 0 0 1 4 -4zm-4 9h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0 -2m2 -4h-8a1 1 0 1 0 0 2h8a1 1 0 0 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="message-2-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type Message_2FilledProps = typeof __propDef.props;
|
|
13
|
+
export type Message_2FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type Message_2FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Message_2Filled extends SvelteComponentTyped<Message_2FilledProps, Message_2FilledEvents, Message_2FilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.002 4c2.866 0 6.7 1.365 9.532 3.155a1 1 0 0 1 .45 1.024l-2 11a1 1 0 0 1 -.984 .821h-14a1 1 0 0 1 -.984 -.821l-2 -11a1 1 0 0 1 .45 -1.024c2.834 -1.792 6.724 -3.16 9.536 -3.155m-.002 5a1 1 0 0 0 -1 1v1h-1a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 0 1 1h1v1a1 1 0 0 0 .883 .993l.117 .007a1 1 0 0 0 1 -1v-1h1a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -1 -1h-1v-1a1 1 0 0 0 -.883 -.993z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="nurse-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type NurseFilledProps = typeof __propDef.props;
|
|
13
|
+
export type NurseFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type NurseFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class NurseFilled extends SvelteComponentTyped<NurseFilledProps, NurseFilledEvents, NurseFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/nurse.svelte
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "M12
|
|
2
|
+
const iconNode = [["path", { "d": "M12 5c2.941 0 6.685 1.537 9 3l-2 11h-14l-2 -11c2.394 -1.513 6.168 -3.005 9 -3" }], ["path", { "d": "M10 12h4" }], ["path", { "d": "M12 10v4" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="nurse" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12 2c5.498 0 10 4.002 10 9c0 1.351 -.6 2.64 -1.654 3.576c-1.03 .914 -2.412 1.424 -3.846 1.424h-2.516a1 1 0 0 0 -.5 1.875a1 1 0 0 1 .194 .14a2.3 2.3 0 0 1 -1.597 3.99l-.156 -.009l.068 .004l-.273 -.004c-5.3 -.146 -9.57 -4.416 -9.716 -9.716l-.004 -.28c0 -5.523 4.477 -10 10 -10m-3.5 6.5a2 2 0 0 0 -1.995 1.85l-.005 .15a2 2 0 1 0 2 -2m8 0a2 2 0 0 0 -1.995 1.85l-.005 .15a2 2 0 1 0 2 -2m-4 -3a2 2 0 0 0 -1.995 1.85l-.005 .15a2 2 0 1 0 2 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="palette-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type PaletteFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PaletteFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PaletteFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PaletteFilled extends SvelteComponentTyped<PaletteFilledProps, PaletteFilledEvents, PaletteFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M9 5a2 2 0 0 1 2 2v6c0 3.13 -1.65 5.193 -4.757 5.97a1 1 0 1 1 -.486 -1.94c2.227 -.557 3.243 -1.827 3.243 -4.03v-1h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 2 -2z" }], ["path", { "d": "M18 5a2 2 0 0 1 2 2v6c0 3.13 -1.65 5.193 -4.757 5.97a1 1 0 1 1 -.486 -1.94c2.227 -.557 3.243 -1.827 3.243 -4.03v-1h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 2 -2z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="quote-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type QuoteFilledProps = typeof __propDef.props;
|
|
13
|
+
export type QuoteFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type QuoteFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class QuoteFilled extends SvelteComponentTyped<QuoteFilledProps, QuoteFilledEvents, QuoteFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/sos.svelte
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "
|
|
2
|
+
const iconNode = [["path", { "d": "M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2" }], ["path", { "d": "M17 15c.345 .6 1.258 1 2 1a2 2 0 1 0 0 -4a2 2 0 1 1 0 -4c.746 0 1.656 .394 2 1" }], ["path", { "d": "M3 15c.345 .6 1.258 1 2 1a2 2 0 1 0 0 -4a2 2 0 1 1 0 -4c.746 0 1.656 .394 2 1" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="sos" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M7.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }], ["path", { "d": "M18.898 16.102l.699 -.699l.699 -.699c.941 -.941 .941 -2.467 0 -3.408l-7.71 -7.71c-.375 -.375 -.884 -.586 -1.414 -.586h-5.172c-1.657 0 -3 1.343 -3 3v5.172c0 .53 .211 1.039 .586 1.414l7.71 7.71c.471 .47 1.087 .706 1.704 .706" }], ["path", { "d": "M16 19h6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="tag-minus" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type TagMinusProps = typeof __propDef.props;
|
|
13
|
+
export type TagMinusEvents = typeof __propDef.events;
|
|
14
|
+
export type TagMinusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TagMinus extends SvelteComponentTyped<TagMinusProps, TagMinusEvents, TagMinusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M7.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }], ["path", { "d": "M21.002 13c0 -.617 -.235 -1.233 -.706 -1.704l-7.71 -7.71c-.375 -.375 -.884 -.586 -1.414 -.586h-5.172c-1.657 0 -3 1.343 -3 3v5.172c0 .53 .211 1.039 .586 1.414l7.71 7.71c.471 .47 1.087 .706 1.704 .706" }], ["path", { "d": "M16 19h6" }], ["path", { "d": "M19 16v6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="tag-plus" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type TagPlusProps = typeof __propDef.props;
|
|
13
|
+
export type TagPlusEvents = typeof __propDef.events;
|
|
14
|
+
export type TagPlusSlots = typeof __propDef.slots;
|
|
15
|
+
export default class TagPlus extends SvelteComponentTyped<TagPlusProps, TagPlusEvents, TagPlusSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M20.117 7.625a1 1 0 0 0 -.564 .1l-4.553 2.275v4l4.553 2.275a1 1 0 0 0 1.447 -.892v-6.766a1 1 0 0 0 -.883 -.992z" }], ["path", { "d": "M5 5c-1.645 0 -3 1.355 -3 3v8c0 1.645 1.355 3 3 3h8c1.645 0 3 -1.355 3 -3v-8c0 -1.645 -1.355 -3 -3 -3z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="video-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type VideoFilledProps = typeof __propDef.props;
|
|
13
|
+
export type VideoFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type VideoFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class VideoFilled extends SvelteComponentTyped<VideoFilledProps, VideoFilledEvents, VideoFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M6 2a1 1 0 0 1 1 1v1.079l11.083 .924a1 1 0 0 1 .917 .997v4a1 1 0 0 1 -.917 .997l-11.083 .923v8.08h1a1 1 0 0 1 0 2h-4a1 1 0 0 1 0 -2h1v-17a1 1 0 0 1 1 -1m1 4.086v3.827l3 -.25v-3.327zm7 .584v2.659l3 -.25v-2.159z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="windsock-filled" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type WindsockFilledProps = typeof __propDef.props;
|
|
13
|
+
export type WindsockFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type WindsockFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class WindsockFilled extends SvelteComponentTyped<WindsockFilledProps, WindsockFilledEvents, WindsockFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -903,6 +903,7 @@ export default [
|
|
|
903
903
|
"brand-ted",
|
|
904
904
|
"brand-telegram",
|
|
905
905
|
"brand-terraform",
|
|
906
|
+
"brand-tesla",
|
|
906
907
|
"brand-tether",
|
|
907
908
|
"brand-thingiverse",
|
|
908
909
|
"brand-threads",
|
|
@@ -1438,6 +1439,7 @@ export default [
|
|
|
1438
1439
|
"clipboard-list",
|
|
1439
1440
|
"clipboard-off",
|
|
1440
1441
|
"clipboard-plus",
|
|
1442
|
+
"clipboard-search",
|
|
1441
1443
|
"clipboard-smile",
|
|
1442
1444
|
"clipboard-text",
|
|
1443
1445
|
"clipboard-typography",
|
|
@@ -4450,7 +4452,9 @@ export default [
|
|
|
4450
4452
|
"table-shortcut",
|
|
4451
4453
|
"table-spark",
|
|
4452
4454
|
"table",
|
|
4455
|
+
"tag-minus",
|
|
4453
4456
|
"tag-off",
|
|
4457
|
+
"tag-plus",
|
|
4454
4458
|
"tag-starred",
|
|
4455
4459
|
"tag",
|
|
4456
4460
|
"tags-off",
|
|
@@ -5043,6 +5047,7 @@ export default [
|
|
|
5043
5047
|
"brand-instagram-filled",
|
|
5044
5048
|
"brand-kick-filled",
|
|
5045
5049
|
"brand-linkedin-filled",
|
|
5050
|
+
"brand-messenger-filled",
|
|
5046
5051
|
"brand-open-source-filled",
|
|
5047
5052
|
"brand-opera-filled",
|
|
5048
5053
|
"brand-patreon-filled",
|
|
@@ -5060,6 +5065,7 @@ export default [
|
|
|
5060
5065
|
"brand-twitter-filled",
|
|
5061
5066
|
"brand-vercel-filled",
|
|
5062
5067
|
"brand-vimeo-filled",
|
|
5068
|
+
"brand-weibo-filled",
|
|
5063
5069
|
"brand-whatsapp-filled",
|
|
5064
5070
|
"brand-windows-filled",
|
|
5065
5071
|
"brand-x-filled",
|
|
@@ -5071,6 +5077,7 @@ export default [
|
|
|
5071
5077
|
"brightness-down-filled",
|
|
5072
5078
|
"brightness-up-filled",
|
|
5073
5079
|
"brightness-filled",
|
|
5080
|
+
"bubble-text-filled",
|
|
5074
5081
|
"bubble-filled",
|
|
5075
5082
|
"bug-filled",
|
|
5076
5083
|
"building-broadcast-tower-filled",
|
|
@@ -5279,12 +5286,14 @@ export default [
|
|
|
5279
5286
|
"function-filled",
|
|
5280
5287
|
"gauge-filled",
|
|
5281
5288
|
"ghost-2-filled",
|
|
5289
|
+
"ghost-3-filled",
|
|
5282
5290
|
"ghost-filled",
|
|
5283
5291
|
"gift-card-filled",
|
|
5284
5292
|
"gift-filled",
|
|
5285
5293
|
"glass-full-filled",
|
|
5286
5294
|
"glass-filled",
|
|
5287
5295
|
"globe-filled",
|
|
5296
|
+
"golf-filled",
|
|
5288
5297
|
"gps-filled",
|
|
5289
5298
|
"graph-filled",
|
|
5290
5299
|
"guitar-pick-filled",
|
|
@@ -5362,6 +5371,7 @@ export default [
|
|
|
5362
5371
|
"jetpack-filled",
|
|
5363
5372
|
"jewish-star-filled",
|
|
5364
5373
|
"key-filled",
|
|
5374
|
+
"keyboard-filled",
|
|
5365
5375
|
"keyframe-align-center-filled",
|
|
5366
5376
|
"keyframe-align-horizontal-filled",
|
|
5367
5377
|
"keyframe-align-vertical-filled",
|
|
@@ -5399,6 +5409,7 @@ export default [
|
|
|
5399
5409
|
"layout-filled",
|
|
5400
5410
|
"lego-filled",
|
|
5401
5411
|
"live-photo-filled",
|
|
5412
|
+
"live-view-filled",
|
|
5402
5413
|
"location-filled",
|
|
5403
5414
|
"lock-square-rounded-filled",
|
|
5404
5415
|
"lock-filled",
|
|
@@ -5411,7 +5422,9 @@ export default [
|
|
|
5411
5422
|
"manual-gearbox-filled",
|
|
5412
5423
|
"map-pin-filled",
|
|
5413
5424
|
"medical-cross-filled",
|
|
5425
|
+
"meeple-filled",
|
|
5414
5426
|
"melon-filled",
|
|
5427
|
+
"message-2-filled",
|
|
5415
5428
|
"message-chatbot-filled",
|
|
5416
5429
|
"message-circle-filled",
|
|
5417
5430
|
"message-report-filled",
|
|
@@ -5439,10 +5452,12 @@ export default [
|
|
|
5439
5452
|
"mug-filled",
|
|
5440
5453
|
"mushroom-filled",
|
|
5441
5454
|
"navigation-filled",
|
|
5455
|
+
"nurse-filled",
|
|
5442
5456
|
"octagon-filled",
|
|
5443
5457
|
"oval-vertical-filled",
|
|
5444
5458
|
"oval-filled",
|
|
5445
5459
|
"paint-filled",
|
|
5460
|
+
"palette-filled",
|
|
5446
5461
|
"panorama-horizontal-filled",
|
|
5447
5462
|
"panorama-vertical-filled",
|
|
5448
5463
|
"parking-circle-filled",
|
|
@@ -5489,6 +5504,7 @@ export default [
|
|
|
5489
5504
|
"presentation-analytics-filled",
|
|
5490
5505
|
"presentation-filled",
|
|
5491
5506
|
"puzzle-filled",
|
|
5507
|
+
"quote-filled",
|
|
5492
5508
|
"radar-filled",
|
|
5493
5509
|
"radioactive-filled",
|
|
5494
5510
|
"receipt-filled",
|
|
@@ -5678,7 +5694,9 @@ export default [
|
|
|
5678
5694
|
"umbrella-filled",
|
|
5679
5695
|
"user-filled",
|
|
5680
5696
|
"versions-filled",
|
|
5697
|
+
"video-filled",
|
|
5681
5698
|
"windmill-filled",
|
|
5699
|
+
"windsock-filled",
|
|
5682
5700
|
"woman-filled",
|
|
5683
5701
|
"xbox-a-filled",
|
|
5684
5702
|
"xbox-b-filled",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-svelte",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.22.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "codecalm",
|
|
6
6
|
"description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"imports-check": "attw $(npm pack)"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@tabler/icons": "3.
|
|
52
|
+
"@tabler/icons": "3.22.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@sveltejs/package": "^2.2.7",
|