@tabler/icons-svelte 3.21.0 → 3.23.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/alarm-smoke.svelte +6 -0
- package/dist/icons/alarm-smoke.svelte.d.ts +17 -0
- package/dist/icons/assembly-off.svelte +1 -1
- package/dist/icons/assembly.svelte +1 -1
- package/dist/icons/badge-2k.svelte +6 -0
- package/dist/icons/badge-2k.svelte.d.ts +17 -0
- package/dist/icons/badge-3k.svelte +6 -0
- package/dist/icons/badge-3k.svelte.d.ts +17 -0
- package/dist/icons/badge-5k.svelte +6 -0
- package/dist/icons/badge-5k.svelte.d.ts +17 -0
- package/dist/icons/badge-8k.svelte +1 -1
- package/dist/icons/blocks.svelte +6 -0
- package/dist/icons/blocks.svelte.d.ts +17 -0
- package/dist/icons/bowling.svelte +6 -0
- package/dist/icons/bowling.svelte.d.ts +17 -0
- 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/browser-maximize.svelte +6 -0
- package/dist/icons/browser-maximize.svelte.d.ts +17 -0
- package/dist/icons/browser-minus.svelte +6 -0
- package/dist/icons/browser-minus.svelte.d.ts +17 -0
- package/dist/icons/browser-plus.svelte +1 -1
- package/dist/icons/browser-share.svelte +6 -0
- package/dist/icons/browser-share.svelte.d.ts +17 -0
- package/dist/icons/browser.svelte +1 -1
- package/dist/icons/bubble-text-filled.svelte +6 -0
- package/dist/icons/bubble-text-filled.svelte.d.ts +17 -0
- package/dist/icons/calendar-event-filled.svelte +6 -0
- package/dist/icons/calendar-event-filled.svelte.d.ts +17 -0
- package/dist/icons/calendar-month-filled.svelte +6 -0
- package/dist/icons/calendar-month-filled.svelte.d.ts +17 -0
- package/dist/icons/calendar-week-filled.svelte +6 -0
- package/dist/icons/calendar-week-filled.svelte.d.ts +17 -0
- package/dist/icons/candle-filled.svelte +1 -1
- package/dist/icons/candle.svelte +1 -1
- package/dist/icons/clipboard-search.svelte +6 -0
- package/dist/icons/clipboard-search.svelte.d.ts +17 -0
- package/dist/icons/code-variable-minus.svelte +6 -0
- package/dist/icons/code-variable-minus.svelte.d.ts +17 -0
- package/dist/icons/code-variable-plus.svelte +6 -0
- package/dist/icons/code-variable-plus.svelte.d.ts +17 -0
- package/dist/icons/code-variable.svelte +6 -0
- package/dist/icons/code-variable.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 +36 -0
- package/dist/icons/index.js +36 -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/uhd.svelte +6 -0
- package/dist/icons/uhd.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/wheat-off.svelte +6 -0
- package/dist/icons/wheat-off.svelte.d.ts +17 -0
- package/dist/icons/wheat.svelte +6 -0
- package/dist/icons/wheat.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 +36 -0
- package/package.json +2 -2
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { IconProps } from '../types.js';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: IconProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export type 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
|
@@ -52,6 +52,7 @@ export { default as IconAlarmAverage } from './alarm-average.svelte';
|
|
|
52
52
|
export { default as IconAlarmMinus } from './alarm-minus.svelte';
|
|
53
53
|
export { default as IconAlarmOff } from './alarm-off.svelte';
|
|
54
54
|
export { default as IconAlarmPlus } from './alarm-plus.svelte';
|
|
55
|
+
export { default as IconAlarmSmoke } from './alarm-smoke.svelte';
|
|
55
56
|
export { default as IconAlarmSnooze } from './alarm-snooze.svelte';
|
|
56
57
|
export { default as IconAlarm } from './alarm.svelte';
|
|
57
58
|
export { default as IconAlbumOff } from './album-off.svelte';
|
|
@@ -354,8 +355,11 @@ export { default as IconBackpackOff } from './backpack-off.svelte';
|
|
|
354
355
|
export { default as IconBackpack } from './backpack.svelte';
|
|
355
356
|
export { default as IconBackslash } from './backslash.svelte';
|
|
356
357
|
export { default as IconBackspace } from './backspace.svelte';
|
|
358
|
+
export { default as IconBadge2k } from './badge-2k.svelte';
|
|
357
359
|
export { default as IconBadge3d } from './badge-3d.svelte';
|
|
360
|
+
export { default as IconBadge3k } from './badge-3k.svelte';
|
|
358
361
|
export { default as IconBadge4k } from './badge-4k.svelte';
|
|
362
|
+
export { default as IconBadge5k } from './badge-5k.svelte';
|
|
359
363
|
export { default as IconBadge8k } from './badge-8k.svelte';
|
|
360
364
|
export { default as IconBadgeAdOff } from './badge-ad-off.svelte';
|
|
361
365
|
export { default as IconBadgeAd } from './badge-ad.svelte';
|
|
@@ -499,6 +503,7 @@ export { default as IconBlendMode } from './blend-mode.svelte';
|
|
|
499
503
|
export { default as IconBlender } from './blender.svelte';
|
|
500
504
|
export { default as IconBlob } from './blob.svelte';
|
|
501
505
|
export { default as IconBlockquote } from './blockquote.svelte';
|
|
506
|
+
export { default as IconBlocks } from './blocks.svelte';
|
|
502
507
|
export { default as IconBluetoothConnected } from './bluetooth-connected.svelte';
|
|
503
508
|
export { default as IconBluetoothOff } from './bluetooth-off.svelte';
|
|
504
509
|
export { default as IconBluetoothX } from './bluetooth-x.svelte';
|
|
@@ -564,6 +569,7 @@ export { default as IconBow } from './bow.svelte';
|
|
|
564
569
|
export { default as IconBowlChopsticks } from './bowl-chopsticks.svelte';
|
|
565
570
|
export { default as IconBowlSpoon } from './bowl-spoon.svelte';
|
|
566
571
|
export { default as IconBowl } from './bowl.svelte';
|
|
572
|
+
export { default as IconBowling } from './bowling.svelte';
|
|
567
573
|
export { default as IconBoxAlignBottomLeft } from './box-align-bottom-left.svelte';
|
|
568
574
|
export { default as IconBoxAlignBottomRight } from './box-align-bottom-right.svelte';
|
|
569
575
|
export { default as IconBoxAlignBottom } from './box-align-bottom.svelte';
|
|
@@ -902,6 +908,7 @@ export { default as IconBrandTeams } from './brand-teams.svelte';
|
|
|
902
908
|
export { default as IconBrandTed } from './brand-ted.svelte';
|
|
903
909
|
export { default as IconBrandTelegram } from './brand-telegram.svelte';
|
|
904
910
|
export { default as IconBrandTerraform } from './brand-terraform.svelte';
|
|
911
|
+
export { default as IconBrandTesla } from './brand-tesla.svelte';
|
|
905
912
|
export { default as IconBrandTether } from './brand-tether.svelte';
|
|
906
913
|
export { default as IconBrandThingiverse } from './brand-thingiverse.svelte';
|
|
907
914
|
export { default as IconBrandThreads } from './brand-threads.svelte';
|
|
@@ -984,8 +991,11 @@ export { default as IconBrightness } from './brightness.svelte';
|
|
|
984
991
|
export { default as IconBroadcastOff } from './broadcast-off.svelte';
|
|
985
992
|
export { default as IconBroadcast } from './broadcast.svelte';
|
|
986
993
|
export { default as IconBrowserCheck } from './browser-check.svelte';
|
|
994
|
+
export { default as IconBrowserMaximize } from './browser-maximize.svelte';
|
|
995
|
+
export { default as IconBrowserMinus } from './browser-minus.svelte';
|
|
987
996
|
export { default as IconBrowserOff } from './browser-off.svelte';
|
|
988
997
|
export { default as IconBrowserPlus } from './browser-plus.svelte';
|
|
998
|
+
export { default as IconBrowserShare } from './browser-share.svelte';
|
|
989
999
|
export { default as IconBrowserX } from './browser-x.svelte';
|
|
990
1000
|
export { default as IconBrowser } from './browser.svelte';
|
|
991
1001
|
export { default as IconBrushOff } from './brush-off.svelte';
|
|
@@ -1437,6 +1447,7 @@ export { default as IconClipboardHeart } from './clipboard-heart.svelte';
|
|
|
1437
1447
|
export { default as IconClipboardList } from './clipboard-list.svelte';
|
|
1438
1448
|
export { default as IconClipboardOff } from './clipboard-off.svelte';
|
|
1439
1449
|
export { default as IconClipboardPlus } from './clipboard-plus.svelte';
|
|
1450
|
+
export { default as IconClipboardSearch } from './clipboard-search.svelte';
|
|
1440
1451
|
export { default as IconClipboardSmile } from './clipboard-smile.svelte';
|
|
1441
1452
|
export { default as IconClipboardText } from './clipboard-text.svelte';
|
|
1442
1453
|
export { default as IconClipboardTypography } from './clipboard-typography.svelte';
|
|
@@ -1529,6 +1540,9 @@ export { default as IconCodeDots } from './code-dots.svelte';
|
|
|
1529
1540
|
export { default as IconCodeMinus } from './code-minus.svelte';
|
|
1530
1541
|
export { default as IconCodeOff } from './code-off.svelte';
|
|
1531
1542
|
export { default as IconCodePlus } from './code-plus.svelte';
|
|
1543
|
+
export { default as IconCodeVariableMinus } from './code-variable-minus.svelte';
|
|
1544
|
+
export { default as IconCodeVariablePlus } from './code-variable-plus.svelte';
|
|
1545
|
+
export { default as IconCodeVariable } from './code-variable.svelte';
|
|
1532
1546
|
export { default as IconCode } from './code.svelte';
|
|
1533
1547
|
export { default as IconCoffeeOff } from './coffee-off.svelte';
|
|
1534
1548
|
export { default as IconCoffee } from './coffee.svelte';
|
|
@@ -4449,7 +4463,9 @@ export { default as IconTableShare } from './table-share.svelte';
|
|
|
4449
4463
|
export { default as IconTableShortcut } from './table-shortcut.svelte';
|
|
4450
4464
|
export { default as IconTableSpark } from './table-spark.svelte';
|
|
4451
4465
|
export { default as IconTable } from './table.svelte';
|
|
4466
|
+
export { default as IconTagMinus } from './tag-minus.svelte';
|
|
4452
4467
|
export { default as IconTagOff } from './tag-off.svelte';
|
|
4468
|
+
export { default as IconTagPlus } from './tag-plus.svelte';
|
|
4453
4469
|
export { default as IconTagStarred } from './tag-starred.svelte';
|
|
4454
4470
|
export { default as IconTag } from './tag.svelte';
|
|
4455
4471
|
export { default as IconTagsOff } from './tags-off.svelte';
|
|
@@ -4640,6 +4656,7 @@ export { default as IconUTurnLeft } from './u-turn-left.svelte';
|
|
|
4640
4656
|
export { default as IconUTurnRight } from './u-turn-right.svelte';
|
|
4641
4657
|
export { default as IconUfoOff } from './ufo-off.svelte';
|
|
4642
4658
|
export { default as IconUfo } from './ufo.svelte';
|
|
4659
|
+
export { default as IconUhd } from './uhd.svelte';
|
|
4643
4660
|
export { default as IconUmbrella2 } from './umbrella-2.svelte';
|
|
4644
4661
|
export { default as IconUmbrellaClosed2 } from './umbrella-closed-2.svelte';
|
|
4645
4662
|
export { default as IconUmbrellaClosed } from './umbrella-closed.svelte';
|
|
@@ -4784,6 +4801,8 @@ export { default as IconWavesElectricity } from './waves-electricity.svelte';
|
|
|
4784
4801
|
export { default as IconWebhookOff } from './webhook-off.svelte';
|
|
4785
4802
|
export { default as IconWebhook } from './webhook.svelte';
|
|
4786
4803
|
export { default as IconWeight } from './weight.svelte';
|
|
4804
|
+
export { default as IconWheatOff } from './wheat-off.svelte';
|
|
4805
|
+
export { default as IconWheat } from './wheat.svelte';
|
|
4787
4806
|
export { default as IconWheel } from './wheel.svelte';
|
|
4788
4807
|
export { default as IconWheelchairOff } from './wheelchair-off.svelte';
|
|
4789
4808
|
export { default as IconWheelchair } from './wheelchair.svelte';
|
|
@@ -5042,6 +5061,7 @@ export { default as IconBrandGoogleFilled } from './brand-google-filled.svelte';
|
|
|
5042
5061
|
export { default as IconBrandInstagramFilled } from './brand-instagram-filled.svelte';
|
|
5043
5062
|
export { default as IconBrandKickFilled } from './brand-kick-filled.svelte';
|
|
5044
5063
|
export { default as IconBrandLinkedinFilled } from './brand-linkedin-filled.svelte';
|
|
5064
|
+
export { default as IconBrandMessengerFilled } from './brand-messenger-filled.svelte';
|
|
5045
5065
|
export { default as IconBrandOpenSourceFilled } from './brand-open-source-filled.svelte';
|
|
5046
5066
|
export { default as IconBrandOperaFilled } from './brand-opera-filled.svelte';
|
|
5047
5067
|
export { default as IconBrandPatreonFilled } from './brand-patreon-filled.svelte';
|
|
@@ -5059,6 +5079,7 @@ export { default as IconBrandTumblrFilled } from './brand-tumblr-filled.svelte';
|
|
|
5059
5079
|
export { default as IconBrandTwitterFilled } from './brand-twitter-filled.svelte';
|
|
5060
5080
|
export { default as IconBrandVercelFilled } from './brand-vercel-filled.svelte';
|
|
5061
5081
|
export { default as IconBrandVimeoFilled } from './brand-vimeo-filled.svelte';
|
|
5082
|
+
export { default as IconBrandWeiboFilled } from './brand-weibo-filled.svelte';
|
|
5062
5083
|
export { default as IconBrandWhatsappFilled } from './brand-whatsapp-filled.svelte';
|
|
5063
5084
|
export { default as IconBrandWindowsFilled } from './brand-windows-filled.svelte';
|
|
5064
5085
|
export { default as IconBrandXFilled } from './brand-x-filled.svelte';
|
|
@@ -5070,6 +5091,7 @@ export { default as IconBrightnessAutoFilled } from './brightness-auto-filled.sv
|
|
|
5070
5091
|
export { default as IconBrightnessDownFilled } from './brightness-down-filled.svelte';
|
|
5071
5092
|
export { default as IconBrightnessUpFilled } from './brightness-up-filled.svelte';
|
|
5072
5093
|
export { default as IconBrightnessFilled } from './brightness-filled.svelte';
|
|
5094
|
+
export { default as IconBubbleTextFilled } from './bubble-text-filled.svelte';
|
|
5073
5095
|
export { default as IconBubbleFilled } from './bubble-filled.svelte';
|
|
5074
5096
|
export { default as IconBugFilled } from './bug-filled.svelte';
|
|
5075
5097
|
export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
|
|
@@ -5077,6 +5099,9 @@ export { default as IconBulbFilled } from './bulb-filled.svelte';
|
|
|
5077
5099
|
export { default as IconButterflyFilled } from './butterfly-filled.svelte';
|
|
5078
5100
|
export { default as IconCactusFilled } from './cactus-filled.svelte';
|
|
5079
5101
|
export { default as IconCalculatorFilled } from './calculator-filled.svelte';
|
|
5102
|
+
export { default as IconCalendarEventFilled } from './calendar-event-filled.svelte';
|
|
5103
|
+
export { default as IconCalendarMonthFilled } from './calendar-month-filled.svelte';
|
|
5104
|
+
export { default as IconCalendarWeekFilled } from './calendar-week-filled.svelte';
|
|
5080
5105
|
export { default as IconCalendarFilled } from './calendar-filled.svelte';
|
|
5081
5106
|
export { default as IconCameraFilled } from './camera-filled.svelte';
|
|
5082
5107
|
export { default as IconCampfireFilled } from './campfire-filled.svelte';
|
|
@@ -5278,12 +5303,14 @@ export { default as IconFountainFilled } from './fountain-filled.svelte';
|
|
|
5278
5303
|
export { default as IconFunctionFilled } from './function-filled.svelte';
|
|
5279
5304
|
export { default as IconGaugeFilled } from './gauge-filled.svelte';
|
|
5280
5305
|
export { default as IconGhost2Filled } from './ghost-2-filled.svelte';
|
|
5306
|
+
export { default as IconGhost3Filled } from './ghost-3-filled.svelte';
|
|
5281
5307
|
export { default as IconGhostFilled } from './ghost-filled.svelte';
|
|
5282
5308
|
export { default as IconGiftCardFilled } from './gift-card-filled.svelte';
|
|
5283
5309
|
export { default as IconGiftFilled } from './gift-filled.svelte';
|
|
5284
5310
|
export { default as IconGlassFullFilled } from './glass-full-filled.svelte';
|
|
5285
5311
|
export { default as IconGlassFilled } from './glass-filled.svelte';
|
|
5286
5312
|
export { default as IconGlobeFilled } from './globe-filled.svelte';
|
|
5313
|
+
export { default as IconGolfFilled } from './golf-filled.svelte';
|
|
5287
5314
|
export { default as IconGpsFilled } from './gps-filled.svelte';
|
|
5288
5315
|
export { default as IconGraphFilled } from './graph-filled.svelte';
|
|
5289
5316
|
export { default as IconGuitarPickFilled } from './guitar-pick-filled.svelte';
|
|
@@ -5361,6 +5388,7 @@ export { default as IconIroningFilled } from './ironing-filled.svelte';
|
|
|
5361
5388
|
export { default as IconJetpackFilled } from './jetpack-filled.svelte';
|
|
5362
5389
|
export { default as IconJewishStarFilled } from './jewish-star-filled.svelte';
|
|
5363
5390
|
export { default as IconKeyFilled } from './key-filled.svelte';
|
|
5391
|
+
export { default as IconKeyboardFilled } from './keyboard-filled.svelte';
|
|
5364
5392
|
export { default as IconKeyframeAlignCenterFilled } from './keyframe-align-center-filled.svelte';
|
|
5365
5393
|
export { default as IconKeyframeAlignHorizontalFilled } from './keyframe-align-horizontal-filled.svelte';
|
|
5366
5394
|
export { default as IconKeyframeAlignVerticalFilled } from './keyframe-align-vertical-filled.svelte';
|
|
@@ -5398,6 +5426,7 @@ export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svel
|
|
|
5398
5426
|
export { default as IconLayoutFilled } from './layout-filled.svelte';
|
|
5399
5427
|
export { default as IconLegoFilled } from './lego-filled.svelte';
|
|
5400
5428
|
export { default as IconLivePhotoFilled } from './live-photo-filled.svelte';
|
|
5429
|
+
export { default as IconLiveViewFilled } from './live-view-filled.svelte';
|
|
5401
5430
|
export { default as IconLocationFilled } from './location-filled.svelte';
|
|
5402
5431
|
export { default as IconLockSquareRoundedFilled } from './lock-square-rounded-filled.svelte';
|
|
5403
5432
|
export { default as IconLockFilled } from './lock-filled.svelte';
|
|
@@ -5410,7 +5439,9 @@ export { default as IconManFilled } from './man-filled.svelte';
|
|
|
5410
5439
|
export { default as IconManualGearboxFilled } from './manual-gearbox-filled.svelte';
|
|
5411
5440
|
export { default as IconMapPinFilled } from './map-pin-filled.svelte';
|
|
5412
5441
|
export { default as IconMedicalCrossFilled } from './medical-cross-filled.svelte';
|
|
5442
|
+
export { default as IconMeepleFilled } from './meeple-filled.svelte';
|
|
5413
5443
|
export { default as IconMelonFilled } from './melon-filled.svelte';
|
|
5444
|
+
export { default as IconMessage2Filled } from './message-2-filled.svelte';
|
|
5414
5445
|
export { default as IconMessageChatbotFilled } from './message-chatbot-filled.svelte';
|
|
5415
5446
|
export { default as IconMessageCircleFilled } from './message-circle-filled.svelte';
|
|
5416
5447
|
export { default as IconMessageReportFilled } from './message-report-filled.svelte';
|
|
@@ -5438,10 +5469,12 @@ export { default as IconMouseFilled } from './mouse-filled.svelte';
|
|
|
5438
5469
|
export { default as IconMugFilled } from './mug-filled.svelte';
|
|
5439
5470
|
export { default as IconMushroomFilled } from './mushroom-filled.svelte';
|
|
5440
5471
|
export { default as IconNavigationFilled } from './navigation-filled.svelte';
|
|
5472
|
+
export { default as IconNurseFilled } from './nurse-filled.svelte';
|
|
5441
5473
|
export { default as IconOctagonFilled } from './octagon-filled.svelte';
|
|
5442
5474
|
export { default as IconOvalVerticalFilled } from './oval-vertical-filled.svelte';
|
|
5443
5475
|
export { default as IconOvalFilled } from './oval-filled.svelte';
|
|
5444
5476
|
export { default as IconPaintFilled } from './paint-filled.svelte';
|
|
5477
|
+
export { default as IconPaletteFilled } from './palette-filled.svelte';
|
|
5445
5478
|
export { default as IconPanoramaHorizontalFilled } from './panorama-horizontal-filled.svelte';
|
|
5446
5479
|
export { default as IconPanoramaVerticalFilled } from './panorama-vertical-filled.svelte';
|
|
5447
5480
|
export { default as IconParkingCircleFilled } from './parking-circle-filled.svelte';
|
|
@@ -5488,6 +5521,7 @@ export { default as IconPooFilled } from './poo-filled.svelte';
|
|
|
5488
5521
|
export { default as IconPresentationAnalyticsFilled } from './presentation-analytics-filled.svelte';
|
|
5489
5522
|
export { default as IconPresentationFilled } from './presentation-filled.svelte';
|
|
5490
5523
|
export { default as IconPuzzleFilled } from './puzzle-filled.svelte';
|
|
5524
|
+
export { default as IconQuoteFilled } from './quote-filled.svelte';
|
|
5491
5525
|
export { default as IconRadarFilled } from './radar-filled.svelte';
|
|
5492
5526
|
export { default as IconRadioactiveFilled } from './radioactive-filled.svelte';
|
|
5493
5527
|
export { default as IconReceiptFilled } from './receipt-filled.svelte';
|
|
@@ -5677,7 +5711,9 @@ export { default as IconTrophyFilled } from './trophy-filled.svelte';
|
|
|
5677
5711
|
export { default as IconUmbrellaFilled } from './umbrella-filled.svelte';
|
|
5678
5712
|
export { default as IconUserFilled } from './user-filled.svelte';
|
|
5679
5713
|
export { default as IconVersionsFilled } from './versions-filled.svelte';
|
|
5714
|
+
export { default as IconVideoFilled } from './video-filled.svelte';
|
|
5680
5715
|
export { default as IconWindmillFilled } from './windmill-filled.svelte';
|
|
5716
|
+
export { default as IconWindsockFilled } from './windsock-filled.svelte';
|
|
5681
5717
|
export { default as IconWomanFilled } from './woman-filled.svelte';
|
|
5682
5718
|
export { default as IconXboxAFilled } from './xbox-a-filled.svelte';
|
|
5683
5719
|
export { default as IconXboxBFilled } from './xbox-b-filled.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -52,6 +52,7 @@ export { default as IconAlarmAverage } from './alarm-average.svelte';
|
|
|
52
52
|
export { default as IconAlarmMinus } from './alarm-minus.svelte';
|
|
53
53
|
export { default as IconAlarmOff } from './alarm-off.svelte';
|
|
54
54
|
export { default as IconAlarmPlus } from './alarm-plus.svelte';
|
|
55
|
+
export { default as IconAlarmSmoke } from './alarm-smoke.svelte';
|
|
55
56
|
export { default as IconAlarmSnooze } from './alarm-snooze.svelte';
|
|
56
57
|
export { default as IconAlarm } from './alarm.svelte';
|
|
57
58
|
export { default as IconAlbumOff } from './album-off.svelte';
|
|
@@ -354,8 +355,11 @@ export { default as IconBackpackOff } from './backpack-off.svelte';
|
|
|
354
355
|
export { default as IconBackpack } from './backpack.svelte';
|
|
355
356
|
export { default as IconBackslash } from './backslash.svelte';
|
|
356
357
|
export { default as IconBackspace } from './backspace.svelte';
|
|
358
|
+
export { default as IconBadge2k } from './badge-2k.svelte';
|
|
357
359
|
export { default as IconBadge3d } from './badge-3d.svelte';
|
|
360
|
+
export { default as IconBadge3k } from './badge-3k.svelte';
|
|
358
361
|
export { default as IconBadge4k } from './badge-4k.svelte';
|
|
362
|
+
export { default as IconBadge5k } from './badge-5k.svelte';
|
|
359
363
|
export { default as IconBadge8k } from './badge-8k.svelte';
|
|
360
364
|
export { default as IconBadgeAdOff } from './badge-ad-off.svelte';
|
|
361
365
|
export { default as IconBadgeAd } from './badge-ad.svelte';
|
|
@@ -499,6 +503,7 @@ export { default as IconBlendMode } from './blend-mode.svelte';
|
|
|
499
503
|
export { default as IconBlender } from './blender.svelte';
|
|
500
504
|
export { default as IconBlob } from './blob.svelte';
|
|
501
505
|
export { default as IconBlockquote } from './blockquote.svelte';
|
|
506
|
+
export { default as IconBlocks } from './blocks.svelte';
|
|
502
507
|
export { default as IconBluetoothConnected } from './bluetooth-connected.svelte';
|
|
503
508
|
export { default as IconBluetoothOff } from './bluetooth-off.svelte';
|
|
504
509
|
export { default as IconBluetoothX } from './bluetooth-x.svelte';
|
|
@@ -564,6 +569,7 @@ export { default as IconBow } from './bow.svelte';
|
|
|
564
569
|
export { default as IconBowlChopsticks } from './bowl-chopsticks.svelte';
|
|
565
570
|
export { default as IconBowlSpoon } from './bowl-spoon.svelte';
|
|
566
571
|
export { default as IconBowl } from './bowl.svelte';
|
|
572
|
+
export { default as IconBowling } from './bowling.svelte';
|
|
567
573
|
export { default as IconBoxAlignBottomLeft } from './box-align-bottom-left.svelte';
|
|
568
574
|
export { default as IconBoxAlignBottomRight } from './box-align-bottom-right.svelte';
|
|
569
575
|
export { default as IconBoxAlignBottom } from './box-align-bottom.svelte';
|
|
@@ -902,6 +908,7 @@ export { default as IconBrandTeams } from './brand-teams.svelte';
|
|
|
902
908
|
export { default as IconBrandTed } from './brand-ted.svelte';
|
|
903
909
|
export { default as IconBrandTelegram } from './brand-telegram.svelte';
|
|
904
910
|
export { default as IconBrandTerraform } from './brand-terraform.svelte';
|
|
911
|
+
export { default as IconBrandTesla } from './brand-tesla.svelte';
|
|
905
912
|
export { default as IconBrandTether } from './brand-tether.svelte';
|
|
906
913
|
export { default as IconBrandThingiverse } from './brand-thingiverse.svelte';
|
|
907
914
|
export { default as IconBrandThreads } from './brand-threads.svelte';
|
|
@@ -984,8 +991,11 @@ export { default as IconBrightness } from './brightness.svelte';
|
|
|
984
991
|
export { default as IconBroadcastOff } from './broadcast-off.svelte';
|
|
985
992
|
export { default as IconBroadcast } from './broadcast.svelte';
|
|
986
993
|
export { default as IconBrowserCheck } from './browser-check.svelte';
|
|
994
|
+
export { default as IconBrowserMaximize } from './browser-maximize.svelte';
|
|
995
|
+
export { default as IconBrowserMinus } from './browser-minus.svelte';
|
|
987
996
|
export { default as IconBrowserOff } from './browser-off.svelte';
|
|
988
997
|
export { default as IconBrowserPlus } from './browser-plus.svelte';
|
|
998
|
+
export { default as IconBrowserShare } from './browser-share.svelte';
|
|
989
999
|
export { default as IconBrowserX } from './browser-x.svelte';
|
|
990
1000
|
export { default as IconBrowser } from './browser.svelte';
|
|
991
1001
|
export { default as IconBrushOff } from './brush-off.svelte';
|
|
@@ -1437,6 +1447,7 @@ export { default as IconClipboardHeart } from './clipboard-heart.svelte';
|
|
|
1437
1447
|
export { default as IconClipboardList } from './clipboard-list.svelte';
|
|
1438
1448
|
export { default as IconClipboardOff } from './clipboard-off.svelte';
|
|
1439
1449
|
export { default as IconClipboardPlus } from './clipboard-plus.svelte';
|
|
1450
|
+
export { default as IconClipboardSearch } from './clipboard-search.svelte';
|
|
1440
1451
|
export { default as IconClipboardSmile } from './clipboard-smile.svelte';
|
|
1441
1452
|
export { default as IconClipboardText } from './clipboard-text.svelte';
|
|
1442
1453
|
export { default as IconClipboardTypography } from './clipboard-typography.svelte';
|
|
@@ -1529,6 +1540,9 @@ export { default as IconCodeDots } from './code-dots.svelte';
|
|
|
1529
1540
|
export { default as IconCodeMinus } from './code-minus.svelte';
|
|
1530
1541
|
export { default as IconCodeOff } from './code-off.svelte';
|
|
1531
1542
|
export { default as IconCodePlus } from './code-plus.svelte';
|
|
1543
|
+
export { default as IconCodeVariableMinus } from './code-variable-minus.svelte';
|
|
1544
|
+
export { default as IconCodeVariablePlus } from './code-variable-plus.svelte';
|
|
1545
|
+
export { default as IconCodeVariable } from './code-variable.svelte';
|
|
1532
1546
|
export { default as IconCode } from './code.svelte';
|
|
1533
1547
|
export { default as IconCoffeeOff } from './coffee-off.svelte';
|
|
1534
1548
|
export { default as IconCoffee } from './coffee.svelte';
|
|
@@ -4449,7 +4463,9 @@ export { default as IconTableShare } from './table-share.svelte';
|
|
|
4449
4463
|
export { default as IconTableShortcut } from './table-shortcut.svelte';
|
|
4450
4464
|
export { default as IconTableSpark } from './table-spark.svelte';
|
|
4451
4465
|
export { default as IconTable } from './table.svelte';
|
|
4466
|
+
export { default as IconTagMinus } from './tag-minus.svelte';
|
|
4452
4467
|
export { default as IconTagOff } from './tag-off.svelte';
|
|
4468
|
+
export { default as IconTagPlus } from './tag-plus.svelte';
|
|
4453
4469
|
export { default as IconTagStarred } from './tag-starred.svelte';
|
|
4454
4470
|
export { default as IconTag } from './tag.svelte';
|
|
4455
4471
|
export { default as IconTagsOff } from './tags-off.svelte';
|
|
@@ -4640,6 +4656,7 @@ export { default as IconUTurnLeft } from './u-turn-left.svelte';
|
|
|
4640
4656
|
export { default as IconUTurnRight } from './u-turn-right.svelte';
|
|
4641
4657
|
export { default as IconUfoOff } from './ufo-off.svelte';
|
|
4642
4658
|
export { default as IconUfo } from './ufo.svelte';
|
|
4659
|
+
export { default as IconUhd } from './uhd.svelte';
|
|
4643
4660
|
export { default as IconUmbrella2 } from './umbrella-2.svelte';
|
|
4644
4661
|
export { default as IconUmbrellaClosed2 } from './umbrella-closed-2.svelte';
|
|
4645
4662
|
export { default as IconUmbrellaClosed } from './umbrella-closed.svelte';
|
|
@@ -4784,6 +4801,8 @@ export { default as IconWavesElectricity } from './waves-electricity.svelte';
|
|
|
4784
4801
|
export { default as IconWebhookOff } from './webhook-off.svelte';
|
|
4785
4802
|
export { default as IconWebhook } from './webhook.svelte';
|
|
4786
4803
|
export { default as IconWeight } from './weight.svelte';
|
|
4804
|
+
export { default as IconWheatOff } from './wheat-off.svelte';
|
|
4805
|
+
export { default as IconWheat } from './wheat.svelte';
|
|
4787
4806
|
export { default as IconWheel } from './wheel.svelte';
|
|
4788
4807
|
export { default as IconWheelchairOff } from './wheelchair-off.svelte';
|
|
4789
4808
|
export { default as IconWheelchair } from './wheelchair.svelte';
|
|
@@ -5042,6 +5061,7 @@ export { default as IconBrandGoogleFilled } from './brand-google-filled.svelte';
|
|
|
5042
5061
|
export { default as IconBrandInstagramFilled } from './brand-instagram-filled.svelte';
|
|
5043
5062
|
export { default as IconBrandKickFilled } from './brand-kick-filled.svelte';
|
|
5044
5063
|
export { default as IconBrandLinkedinFilled } from './brand-linkedin-filled.svelte';
|
|
5064
|
+
export { default as IconBrandMessengerFilled } from './brand-messenger-filled.svelte';
|
|
5045
5065
|
export { default as IconBrandOpenSourceFilled } from './brand-open-source-filled.svelte';
|
|
5046
5066
|
export { default as IconBrandOperaFilled } from './brand-opera-filled.svelte';
|
|
5047
5067
|
export { default as IconBrandPatreonFilled } from './brand-patreon-filled.svelte';
|
|
@@ -5059,6 +5079,7 @@ export { default as IconBrandTumblrFilled } from './brand-tumblr-filled.svelte';
|
|
|
5059
5079
|
export { default as IconBrandTwitterFilled } from './brand-twitter-filled.svelte';
|
|
5060
5080
|
export { default as IconBrandVercelFilled } from './brand-vercel-filled.svelte';
|
|
5061
5081
|
export { default as IconBrandVimeoFilled } from './brand-vimeo-filled.svelte';
|
|
5082
|
+
export { default as IconBrandWeiboFilled } from './brand-weibo-filled.svelte';
|
|
5062
5083
|
export { default as IconBrandWhatsappFilled } from './brand-whatsapp-filled.svelte';
|
|
5063
5084
|
export { default as IconBrandWindowsFilled } from './brand-windows-filled.svelte';
|
|
5064
5085
|
export { default as IconBrandXFilled } from './brand-x-filled.svelte';
|
|
@@ -5070,6 +5091,7 @@ export { default as IconBrightnessAutoFilled } from './brightness-auto-filled.sv
|
|
|
5070
5091
|
export { default as IconBrightnessDownFilled } from './brightness-down-filled.svelte';
|
|
5071
5092
|
export { default as IconBrightnessUpFilled } from './brightness-up-filled.svelte';
|
|
5072
5093
|
export { default as IconBrightnessFilled } from './brightness-filled.svelte';
|
|
5094
|
+
export { default as IconBubbleTextFilled } from './bubble-text-filled.svelte';
|
|
5073
5095
|
export { default as IconBubbleFilled } from './bubble-filled.svelte';
|
|
5074
5096
|
export { default as IconBugFilled } from './bug-filled.svelte';
|
|
5075
5097
|
export { default as IconBuildingBroadcastTowerFilled } from './building-broadcast-tower-filled.svelte';
|
|
@@ -5077,6 +5099,9 @@ export { default as IconBulbFilled } from './bulb-filled.svelte';
|
|
|
5077
5099
|
export { default as IconButterflyFilled } from './butterfly-filled.svelte';
|
|
5078
5100
|
export { default as IconCactusFilled } from './cactus-filled.svelte';
|
|
5079
5101
|
export { default as IconCalculatorFilled } from './calculator-filled.svelte';
|
|
5102
|
+
export { default as IconCalendarEventFilled } from './calendar-event-filled.svelte';
|
|
5103
|
+
export { default as IconCalendarMonthFilled } from './calendar-month-filled.svelte';
|
|
5104
|
+
export { default as IconCalendarWeekFilled } from './calendar-week-filled.svelte';
|
|
5080
5105
|
export { default as IconCalendarFilled } from './calendar-filled.svelte';
|
|
5081
5106
|
export { default as IconCameraFilled } from './camera-filled.svelte';
|
|
5082
5107
|
export { default as IconCampfireFilled } from './campfire-filled.svelte';
|
|
@@ -5278,12 +5303,14 @@ export { default as IconFountainFilled } from './fountain-filled.svelte';
|
|
|
5278
5303
|
export { default as IconFunctionFilled } from './function-filled.svelte';
|
|
5279
5304
|
export { default as IconGaugeFilled } from './gauge-filled.svelte';
|
|
5280
5305
|
export { default as IconGhost2Filled } from './ghost-2-filled.svelte';
|
|
5306
|
+
export { default as IconGhost3Filled } from './ghost-3-filled.svelte';
|
|
5281
5307
|
export { default as IconGhostFilled } from './ghost-filled.svelte';
|
|
5282
5308
|
export { default as IconGiftCardFilled } from './gift-card-filled.svelte';
|
|
5283
5309
|
export { default as IconGiftFilled } from './gift-filled.svelte';
|
|
5284
5310
|
export { default as IconGlassFullFilled } from './glass-full-filled.svelte';
|
|
5285
5311
|
export { default as IconGlassFilled } from './glass-filled.svelte';
|
|
5286
5312
|
export { default as IconGlobeFilled } from './globe-filled.svelte';
|
|
5313
|
+
export { default as IconGolfFilled } from './golf-filled.svelte';
|
|
5287
5314
|
export { default as IconGpsFilled } from './gps-filled.svelte';
|
|
5288
5315
|
export { default as IconGraphFilled } from './graph-filled.svelte';
|
|
5289
5316
|
export { default as IconGuitarPickFilled } from './guitar-pick-filled.svelte';
|
|
@@ -5361,6 +5388,7 @@ export { default as IconIroningFilled } from './ironing-filled.svelte';
|
|
|
5361
5388
|
export { default as IconJetpackFilled } from './jetpack-filled.svelte';
|
|
5362
5389
|
export { default as IconJewishStarFilled } from './jewish-star-filled.svelte';
|
|
5363
5390
|
export { default as IconKeyFilled } from './key-filled.svelte';
|
|
5391
|
+
export { default as IconKeyboardFilled } from './keyboard-filled.svelte';
|
|
5364
5392
|
export { default as IconKeyframeAlignCenterFilled } from './keyframe-align-center-filled.svelte';
|
|
5365
5393
|
export { default as IconKeyframeAlignHorizontalFilled } from './keyframe-align-horizontal-filled.svelte';
|
|
5366
5394
|
export { default as IconKeyframeAlignVerticalFilled } from './keyframe-align-vertical-filled.svelte';
|
|
@@ -5398,6 +5426,7 @@ export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svel
|
|
|
5398
5426
|
export { default as IconLayoutFilled } from './layout-filled.svelte';
|
|
5399
5427
|
export { default as IconLegoFilled } from './lego-filled.svelte';
|
|
5400
5428
|
export { default as IconLivePhotoFilled } from './live-photo-filled.svelte';
|
|
5429
|
+
export { default as IconLiveViewFilled } from './live-view-filled.svelte';
|
|
5401
5430
|
export { default as IconLocationFilled } from './location-filled.svelte';
|
|
5402
5431
|
export { default as IconLockSquareRoundedFilled } from './lock-square-rounded-filled.svelte';
|
|
5403
5432
|
export { default as IconLockFilled } from './lock-filled.svelte';
|
|
@@ -5410,7 +5439,9 @@ export { default as IconManFilled } from './man-filled.svelte';
|
|
|
5410
5439
|
export { default as IconManualGearboxFilled } from './manual-gearbox-filled.svelte';
|
|
5411
5440
|
export { default as IconMapPinFilled } from './map-pin-filled.svelte';
|
|
5412
5441
|
export { default as IconMedicalCrossFilled } from './medical-cross-filled.svelte';
|
|
5442
|
+
export { default as IconMeepleFilled } from './meeple-filled.svelte';
|
|
5413
5443
|
export { default as IconMelonFilled } from './melon-filled.svelte';
|
|
5444
|
+
export { default as IconMessage2Filled } from './message-2-filled.svelte';
|
|
5414
5445
|
export { default as IconMessageChatbotFilled } from './message-chatbot-filled.svelte';
|
|
5415
5446
|
export { default as IconMessageCircleFilled } from './message-circle-filled.svelte';
|
|
5416
5447
|
export { default as IconMessageReportFilled } from './message-report-filled.svelte';
|
|
@@ -5438,10 +5469,12 @@ export { default as IconMouseFilled } from './mouse-filled.svelte';
|
|
|
5438
5469
|
export { default as IconMugFilled } from './mug-filled.svelte';
|
|
5439
5470
|
export { default as IconMushroomFilled } from './mushroom-filled.svelte';
|
|
5440
5471
|
export { default as IconNavigationFilled } from './navigation-filled.svelte';
|
|
5472
|
+
export { default as IconNurseFilled } from './nurse-filled.svelte';
|
|
5441
5473
|
export { default as IconOctagonFilled } from './octagon-filled.svelte';
|
|
5442
5474
|
export { default as IconOvalVerticalFilled } from './oval-vertical-filled.svelte';
|
|
5443
5475
|
export { default as IconOvalFilled } from './oval-filled.svelte';
|
|
5444
5476
|
export { default as IconPaintFilled } from './paint-filled.svelte';
|
|
5477
|
+
export { default as IconPaletteFilled } from './palette-filled.svelte';
|
|
5445
5478
|
export { default as IconPanoramaHorizontalFilled } from './panorama-horizontal-filled.svelte';
|
|
5446
5479
|
export { default as IconPanoramaVerticalFilled } from './panorama-vertical-filled.svelte';
|
|
5447
5480
|
export { default as IconParkingCircleFilled } from './parking-circle-filled.svelte';
|
|
@@ -5488,6 +5521,7 @@ export { default as IconPooFilled } from './poo-filled.svelte';
|
|
|
5488
5521
|
export { default as IconPresentationAnalyticsFilled } from './presentation-analytics-filled.svelte';
|
|
5489
5522
|
export { default as IconPresentationFilled } from './presentation-filled.svelte';
|
|
5490
5523
|
export { default as IconPuzzleFilled } from './puzzle-filled.svelte';
|
|
5524
|
+
export { default as IconQuoteFilled } from './quote-filled.svelte';
|
|
5491
5525
|
export { default as IconRadarFilled } from './radar-filled.svelte';
|
|
5492
5526
|
export { default as IconRadioactiveFilled } from './radioactive-filled.svelte';
|
|
5493
5527
|
export { default as IconReceiptFilled } from './receipt-filled.svelte';
|
|
@@ -5677,7 +5711,9 @@ export { default as IconTrophyFilled } from './trophy-filled.svelte';
|
|
|
5677
5711
|
export { default as IconUmbrellaFilled } from './umbrella-filled.svelte';
|
|
5678
5712
|
export { default as IconUserFilled } from './user-filled.svelte';
|
|
5679
5713
|
export { default as IconVersionsFilled } from './versions-filled.svelte';
|
|
5714
|
+
export { default as IconVideoFilled } from './video-filled.svelte';
|
|
5680
5715
|
export { default as IconWindmillFilled } from './windmill-filled.svelte';
|
|
5716
|
+
export { default as IconWindsockFilled } from './windsock-filled.svelte';
|
|
5681
5717
|
export { default as IconWomanFilled } from './woman-filled.svelte';
|
|
5682
5718
|
export { default as IconXboxAFilled } from './xbox-a-filled.svelte';
|
|
5683
5719
|
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 {};
|