@tabler/icons-svelte 3.11.0 → 3.13.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/aliases.d.ts +1 -0
- package/dist/aliases.js +1 -0
- package/dist/icons/adjustments-spark.svelte +6 -0
- package/dist/icons/adjustments-spark.svelte.d.ts +17 -0
- package/dist/icons/arrows-transfer-up-down.svelte +6 -0
- package/dist/icons/arrows-transfer-up-down.svelte.d.ts +17 -0
- package/dist/icons/battery-spark.svelte +6 -0
- package/dist/icons/battery-spark.svelte.d.ts +17 -0
- package/dist/icons/brand-amie.svelte +6 -0
- package/dist/icons/brand-amie.svelte.d.ts +17 -0
- package/dist/icons/brand-bebo.svelte +6 -0
- package/dist/icons/brand-bebo.svelte.d.ts +17 -0
- package/dist/icons/building-airport.svelte +6 -0
- package/dist/icons/building-airport.svelte.d.ts +17 -0
- package/dist/icons/camera-ai.svelte +6 -0
- package/dist/icons/camera-ai.svelte.d.ts +17 -0
- package/dist/icons/camera-bitcoin.svelte +6 -0
- package/dist/icons/camera-bitcoin.svelte.d.ts +17 -0
- package/dist/icons/camera-moon.svelte +6 -0
- package/dist/icons/camera-moon.svelte.d.ts +17 -0
- package/dist/icons/camera-spark.svelte +6 -0
- package/dist/icons/camera-spark.svelte.d.ts +17 -0
- package/dist/icons/chart-column.svelte +6 -0
- package/dist/icons/chart-column.svelte.d.ts +17 -0
- package/dist/icons/chart-covariate.svelte +6 -0
- package/dist/icons/chart-covariate.svelte.d.ts +17 -0
- package/dist/icons/congruent-to.svelte +6 -0
- package/dist/icons/congruent-to.svelte.d.ts +17 -0
- package/dist/icons/cube-spark.svelte +6 -0
- package/dist/icons/cube-spark.svelte.d.ts +17 -0
- package/dist/icons/diaper.svelte +6 -0
- package/dist/icons/diaper.svelte.d.ts +17 -0
- package/dist/icons/eye-spark.svelte +6 -0
- package/dist/icons/eye-spark.svelte.d.ts +17 -0
- package/dist/icons/file-ai.svelte +6 -0
- package/dist/icons/file-ai.svelte.d.ts +17 -0
- package/dist/icons/file-bitcoin.svelte +6 -0
- package/dist/icons/file-bitcoin.svelte.d.ts +17 -0
- package/dist/icons/file-spark.svelte +6 -0
- package/dist/icons/file-spark.svelte.d.ts +17 -0
- package/dist/icons/file-text-spark.svelte +6 -0
- package/dist/icons/file-text-spark.svelte.d.ts +17 -0
- package/dist/icons/flag-spark.svelte +6 -0
- package/dist/icons/flag-spark.svelte.d.ts +17 -0
- package/dist/icons/heart-spark.svelte +6 -0
- package/dist/icons/heart-spark.svelte.d.ts +17 -0
- package/dist/icons/home-spark.svelte +6 -0
- package/dist/icons/home-spark.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +36 -1
- package/dist/icons/index.js +36 -1
- package/dist/icons/input-spark.svelte +6 -0
- package/dist/icons/input-spark.svelte.d.ts +17 -0
- package/dist/icons/lock-password.svelte +6 -0
- package/dist/icons/lock-password.svelte.d.ts +17 -0
- package/dist/icons/mail-spark.svelte +6 -0
- package/dist/icons/mail-spark.svelte.d.ts +17 -0
- package/dist/icons/mood-spark.svelte +6 -0
- package/dist/icons/mood-spark.svelte.d.ts +17 -0
- package/dist/icons/phone-done.svelte +6 -0
- package/dist/icons/phone-done.svelte.d.ts +17 -0
- package/dist/icons/phone-end.svelte +6 -0
- package/dist/icons/phone-end.svelte.d.ts +17 -0
- package/dist/icons/phone-outgoing.svelte +1 -1
- package/dist/icons/phone-pause.svelte +1 -1
- package/dist/icons/phone-ringing.svelte +6 -0
- package/dist/icons/phone-ringing.svelte.d.ts +17 -0
- package/dist/icons/phone-spark.svelte +6 -0
- package/dist/icons/phone-spark.svelte.d.ts +17 -0
- package/dist/icons/photo-spark.svelte +6 -0
- package/dist/icons/photo-spark.svelte.d.ts +17 -0
- package/dist/icons/server-spark.svelte +6 -0
- package/dist/icons/server-spark.svelte.d.ts +17 -0
- package/dist/icons/settings-spark.svelte +6 -0
- package/dist/icons/settings-spark.svelte.d.ts +17 -0
- package/dist/icons/stopwatch.svelte +6 -0
- package/dist/icons/stopwatch.svelte.d.ts +17 -0
- package/dist/icons/table-spark.svelte +6 -0
- package/dist/icons/table-spark.svelte.d.ts +17 -0
- package/dist/icons-list.js +36 -1
- package/package.json +3 -3
- package/dist/icons/circle-dashed-letter-letter-v.svelte +0 -6
- package/dist/icons/circle-dashed-letter-letter-v.svelte.d.ts +0 -17
|
@@ -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 HomeSparkProps = typeof __propDef.props;
|
|
13
|
+
export type HomeSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type HomeSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class HomeSpark extends SvelteComponentTyped<HomeSparkProps, HomeSparkEvents, HomeSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export { default as IconAdjustmentsPlus } from './adjustments-plus.svelte';
|
|
|
36
36
|
export { default as IconAdjustmentsQuestion } from './adjustments-question.svelte';
|
|
37
37
|
export { default as IconAdjustmentsSearch } from './adjustments-search.svelte';
|
|
38
38
|
export { default as IconAdjustmentsShare } from './adjustments-share.svelte';
|
|
39
|
+
export { default as IconAdjustmentsSpark } from './adjustments-spark.svelte';
|
|
39
40
|
export { default as IconAdjustmentsStar } from './adjustments-star.svelte';
|
|
40
41
|
export { default as IconAdjustmentsUp } from './adjustments-up.svelte';
|
|
41
42
|
export { default as IconAdjustmentsX } from './adjustments-x.svelte';
|
|
@@ -302,6 +303,7 @@ export { default as IconArrowsSort } from './arrows-sort.svelte';
|
|
|
302
303
|
export { default as IconArrowsSplit2 } from './arrows-split-2.svelte';
|
|
303
304
|
export { default as IconArrowsSplit } from './arrows-split.svelte';
|
|
304
305
|
export { default as IconArrowsTransferDown } from './arrows-transfer-down.svelte';
|
|
306
|
+
export { default as IconArrowsTransferUpDown } from './arrows-transfer-up-down.svelte';
|
|
305
307
|
export { default as IconArrowsTransferUp } from './arrows-transfer-up.svelte';
|
|
306
308
|
export { default as IconArrowsUpDown } from './arrows-up-down.svelte';
|
|
307
309
|
export { default as IconArrowsUpLeft } from './arrows-up-left.svelte';
|
|
@@ -425,6 +427,7 @@ export { default as IconBatteryCharging } from './battery-charging.svelte';
|
|
|
425
427
|
export { default as IconBatteryEco } from './battery-eco.svelte';
|
|
426
428
|
export { default as IconBatteryExclamation } from './battery-exclamation.svelte';
|
|
427
429
|
export { default as IconBatteryOff } from './battery-off.svelte';
|
|
430
|
+
export { default as IconBatterySpark } from './battery-spark.svelte';
|
|
428
431
|
export { default as IconBatteryVertical1 } from './battery-vertical-1.svelte';
|
|
429
432
|
export { default as IconBatteryVertical2 } from './battery-vertical-2.svelte';
|
|
430
433
|
export { default as IconBatteryVertical3 } from './battery-vertical-3.svelte';
|
|
@@ -608,6 +611,7 @@ export { default as IconBrandAlipay } from './brand-alipay.svelte';
|
|
|
608
611
|
export { default as IconBrandAlpineJs } from './brand-alpine-js.svelte';
|
|
609
612
|
export { default as IconBrandAmazon } from './brand-amazon.svelte';
|
|
610
613
|
export { default as IconBrandAmd } from './brand-amd.svelte';
|
|
614
|
+
export { default as IconBrandAmie } from './brand-amie.svelte';
|
|
611
615
|
export { default as IconBrandAmigo } from './brand-amigo.svelte';
|
|
612
616
|
export { default as IconBrandAmongUs } from './brand-among-us.svelte';
|
|
613
617
|
export { default as IconBrandAndroid } from './brand-android.svelte';
|
|
@@ -632,6 +636,7 @@ export { default as IconBrandBaidu } from './brand-baidu.svelte';
|
|
|
632
636
|
export { default as IconBrandBandcamp } from './brand-bandcamp.svelte';
|
|
633
637
|
export { default as IconBrandBandlab } from './brand-bandlab.svelte';
|
|
634
638
|
export { default as IconBrandBeats } from './brand-beats.svelte';
|
|
639
|
+
export { default as IconBrandBebo } from './brand-bebo.svelte';
|
|
635
640
|
export { default as IconBrandBehance } from './brand-behance.svelte';
|
|
636
641
|
export { default as IconBrandBilibili } from './brand-bilibili.svelte';
|
|
637
642
|
export { default as IconBrandBinance } from './brand-binance.svelte';
|
|
@@ -989,6 +994,7 @@ export { default as IconBucketOff } from './bucket-off.svelte';
|
|
|
989
994
|
export { default as IconBucket } from './bucket.svelte';
|
|
990
995
|
export { default as IconBugOff } from './bug-off.svelte';
|
|
991
996
|
export { default as IconBug } from './bug.svelte';
|
|
997
|
+
export { default as IconBuildingAirport } from './building-airport.svelte';
|
|
992
998
|
export { default as IconBuildingArch } from './building-arch.svelte';
|
|
993
999
|
export { default as IconBuildingBank } from './building-bank.svelte';
|
|
994
1000
|
export { default as IconBuildingBridge2 } from './building-bridge-2.svelte';
|
|
@@ -1067,6 +1073,8 @@ export { default as IconCalendarUser } from './calendar-user.svelte';
|
|
|
1067
1073
|
export { default as IconCalendarWeek } from './calendar-week.svelte';
|
|
1068
1074
|
export { default as IconCalendarX } from './calendar-x.svelte';
|
|
1069
1075
|
export { default as IconCalendar } from './calendar.svelte';
|
|
1076
|
+
export { default as IconCameraAi } from './camera-ai.svelte';
|
|
1077
|
+
export { default as IconCameraBitcoin } from './camera-bitcoin.svelte';
|
|
1070
1078
|
export { default as IconCameraBolt } from './camera-bolt.svelte';
|
|
1071
1079
|
export { default as IconCameraCancel } from './camera-cancel.svelte';
|
|
1072
1080
|
export { default as IconCameraCheck } from './camera-check.svelte';
|
|
@@ -1077,6 +1085,7 @@ export { default as IconCameraDown } from './camera-down.svelte';
|
|
|
1077
1085
|
export { default as IconCameraExclamation } from './camera-exclamation.svelte';
|
|
1078
1086
|
export { default as IconCameraHeart } from './camera-heart.svelte';
|
|
1079
1087
|
export { default as IconCameraMinus } from './camera-minus.svelte';
|
|
1088
|
+
export { default as IconCameraMoon } from './camera-moon.svelte';
|
|
1080
1089
|
export { default as IconCameraOff } from './camera-off.svelte';
|
|
1081
1090
|
export { default as IconCameraPause } from './camera-pause.svelte';
|
|
1082
1091
|
export { default as IconCameraPin } from './camera-pin.svelte';
|
|
@@ -1086,6 +1095,7 @@ export { default as IconCameraRotate } from './camera-rotate.svelte';
|
|
|
1086
1095
|
export { default as IconCameraSearch } from './camera-search.svelte';
|
|
1087
1096
|
export { default as IconCameraSelfie } from './camera-selfie.svelte';
|
|
1088
1097
|
export { default as IconCameraShare } from './camera-share.svelte';
|
|
1098
|
+
export { default as IconCameraSpark } from './camera-spark.svelte';
|
|
1089
1099
|
export { default as IconCameraStar } from './camera-star.svelte';
|
|
1090
1100
|
export { default as IconCameraUp } from './camera-up.svelte';
|
|
1091
1101
|
export { default as IconCameraX } from './camera-x.svelte';
|
|
@@ -1175,6 +1185,8 @@ export { default as IconChartBubble } from './chart-bubble.svelte';
|
|
|
1175
1185
|
export { default as IconChartCandle } from './chart-candle.svelte';
|
|
1176
1186
|
export { default as IconChartCircles } from './chart-circles.svelte';
|
|
1177
1187
|
export { default as IconChartCohort } from './chart-cohort.svelte';
|
|
1188
|
+
export { default as IconChartColumn } from './chart-column.svelte';
|
|
1189
|
+
export { default as IconChartCovariate } from './chart-covariate.svelte';
|
|
1178
1190
|
export { default as IconChartDonut2 } from './chart-donut-2.svelte';
|
|
1179
1191
|
export { default as IconChartDonut3 } from './chart-donut-3.svelte';
|
|
1180
1192
|
export { default as IconChartDonut4 } from './chart-donut-4.svelte';
|
|
@@ -1273,7 +1285,6 @@ export { default as IconCircleDashedLetterI } from './circle-dashed-letter-i.sve
|
|
|
1273
1285
|
export { default as IconCircleDashedLetterJ } from './circle-dashed-letter-j.svelte';
|
|
1274
1286
|
export { default as IconCircleDashedLetterK } from './circle-dashed-letter-k.svelte';
|
|
1275
1287
|
export { default as IconCircleDashedLetterL } from './circle-dashed-letter-l.svelte';
|
|
1276
|
-
export { default as IconCircleDashedLetterLetterV } from './circle-dashed-letter-letter-v.svelte';
|
|
1277
1288
|
export { default as IconCircleDashedLetterM } from './circle-dashed-letter-m.svelte';
|
|
1278
1289
|
export { default as IconCircleDashedLetterN } from './circle-dashed-letter-n.svelte';
|
|
1279
1290
|
export { default as IconCircleDashedLetterO } from './circle-dashed-letter-o.svelte';
|
|
@@ -1549,6 +1560,7 @@ export { default as IconCone } from './cone.svelte';
|
|
|
1549
1560
|
export { default as IconConfettiOff } from './confetti-off.svelte';
|
|
1550
1561
|
export { default as IconConfetti } from './confetti.svelte';
|
|
1551
1562
|
export { default as IconConfucius } from './confucius.svelte';
|
|
1563
|
+
export { default as IconCongruentTo } from './congruent-to.svelte';
|
|
1552
1564
|
export { default as IconContainerOff } from './container-off.svelte';
|
|
1553
1565
|
export { default as IconContainer } from './container.svelte';
|
|
1554
1566
|
export { default as IconContract } from './contract.svelte';
|
|
@@ -1625,6 +1637,7 @@ export { default as IconCube3dSphere } from './cube-3d-sphere.svelte';
|
|
|
1625
1637
|
export { default as IconCubeOff } from './cube-off.svelte';
|
|
1626
1638
|
export { default as IconCubePlus } from './cube-plus.svelte';
|
|
1627
1639
|
export { default as IconCubeSend } from './cube-send.svelte';
|
|
1640
|
+
export { default as IconCubeSpark } from './cube-spark.svelte';
|
|
1628
1641
|
export { default as IconCubeUnfolded } from './cube-unfolded.svelte';
|
|
1629
1642
|
export { default as IconCube } from './cube.svelte';
|
|
1630
1643
|
export { default as IconCupOff } from './cup-off.svelte';
|
|
@@ -1956,6 +1969,7 @@ export { default as IconDialpad } from './dialpad.svelte';
|
|
|
1956
1969
|
export { default as IconDiamondOff } from './diamond-off.svelte';
|
|
1957
1970
|
export { default as IconDiamond } from './diamond.svelte';
|
|
1958
1971
|
export { default as IconDiamonds } from './diamonds.svelte';
|
|
1972
|
+
export { default as IconDiaper } from './diaper.svelte';
|
|
1959
1973
|
export { default as IconDice1 } from './dice-1.svelte';
|
|
1960
1974
|
export { default as IconDice2 } from './dice-2.svelte';
|
|
1961
1975
|
export { default as IconDice3 } from './dice-3.svelte';
|
|
@@ -2103,6 +2117,7 @@ export { default as IconEyePlus } from './eye-plus.svelte';
|
|
|
2103
2117
|
export { default as IconEyeQuestion } from './eye-question.svelte';
|
|
2104
2118
|
export { default as IconEyeSearch } from './eye-search.svelte';
|
|
2105
2119
|
export { default as IconEyeShare } from './eye-share.svelte';
|
|
2120
|
+
export { default as IconEyeSpark } from './eye-spark.svelte';
|
|
2106
2121
|
export { default as IconEyeStar } from './eye-star.svelte';
|
|
2107
2122
|
export { default as IconEyeTable } from './eye-table.svelte';
|
|
2108
2123
|
export { default as IconEyeUp } from './eye-up.svelte';
|
|
@@ -2123,11 +2138,13 @@ export { default as IconFenceOff } from './fence-off.svelte';
|
|
|
2123
2138
|
export { default as IconFence } from './fence.svelte';
|
|
2124
2139
|
export { default as IconFidgetSpinner } from './fidget-spinner.svelte';
|
|
2125
2140
|
export { default as IconFile3d } from './file-3d.svelte';
|
|
2141
|
+
export { default as IconFileAi } from './file-ai.svelte';
|
|
2126
2142
|
export { default as IconFileAlert } from './file-alert.svelte';
|
|
2127
2143
|
export { default as IconFileAnalytics } from './file-analytics.svelte';
|
|
2128
2144
|
export { default as IconFileArrowLeft } from './file-arrow-left.svelte';
|
|
2129
2145
|
export { default as IconFileArrowRight } from './file-arrow-right.svelte';
|
|
2130
2146
|
export { default as IconFileBarcode } from './file-barcode.svelte';
|
|
2147
|
+
export { default as IconFileBitcoin } from './file-bitcoin.svelte';
|
|
2131
2148
|
export { default as IconFileBroken } from './file-broken.svelte';
|
|
2132
2149
|
export { default as IconFileCertificate } from './file-certificate.svelte';
|
|
2133
2150
|
export { default as IconFileChart } from './file-chart.svelte';
|
|
@@ -2175,11 +2192,13 @@ export { default as IconFileSettings } from './file-settings.svelte';
|
|
|
2175
2192
|
export { default as IconFileShredder } from './file-shredder.svelte';
|
|
2176
2193
|
export { default as IconFileSignal } from './file-signal.svelte';
|
|
2177
2194
|
export { default as IconFileSmile } from './file-smile.svelte';
|
|
2195
|
+
export { default as IconFileSpark } from './file-spark.svelte';
|
|
2178
2196
|
export { default as IconFileSpreadsheet } from './file-spreadsheet.svelte';
|
|
2179
2197
|
export { default as IconFileStack } from './file-stack.svelte';
|
|
2180
2198
|
export { default as IconFileStar } from './file-star.svelte';
|
|
2181
2199
|
export { default as IconFileSymlink } from './file-symlink.svelte';
|
|
2182
2200
|
export { default as IconFileTextAi } from './file-text-ai.svelte';
|
|
2201
|
+
export { default as IconFileTextSpark } from './file-text-spark.svelte';
|
|
2183
2202
|
export { default as IconFileText } from './file-text.svelte';
|
|
2184
2203
|
export { default as IconFileTime } from './file-time.svelte';
|
|
2185
2204
|
export { default as IconFileTypeBmp } from './file-type-bmp.svelte';
|
|
@@ -2276,6 +2295,7 @@ export { default as IconFlagPlus } from './flag-plus.svelte';
|
|
|
2276
2295
|
export { default as IconFlagQuestion } from './flag-question.svelte';
|
|
2277
2296
|
export { default as IconFlagSearch } from './flag-search.svelte';
|
|
2278
2297
|
export { default as IconFlagShare } from './flag-share.svelte';
|
|
2298
|
+
export { default as IconFlagSpark } from './flag-spark.svelte';
|
|
2279
2299
|
export { default as IconFlagStar } from './flag-star.svelte';
|
|
2280
2300
|
export { default as IconFlagUp } from './flag-up.svelte';
|
|
2281
2301
|
export { default as IconFlagX } from './flag-x.svelte';
|
|
@@ -2489,6 +2509,7 @@ export { default as IconHeartQuestion } from './heart-question.svelte';
|
|
|
2489
2509
|
export { default as IconHeartRateMonitor } from './heart-rate-monitor.svelte';
|
|
2490
2510
|
export { default as IconHeartSearch } from './heart-search.svelte';
|
|
2491
2511
|
export { default as IconHeartShare } from './heart-share.svelte';
|
|
2512
|
+
export { default as IconHeartSpark } from './heart-spark.svelte';
|
|
2492
2513
|
export { default as IconHeartStar } from './heart-star.svelte';
|
|
2493
2514
|
export { default as IconHeartUp } from './heart-up.svelte';
|
|
2494
2515
|
export { default as IconHeartX } from './heart-x.svelte';
|
|
@@ -2598,6 +2619,7 @@ export { default as IconHomeSearch } from './home-search.svelte';
|
|
|
2598
2619
|
export { default as IconHomeShare } from './home-share.svelte';
|
|
2599
2620
|
export { default as IconHomeShield } from './home-shield.svelte';
|
|
2600
2621
|
export { default as IconHomeSignal } from './home-signal.svelte';
|
|
2622
|
+
export { default as IconHomeSpark } from './home-spark.svelte';
|
|
2601
2623
|
export { default as IconHomeStar } from './home-star.svelte';
|
|
2602
2624
|
export { default as IconHomeStats } from './home-stats.svelte';
|
|
2603
2625
|
export { default as IconHomeUp } from './home-up.svelte';
|
|
@@ -2664,6 +2686,7 @@ export { default as IconInnerShadowTop } from './inner-shadow-top.svelte';
|
|
|
2664
2686
|
export { default as IconInputAi } from './input-ai.svelte';
|
|
2665
2687
|
export { default as IconInputCheck } from './input-check.svelte';
|
|
2666
2688
|
export { default as IconInputSearch } from './input-search.svelte';
|
|
2689
|
+
export { default as IconInputSpark } from './input-spark.svelte';
|
|
2667
2690
|
export { default as IconInputX } from './input-x.svelte';
|
|
2668
2691
|
export { default as IconInvoice } from './invoice.svelte';
|
|
2669
2692
|
export { default as IconIroning1 } from './ironing-1.svelte';
|
|
@@ -2907,6 +2930,7 @@ export { default as IconLockOff } from './lock-off.svelte';
|
|
|
2907
2930
|
export { default as IconLockOpen2 } from './lock-open-2.svelte';
|
|
2908
2931
|
export { default as IconLockOpenOff } from './lock-open-off.svelte';
|
|
2909
2932
|
export { default as IconLockOpen } from './lock-open.svelte';
|
|
2933
|
+
export { default as IconLockPassword } from './lock-password.svelte';
|
|
2910
2934
|
export { default as IconLockPause } from './lock-pause.svelte';
|
|
2911
2935
|
export { default as IconLockPin } from './lock-pin.svelte';
|
|
2912
2936
|
export { default as IconLockPlus } from './lock-plus.svelte';
|
|
@@ -2965,6 +2989,7 @@ export { default as IconMailPlus } from './mail-plus.svelte';
|
|
|
2965
2989
|
export { default as IconMailQuestion } from './mail-question.svelte';
|
|
2966
2990
|
export { default as IconMailSearch } from './mail-search.svelte';
|
|
2967
2991
|
export { default as IconMailShare } from './mail-share.svelte';
|
|
2992
|
+
export { default as IconMailSpark } from './mail-spark.svelte';
|
|
2968
2993
|
export { default as IconMailStar } from './mail-star.svelte';
|
|
2969
2994
|
export { default as IconMailUp } from './mail-up.svelte';
|
|
2970
2995
|
export { default as IconMailX } from './mail-x.svelte';
|
|
@@ -3235,6 +3260,7 @@ export { default as IconMoodSing } from './mood-sing.svelte';
|
|
|
3235
3260
|
export { default as IconMoodSmileBeam } from './mood-smile-beam.svelte';
|
|
3236
3261
|
export { default as IconMoodSmileDizzy } from './mood-smile-dizzy.svelte';
|
|
3237
3262
|
export { default as IconMoodSmile } from './mood-smile.svelte';
|
|
3263
|
+
export { default as IconMoodSpark } from './mood-spark.svelte';
|
|
3238
3264
|
export { default as IconMoodSurprised } from './mood-surprised.svelte';
|
|
3239
3265
|
export { default as IconMoodTongueWink2 } from './mood-tongue-wink-2.svelte';
|
|
3240
3266
|
export { default as IconMoodTongueWink } from './mood-tongue-wink.svelte';
|
|
@@ -3502,11 +3528,15 @@ export { default as IconPerspective } from './perspective.svelte';
|
|
|
3502
3528
|
export { default as IconPhoneCall } from './phone-call.svelte';
|
|
3503
3529
|
export { default as IconPhoneCalling } from './phone-calling.svelte';
|
|
3504
3530
|
export { default as IconPhoneCheck } from './phone-check.svelte';
|
|
3531
|
+
export { default as IconPhoneDone } from './phone-done.svelte';
|
|
3532
|
+
export { default as IconPhoneEnd } from './phone-end.svelte';
|
|
3505
3533
|
export { default as IconPhoneIncoming } from './phone-incoming.svelte';
|
|
3506
3534
|
export { default as IconPhoneOff } from './phone-off.svelte';
|
|
3507
3535
|
export { default as IconPhoneOutgoing } from './phone-outgoing.svelte';
|
|
3508
3536
|
export { default as IconPhonePause } from './phone-pause.svelte';
|
|
3509
3537
|
export { default as IconPhonePlus } from './phone-plus.svelte';
|
|
3538
|
+
export { default as IconPhoneRinging } from './phone-ringing.svelte';
|
|
3539
|
+
export { default as IconPhoneSpark } from './phone-spark.svelte';
|
|
3510
3540
|
export { default as IconPhoneX } from './phone-x.svelte';
|
|
3511
3541
|
export { default as IconPhone } from './phone.svelte';
|
|
3512
3542
|
export { default as IconPhotoAi } from './photo-ai.svelte';
|
|
@@ -3539,6 +3569,7 @@ export { default as IconPhotoSensor3 } from './photo-sensor-3.svelte';
|
|
|
3539
3569
|
export { default as IconPhotoSensor } from './photo-sensor.svelte';
|
|
3540
3570
|
export { default as IconPhotoShare } from './photo-share.svelte';
|
|
3541
3571
|
export { default as IconPhotoShield } from './photo-shield.svelte';
|
|
3572
|
+
export { default as IconPhotoSpark } from './photo-spark.svelte';
|
|
3542
3573
|
export { default as IconPhotoSquareRounded } from './photo-square-rounded.svelte';
|
|
3543
3574
|
export { default as IconPhotoStar } from './photo-star.svelte';
|
|
3544
3575
|
export { default as IconPhotoUp } from './photo-up.svelte';
|
|
@@ -3903,6 +3934,7 @@ export { default as IconServer2 } from './server-2.svelte';
|
|
|
3903
3934
|
export { default as IconServerBolt } from './server-bolt.svelte';
|
|
3904
3935
|
export { default as IconServerCog } from './server-cog.svelte';
|
|
3905
3936
|
export { default as IconServerOff } from './server-off.svelte';
|
|
3937
|
+
export { default as IconServerSpark } from './server-spark.svelte';
|
|
3906
3938
|
export { default as IconServer } from './server.svelte';
|
|
3907
3939
|
export { default as IconServicemark } from './servicemark.svelte';
|
|
3908
3940
|
export { default as IconSettings2 } from './settings-2.svelte';
|
|
@@ -3924,6 +3956,7 @@ export { default as IconSettingsPlus } from './settings-plus.svelte';
|
|
|
3924
3956
|
export { default as IconSettingsQuestion } from './settings-question.svelte';
|
|
3925
3957
|
export { default as IconSettingsSearch } from './settings-search.svelte';
|
|
3926
3958
|
export { default as IconSettingsShare } from './settings-share.svelte';
|
|
3959
|
+
export { default as IconSettingsSpark } from './settings-spark.svelte';
|
|
3927
3960
|
export { default as IconSettingsStar } from './settings-star.svelte';
|
|
3928
3961
|
export { default as IconSettingsUp } from './settings-up.svelte';
|
|
3929
3962
|
export { default as IconSettingsX } from './settings-x.svelte';
|
|
@@ -4261,6 +4294,7 @@ export { default as IconStethoscopeOff } from './stethoscope-off.svelte';
|
|
|
4261
4294
|
export { default as IconStethoscope } from './stethoscope.svelte';
|
|
4262
4295
|
export { default as IconSticker2 } from './sticker-2.svelte';
|
|
4263
4296
|
export { default as IconSticker } from './sticker.svelte';
|
|
4297
|
+
export { default as IconStopwatch } from './stopwatch.svelte';
|
|
4264
4298
|
export { default as IconStormOff } from './storm-off.svelte';
|
|
4265
4299
|
export { default as IconStorm } from './storm.svelte';
|
|
4266
4300
|
export { default as IconStretching2 } from './stretching-2.svelte';
|
|
@@ -4311,6 +4345,7 @@ export { default as IconTablePlus } from './table-plus.svelte';
|
|
|
4311
4345
|
export { default as IconTableRow } from './table-row.svelte';
|
|
4312
4346
|
export { default as IconTableShare } from './table-share.svelte';
|
|
4313
4347
|
export { default as IconTableShortcut } from './table-shortcut.svelte';
|
|
4348
|
+
export { default as IconTableSpark } from './table-spark.svelte';
|
|
4314
4349
|
export { default as IconTable } from './table.svelte';
|
|
4315
4350
|
export { default as IconTagOff } from './tag-off.svelte';
|
|
4316
4351
|
export { default as IconTagStarred } from './tag-starred.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -36,6 +36,7 @@ export { default as IconAdjustmentsPlus } from './adjustments-plus.svelte';
|
|
|
36
36
|
export { default as IconAdjustmentsQuestion } from './adjustments-question.svelte';
|
|
37
37
|
export { default as IconAdjustmentsSearch } from './adjustments-search.svelte';
|
|
38
38
|
export { default as IconAdjustmentsShare } from './adjustments-share.svelte';
|
|
39
|
+
export { default as IconAdjustmentsSpark } from './adjustments-spark.svelte';
|
|
39
40
|
export { default as IconAdjustmentsStar } from './adjustments-star.svelte';
|
|
40
41
|
export { default as IconAdjustmentsUp } from './adjustments-up.svelte';
|
|
41
42
|
export { default as IconAdjustmentsX } from './adjustments-x.svelte';
|
|
@@ -302,6 +303,7 @@ export { default as IconArrowsSort } from './arrows-sort.svelte';
|
|
|
302
303
|
export { default as IconArrowsSplit2 } from './arrows-split-2.svelte';
|
|
303
304
|
export { default as IconArrowsSplit } from './arrows-split.svelte';
|
|
304
305
|
export { default as IconArrowsTransferDown } from './arrows-transfer-down.svelte';
|
|
306
|
+
export { default as IconArrowsTransferUpDown } from './arrows-transfer-up-down.svelte';
|
|
305
307
|
export { default as IconArrowsTransferUp } from './arrows-transfer-up.svelte';
|
|
306
308
|
export { default as IconArrowsUpDown } from './arrows-up-down.svelte';
|
|
307
309
|
export { default as IconArrowsUpLeft } from './arrows-up-left.svelte';
|
|
@@ -425,6 +427,7 @@ export { default as IconBatteryCharging } from './battery-charging.svelte';
|
|
|
425
427
|
export { default as IconBatteryEco } from './battery-eco.svelte';
|
|
426
428
|
export { default as IconBatteryExclamation } from './battery-exclamation.svelte';
|
|
427
429
|
export { default as IconBatteryOff } from './battery-off.svelte';
|
|
430
|
+
export { default as IconBatterySpark } from './battery-spark.svelte';
|
|
428
431
|
export { default as IconBatteryVertical1 } from './battery-vertical-1.svelte';
|
|
429
432
|
export { default as IconBatteryVertical2 } from './battery-vertical-2.svelte';
|
|
430
433
|
export { default as IconBatteryVertical3 } from './battery-vertical-3.svelte';
|
|
@@ -608,6 +611,7 @@ export { default as IconBrandAlipay } from './brand-alipay.svelte';
|
|
|
608
611
|
export { default as IconBrandAlpineJs } from './brand-alpine-js.svelte';
|
|
609
612
|
export { default as IconBrandAmazon } from './brand-amazon.svelte';
|
|
610
613
|
export { default as IconBrandAmd } from './brand-amd.svelte';
|
|
614
|
+
export { default as IconBrandAmie } from './brand-amie.svelte';
|
|
611
615
|
export { default as IconBrandAmigo } from './brand-amigo.svelte';
|
|
612
616
|
export { default as IconBrandAmongUs } from './brand-among-us.svelte';
|
|
613
617
|
export { default as IconBrandAndroid } from './brand-android.svelte';
|
|
@@ -632,6 +636,7 @@ export { default as IconBrandBaidu } from './brand-baidu.svelte';
|
|
|
632
636
|
export { default as IconBrandBandcamp } from './brand-bandcamp.svelte';
|
|
633
637
|
export { default as IconBrandBandlab } from './brand-bandlab.svelte';
|
|
634
638
|
export { default as IconBrandBeats } from './brand-beats.svelte';
|
|
639
|
+
export { default as IconBrandBebo } from './brand-bebo.svelte';
|
|
635
640
|
export { default as IconBrandBehance } from './brand-behance.svelte';
|
|
636
641
|
export { default as IconBrandBilibili } from './brand-bilibili.svelte';
|
|
637
642
|
export { default as IconBrandBinance } from './brand-binance.svelte';
|
|
@@ -989,6 +994,7 @@ export { default as IconBucketOff } from './bucket-off.svelte';
|
|
|
989
994
|
export { default as IconBucket } from './bucket.svelte';
|
|
990
995
|
export { default as IconBugOff } from './bug-off.svelte';
|
|
991
996
|
export { default as IconBug } from './bug.svelte';
|
|
997
|
+
export { default as IconBuildingAirport } from './building-airport.svelte';
|
|
992
998
|
export { default as IconBuildingArch } from './building-arch.svelte';
|
|
993
999
|
export { default as IconBuildingBank } from './building-bank.svelte';
|
|
994
1000
|
export { default as IconBuildingBridge2 } from './building-bridge-2.svelte';
|
|
@@ -1067,6 +1073,8 @@ export { default as IconCalendarUser } from './calendar-user.svelte';
|
|
|
1067
1073
|
export { default as IconCalendarWeek } from './calendar-week.svelte';
|
|
1068
1074
|
export { default as IconCalendarX } from './calendar-x.svelte';
|
|
1069
1075
|
export { default as IconCalendar } from './calendar.svelte';
|
|
1076
|
+
export { default as IconCameraAi } from './camera-ai.svelte';
|
|
1077
|
+
export { default as IconCameraBitcoin } from './camera-bitcoin.svelte';
|
|
1070
1078
|
export { default as IconCameraBolt } from './camera-bolt.svelte';
|
|
1071
1079
|
export { default as IconCameraCancel } from './camera-cancel.svelte';
|
|
1072
1080
|
export { default as IconCameraCheck } from './camera-check.svelte';
|
|
@@ -1077,6 +1085,7 @@ export { default as IconCameraDown } from './camera-down.svelte';
|
|
|
1077
1085
|
export { default as IconCameraExclamation } from './camera-exclamation.svelte';
|
|
1078
1086
|
export { default as IconCameraHeart } from './camera-heart.svelte';
|
|
1079
1087
|
export { default as IconCameraMinus } from './camera-minus.svelte';
|
|
1088
|
+
export { default as IconCameraMoon } from './camera-moon.svelte';
|
|
1080
1089
|
export { default as IconCameraOff } from './camera-off.svelte';
|
|
1081
1090
|
export { default as IconCameraPause } from './camera-pause.svelte';
|
|
1082
1091
|
export { default as IconCameraPin } from './camera-pin.svelte';
|
|
@@ -1086,6 +1095,7 @@ export { default as IconCameraRotate } from './camera-rotate.svelte';
|
|
|
1086
1095
|
export { default as IconCameraSearch } from './camera-search.svelte';
|
|
1087
1096
|
export { default as IconCameraSelfie } from './camera-selfie.svelte';
|
|
1088
1097
|
export { default as IconCameraShare } from './camera-share.svelte';
|
|
1098
|
+
export { default as IconCameraSpark } from './camera-spark.svelte';
|
|
1089
1099
|
export { default as IconCameraStar } from './camera-star.svelte';
|
|
1090
1100
|
export { default as IconCameraUp } from './camera-up.svelte';
|
|
1091
1101
|
export { default as IconCameraX } from './camera-x.svelte';
|
|
@@ -1175,6 +1185,8 @@ export { default as IconChartBubble } from './chart-bubble.svelte';
|
|
|
1175
1185
|
export { default as IconChartCandle } from './chart-candle.svelte';
|
|
1176
1186
|
export { default as IconChartCircles } from './chart-circles.svelte';
|
|
1177
1187
|
export { default as IconChartCohort } from './chart-cohort.svelte';
|
|
1188
|
+
export { default as IconChartColumn } from './chart-column.svelte';
|
|
1189
|
+
export { default as IconChartCovariate } from './chart-covariate.svelte';
|
|
1178
1190
|
export { default as IconChartDonut2 } from './chart-donut-2.svelte';
|
|
1179
1191
|
export { default as IconChartDonut3 } from './chart-donut-3.svelte';
|
|
1180
1192
|
export { default as IconChartDonut4 } from './chart-donut-4.svelte';
|
|
@@ -1273,7 +1285,6 @@ export { default as IconCircleDashedLetterI } from './circle-dashed-letter-i.sve
|
|
|
1273
1285
|
export { default as IconCircleDashedLetterJ } from './circle-dashed-letter-j.svelte';
|
|
1274
1286
|
export { default as IconCircleDashedLetterK } from './circle-dashed-letter-k.svelte';
|
|
1275
1287
|
export { default as IconCircleDashedLetterL } from './circle-dashed-letter-l.svelte';
|
|
1276
|
-
export { default as IconCircleDashedLetterLetterV } from './circle-dashed-letter-letter-v.svelte';
|
|
1277
1288
|
export { default as IconCircleDashedLetterM } from './circle-dashed-letter-m.svelte';
|
|
1278
1289
|
export { default as IconCircleDashedLetterN } from './circle-dashed-letter-n.svelte';
|
|
1279
1290
|
export { default as IconCircleDashedLetterO } from './circle-dashed-letter-o.svelte';
|
|
@@ -1549,6 +1560,7 @@ export { default as IconCone } from './cone.svelte';
|
|
|
1549
1560
|
export { default as IconConfettiOff } from './confetti-off.svelte';
|
|
1550
1561
|
export { default as IconConfetti } from './confetti.svelte';
|
|
1551
1562
|
export { default as IconConfucius } from './confucius.svelte';
|
|
1563
|
+
export { default as IconCongruentTo } from './congruent-to.svelte';
|
|
1552
1564
|
export { default as IconContainerOff } from './container-off.svelte';
|
|
1553
1565
|
export { default as IconContainer } from './container.svelte';
|
|
1554
1566
|
export { default as IconContract } from './contract.svelte';
|
|
@@ -1625,6 +1637,7 @@ export { default as IconCube3dSphere } from './cube-3d-sphere.svelte';
|
|
|
1625
1637
|
export { default as IconCubeOff } from './cube-off.svelte';
|
|
1626
1638
|
export { default as IconCubePlus } from './cube-plus.svelte';
|
|
1627
1639
|
export { default as IconCubeSend } from './cube-send.svelte';
|
|
1640
|
+
export { default as IconCubeSpark } from './cube-spark.svelte';
|
|
1628
1641
|
export { default as IconCubeUnfolded } from './cube-unfolded.svelte';
|
|
1629
1642
|
export { default as IconCube } from './cube.svelte';
|
|
1630
1643
|
export { default as IconCupOff } from './cup-off.svelte';
|
|
@@ -1956,6 +1969,7 @@ export { default as IconDialpad } from './dialpad.svelte';
|
|
|
1956
1969
|
export { default as IconDiamondOff } from './diamond-off.svelte';
|
|
1957
1970
|
export { default as IconDiamond } from './diamond.svelte';
|
|
1958
1971
|
export { default as IconDiamonds } from './diamonds.svelte';
|
|
1972
|
+
export { default as IconDiaper } from './diaper.svelte';
|
|
1959
1973
|
export { default as IconDice1 } from './dice-1.svelte';
|
|
1960
1974
|
export { default as IconDice2 } from './dice-2.svelte';
|
|
1961
1975
|
export { default as IconDice3 } from './dice-3.svelte';
|
|
@@ -2103,6 +2117,7 @@ export { default as IconEyePlus } from './eye-plus.svelte';
|
|
|
2103
2117
|
export { default as IconEyeQuestion } from './eye-question.svelte';
|
|
2104
2118
|
export { default as IconEyeSearch } from './eye-search.svelte';
|
|
2105
2119
|
export { default as IconEyeShare } from './eye-share.svelte';
|
|
2120
|
+
export { default as IconEyeSpark } from './eye-spark.svelte';
|
|
2106
2121
|
export { default as IconEyeStar } from './eye-star.svelte';
|
|
2107
2122
|
export { default as IconEyeTable } from './eye-table.svelte';
|
|
2108
2123
|
export { default as IconEyeUp } from './eye-up.svelte';
|
|
@@ -2123,11 +2138,13 @@ export { default as IconFenceOff } from './fence-off.svelte';
|
|
|
2123
2138
|
export { default as IconFence } from './fence.svelte';
|
|
2124
2139
|
export { default as IconFidgetSpinner } from './fidget-spinner.svelte';
|
|
2125
2140
|
export { default as IconFile3d } from './file-3d.svelte';
|
|
2141
|
+
export { default as IconFileAi } from './file-ai.svelte';
|
|
2126
2142
|
export { default as IconFileAlert } from './file-alert.svelte';
|
|
2127
2143
|
export { default as IconFileAnalytics } from './file-analytics.svelte';
|
|
2128
2144
|
export { default as IconFileArrowLeft } from './file-arrow-left.svelte';
|
|
2129
2145
|
export { default as IconFileArrowRight } from './file-arrow-right.svelte';
|
|
2130
2146
|
export { default as IconFileBarcode } from './file-barcode.svelte';
|
|
2147
|
+
export { default as IconFileBitcoin } from './file-bitcoin.svelte';
|
|
2131
2148
|
export { default as IconFileBroken } from './file-broken.svelte';
|
|
2132
2149
|
export { default as IconFileCertificate } from './file-certificate.svelte';
|
|
2133
2150
|
export { default as IconFileChart } from './file-chart.svelte';
|
|
@@ -2175,11 +2192,13 @@ export { default as IconFileSettings } from './file-settings.svelte';
|
|
|
2175
2192
|
export { default as IconFileShredder } from './file-shredder.svelte';
|
|
2176
2193
|
export { default as IconFileSignal } from './file-signal.svelte';
|
|
2177
2194
|
export { default as IconFileSmile } from './file-smile.svelte';
|
|
2195
|
+
export { default as IconFileSpark } from './file-spark.svelte';
|
|
2178
2196
|
export { default as IconFileSpreadsheet } from './file-spreadsheet.svelte';
|
|
2179
2197
|
export { default as IconFileStack } from './file-stack.svelte';
|
|
2180
2198
|
export { default as IconFileStar } from './file-star.svelte';
|
|
2181
2199
|
export { default as IconFileSymlink } from './file-symlink.svelte';
|
|
2182
2200
|
export { default as IconFileTextAi } from './file-text-ai.svelte';
|
|
2201
|
+
export { default as IconFileTextSpark } from './file-text-spark.svelte';
|
|
2183
2202
|
export { default as IconFileText } from './file-text.svelte';
|
|
2184
2203
|
export { default as IconFileTime } from './file-time.svelte';
|
|
2185
2204
|
export { default as IconFileTypeBmp } from './file-type-bmp.svelte';
|
|
@@ -2276,6 +2295,7 @@ export { default as IconFlagPlus } from './flag-plus.svelte';
|
|
|
2276
2295
|
export { default as IconFlagQuestion } from './flag-question.svelte';
|
|
2277
2296
|
export { default as IconFlagSearch } from './flag-search.svelte';
|
|
2278
2297
|
export { default as IconFlagShare } from './flag-share.svelte';
|
|
2298
|
+
export { default as IconFlagSpark } from './flag-spark.svelte';
|
|
2279
2299
|
export { default as IconFlagStar } from './flag-star.svelte';
|
|
2280
2300
|
export { default as IconFlagUp } from './flag-up.svelte';
|
|
2281
2301
|
export { default as IconFlagX } from './flag-x.svelte';
|
|
@@ -2489,6 +2509,7 @@ export { default as IconHeartQuestion } from './heart-question.svelte';
|
|
|
2489
2509
|
export { default as IconHeartRateMonitor } from './heart-rate-monitor.svelte';
|
|
2490
2510
|
export { default as IconHeartSearch } from './heart-search.svelte';
|
|
2491
2511
|
export { default as IconHeartShare } from './heart-share.svelte';
|
|
2512
|
+
export { default as IconHeartSpark } from './heart-spark.svelte';
|
|
2492
2513
|
export { default as IconHeartStar } from './heart-star.svelte';
|
|
2493
2514
|
export { default as IconHeartUp } from './heart-up.svelte';
|
|
2494
2515
|
export { default as IconHeartX } from './heart-x.svelte';
|
|
@@ -2598,6 +2619,7 @@ export { default as IconHomeSearch } from './home-search.svelte';
|
|
|
2598
2619
|
export { default as IconHomeShare } from './home-share.svelte';
|
|
2599
2620
|
export { default as IconHomeShield } from './home-shield.svelte';
|
|
2600
2621
|
export { default as IconHomeSignal } from './home-signal.svelte';
|
|
2622
|
+
export { default as IconHomeSpark } from './home-spark.svelte';
|
|
2601
2623
|
export { default as IconHomeStar } from './home-star.svelte';
|
|
2602
2624
|
export { default as IconHomeStats } from './home-stats.svelte';
|
|
2603
2625
|
export { default as IconHomeUp } from './home-up.svelte';
|
|
@@ -2664,6 +2686,7 @@ export { default as IconInnerShadowTop } from './inner-shadow-top.svelte';
|
|
|
2664
2686
|
export { default as IconInputAi } from './input-ai.svelte';
|
|
2665
2687
|
export { default as IconInputCheck } from './input-check.svelte';
|
|
2666
2688
|
export { default as IconInputSearch } from './input-search.svelte';
|
|
2689
|
+
export { default as IconInputSpark } from './input-spark.svelte';
|
|
2667
2690
|
export { default as IconInputX } from './input-x.svelte';
|
|
2668
2691
|
export { default as IconInvoice } from './invoice.svelte';
|
|
2669
2692
|
export { default as IconIroning1 } from './ironing-1.svelte';
|
|
@@ -2907,6 +2930,7 @@ export { default as IconLockOff } from './lock-off.svelte';
|
|
|
2907
2930
|
export { default as IconLockOpen2 } from './lock-open-2.svelte';
|
|
2908
2931
|
export { default as IconLockOpenOff } from './lock-open-off.svelte';
|
|
2909
2932
|
export { default as IconLockOpen } from './lock-open.svelte';
|
|
2933
|
+
export { default as IconLockPassword } from './lock-password.svelte';
|
|
2910
2934
|
export { default as IconLockPause } from './lock-pause.svelte';
|
|
2911
2935
|
export { default as IconLockPin } from './lock-pin.svelte';
|
|
2912
2936
|
export { default as IconLockPlus } from './lock-plus.svelte';
|
|
@@ -2965,6 +2989,7 @@ export { default as IconMailPlus } from './mail-plus.svelte';
|
|
|
2965
2989
|
export { default as IconMailQuestion } from './mail-question.svelte';
|
|
2966
2990
|
export { default as IconMailSearch } from './mail-search.svelte';
|
|
2967
2991
|
export { default as IconMailShare } from './mail-share.svelte';
|
|
2992
|
+
export { default as IconMailSpark } from './mail-spark.svelte';
|
|
2968
2993
|
export { default as IconMailStar } from './mail-star.svelte';
|
|
2969
2994
|
export { default as IconMailUp } from './mail-up.svelte';
|
|
2970
2995
|
export { default as IconMailX } from './mail-x.svelte';
|
|
@@ -3235,6 +3260,7 @@ export { default as IconMoodSing } from './mood-sing.svelte';
|
|
|
3235
3260
|
export { default as IconMoodSmileBeam } from './mood-smile-beam.svelte';
|
|
3236
3261
|
export { default as IconMoodSmileDizzy } from './mood-smile-dizzy.svelte';
|
|
3237
3262
|
export { default as IconMoodSmile } from './mood-smile.svelte';
|
|
3263
|
+
export { default as IconMoodSpark } from './mood-spark.svelte';
|
|
3238
3264
|
export { default as IconMoodSurprised } from './mood-surprised.svelte';
|
|
3239
3265
|
export { default as IconMoodTongueWink2 } from './mood-tongue-wink-2.svelte';
|
|
3240
3266
|
export { default as IconMoodTongueWink } from './mood-tongue-wink.svelte';
|
|
@@ -3502,11 +3528,15 @@ export { default as IconPerspective } from './perspective.svelte';
|
|
|
3502
3528
|
export { default as IconPhoneCall } from './phone-call.svelte';
|
|
3503
3529
|
export { default as IconPhoneCalling } from './phone-calling.svelte';
|
|
3504
3530
|
export { default as IconPhoneCheck } from './phone-check.svelte';
|
|
3531
|
+
export { default as IconPhoneDone } from './phone-done.svelte';
|
|
3532
|
+
export { default as IconPhoneEnd } from './phone-end.svelte';
|
|
3505
3533
|
export { default as IconPhoneIncoming } from './phone-incoming.svelte';
|
|
3506
3534
|
export { default as IconPhoneOff } from './phone-off.svelte';
|
|
3507
3535
|
export { default as IconPhoneOutgoing } from './phone-outgoing.svelte';
|
|
3508
3536
|
export { default as IconPhonePause } from './phone-pause.svelte';
|
|
3509
3537
|
export { default as IconPhonePlus } from './phone-plus.svelte';
|
|
3538
|
+
export { default as IconPhoneRinging } from './phone-ringing.svelte';
|
|
3539
|
+
export { default as IconPhoneSpark } from './phone-spark.svelte';
|
|
3510
3540
|
export { default as IconPhoneX } from './phone-x.svelte';
|
|
3511
3541
|
export { default as IconPhone } from './phone.svelte';
|
|
3512
3542
|
export { default as IconPhotoAi } from './photo-ai.svelte';
|
|
@@ -3539,6 +3569,7 @@ export { default as IconPhotoSensor3 } from './photo-sensor-3.svelte';
|
|
|
3539
3569
|
export { default as IconPhotoSensor } from './photo-sensor.svelte';
|
|
3540
3570
|
export { default as IconPhotoShare } from './photo-share.svelte';
|
|
3541
3571
|
export { default as IconPhotoShield } from './photo-shield.svelte';
|
|
3572
|
+
export { default as IconPhotoSpark } from './photo-spark.svelte';
|
|
3542
3573
|
export { default as IconPhotoSquareRounded } from './photo-square-rounded.svelte';
|
|
3543
3574
|
export { default as IconPhotoStar } from './photo-star.svelte';
|
|
3544
3575
|
export { default as IconPhotoUp } from './photo-up.svelte';
|
|
@@ -3903,6 +3934,7 @@ export { default as IconServer2 } from './server-2.svelte';
|
|
|
3903
3934
|
export { default as IconServerBolt } from './server-bolt.svelte';
|
|
3904
3935
|
export { default as IconServerCog } from './server-cog.svelte';
|
|
3905
3936
|
export { default as IconServerOff } from './server-off.svelte';
|
|
3937
|
+
export { default as IconServerSpark } from './server-spark.svelte';
|
|
3906
3938
|
export { default as IconServer } from './server.svelte';
|
|
3907
3939
|
export { default as IconServicemark } from './servicemark.svelte';
|
|
3908
3940
|
export { default as IconSettings2 } from './settings-2.svelte';
|
|
@@ -3924,6 +3956,7 @@ export { default as IconSettingsPlus } from './settings-plus.svelte';
|
|
|
3924
3956
|
export { default as IconSettingsQuestion } from './settings-question.svelte';
|
|
3925
3957
|
export { default as IconSettingsSearch } from './settings-search.svelte';
|
|
3926
3958
|
export { default as IconSettingsShare } from './settings-share.svelte';
|
|
3959
|
+
export { default as IconSettingsSpark } from './settings-spark.svelte';
|
|
3927
3960
|
export { default as IconSettingsStar } from './settings-star.svelte';
|
|
3928
3961
|
export { default as IconSettingsUp } from './settings-up.svelte';
|
|
3929
3962
|
export { default as IconSettingsX } from './settings-x.svelte';
|
|
@@ -4261,6 +4294,7 @@ export { default as IconStethoscopeOff } from './stethoscope-off.svelte';
|
|
|
4261
4294
|
export { default as IconStethoscope } from './stethoscope.svelte';
|
|
4262
4295
|
export { default as IconSticker2 } from './sticker-2.svelte';
|
|
4263
4296
|
export { default as IconSticker } from './sticker.svelte';
|
|
4297
|
+
export { default as IconStopwatch } from './stopwatch.svelte';
|
|
4264
4298
|
export { default as IconStormOff } from './storm-off.svelte';
|
|
4265
4299
|
export { default as IconStorm } from './storm.svelte';
|
|
4266
4300
|
export { default as IconStretching2 } from './stretching-2.svelte';
|
|
@@ -4311,6 +4345,7 @@ export { default as IconTablePlus } from './table-plus.svelte';
|
|
|
4311
4345
|
export { default as IconTableRow } from './table-row.svelte';
|
|
4312
4346
|
export { default as IconTableShare } from './table-share.svelte';
|
|
4313
4347
|
export { default as IconTableShortcut } from './table-shortcut.svelte';
|
|
4348
|
+
export { default as IconTableSpark } from './table-spark.svelte';
|
|
4314
4349
|
export { default as IconTable } from './table.svelte';
|
|
4315
4350
|
export { default as IconTagOff } from './tag-off.svelte';
|
|
4316
4351
|
export { default as IconTagStarred } from './tag-starred.svelte';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M19 22.5a4.75 4.75 0 0 1 3.5 -3.5a4.75 4.75 0 0 1 -3.5 -3.5a4.75 4.75 0 0 1 -3.5 3.5a4.75 4.75 0 0 1 3.5 3.5" }], ["path", { "d": "M20 11.5v-2.5a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h7" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="input-spark" {...$$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 InputSparkProps = typeof __propDef.props;
|
|
13
|
+
export type InputSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type InputSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class InputSpark extends SvelteComponentTyped<InputSparkProps, InputSparkEvents, InputSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z" }], ["path", { "d": "M8 11v-4a4 4 0 1 1 8 0v4" }], ["path", { "d": "M15 16h.01" }], ["path", { "d": "M12.01 16h.01" }], ["path", { "d": "M9.02 16h.01" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="lock-password" {...$$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 LockPasswordProps = typeof __propDef.props;
|
|
13
|
+
export type LockPasswordEvents = typeof __propDef.events;
|
|
14
|
+
export type LockPasswordSlots = typeof __propDef.slots;
|
|
15
|
+
export default class LockPassword extends SvelteComponentTyped<LockPasswordProps, LockPasswordEvents, LockPasswordSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M19 22.5a4.75 4.75 0 0 1 3.5 -3.5a4.75 4.75 0 0 1 -3.5 -3.5a4.75 4.75 0 0 1 -3.5 3.5a4.75 4.75 0 0 1 3.5 3.5" }], ["path", { "d": "M11.5 19h-6.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5" }], ["path", { "d": "M3 7l9 6l9 -6" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="mail-spark" {...$$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 MailSparkProps = typeof __propDef.props;
|
|
13
|
+
export type MailSparkEvents = typeof __propDef.events;
|
|
14
|
+
export type MailSparkSlots = typeof __propDef.slots;
|
|
15
|
+
export default class MailSpark extends SvelteComponentTyped<MailSparkProps, MailSparkEvents, MailSparkSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M21 12a9 9 0 1 0 -8.994 9" }], ["path", { "d": "M9 10h.01" }], ["path", { "d": "M15 10h.01" }], ["path", { "d": "M9.5 15a3.5 3.5 0 0 0 5 0" }], ["path", { "d": "M19 22.5a4.75 4.75 0 0 1 3.5 -3.5a4.75 4.75 0 0 1 -3.5 -3.5a4.75 4.75 0 0 1 -3.5 3.5a4.75 4.75 0 0 1 3.5 3.5" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="outline" name="mood-spark" {...$$props} iconNode={iconNode}>
|
|
5
|
+
<slot/>
|
|
6
|
+
</Icon>
|