@tabler/icons-svelte 3.36.1 → 3.37.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/LICENSE +1 -1
- package/dist/icons/ball-bowling-filled.svelte +6 -0
- package/dist/icons/ball-bowling-filled.svelte.d.ts +17 -0
- package/dist/icons/index.d.ts +18 -0
- package/dist/icons/index.js +18 -0
- package/dist/icons/leaf-filled.svelte +6 -0
- package/dist/icons/leaf-filled.svelte.d.ts +17 -0
- package/dist/icons/pacman-filled.svelte +6 -0
- package/dist/icons/pacman-filled.svelte.d.ts +17 -0
- package/dist/icons/pacman.svelte +1 -1
- package/dist/icons/phone-call-filled.svelte +6 -0
- package/dist/icons/phone-call-filled.svelte.d.ts +17 -0
- package/dist/icons/phone-calling-filled.svelte +6 -0
- package/dist/icons/phone-calling-filled.svelte.d.ts +17 -0
- package/dist/icons/phone-check-filled.svelte +6 -0
- package/dist/icons/phone-check-filled.svelte.d.ts +17 -0
- package/dist/icons/phone-x-filled.svelte +6 -0
- package/dist/icons/phone-x-filled.svelte.d.ts +17 -0
- package/dist/icons/plane-arrival-filled.svelte +6 -0
- package/dist/icons/plane-arrival-filled.svelte.d.ts +17 -0
- package/dist/icons/plane-departure-filled.svelte +6 -0
- package/dist/icons/plane-departure-filled.svelte.d.ts +17 -0
- package/dist/icons/plane-filled.svelte +6 -0
- package/dist/icons/plane-filled.svelte.d.ts +17 -0
- package/dist/icons/plane-tilt-filled.svelte +6 -0
- package/dist/icons/plane-tilt-filled.svelte.d.ts +17 -0
- package/dist/icons/play-card-filled.svelte +6 -0
- package/dist/icons/play-card-filled.svelte.d.ts +17 -0
- package/dist/icons/playlist-filled.svelte +6 -0
- package/dist/icons/playlist-filled.svelte.d.ts +17 -0
- package/dist/icons/report-analytics-filled.svelte +6 -0
- package/dist/icons/report-analytics-filled.svelte.d.ts +17 -0
- package/dist/icons/report-money-filled.svelte +6 -0
- package/dist/icons/report-money-filled.svelte.d.ts +17 -0
- package/dist/icons/satellite-filled.svelte +6 -0
- package/dist/icons/satellite-filled.svelte.d.ts +17 -0
- package/dist/icons/sparkles-2-filled.svelte +6 -0
- package/dist/icons/sparkles-2-filled.svelte.d.ts +17 -0
- package/dist/icons/sparkles-filled.svelte +6 -0
- package/dist/icons/sparkles-filled.svelte.d.ts +17 -0
- package/dist/icons-list.js +18 -0
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17 3.34a10 10 0 1 1 -10 17.32a10 10 0 0 1 10 -17.32m-3 7.66a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1m-3 -3a1 1 0 0 0 -1 1v.01a1 1 0 0 0 2 0v-.01a1 1 0 0 0 -1 -1m4 -1a1 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="ball-bowling-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 BallBowlingFilledProps = typeof __propDef.props;
|
|
13
|
+
export type BallBowlingFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type BallBowlingFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class BallBowlingFilled extends SvelteComponentTyped<BallBowlingFilledProps, BallBowlingFilledEvents, BallBowlingFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -5083,6 +5083,7 @@ export { default as IconBadgeVrFilled } from './badge-vr-filled.svelte';
|
|
|
5083
5083
|
export { default as IconBadgeWcFilled } from './badge-wc-filled.svelte';
|
|
5084
5084
|
export { default as IconBadgeFilled } from './badge-filled.svelte';
|
|
5085
5085
|
export { default as IconBadgesFilled } from './badges-filled.svelte';
|
|
5086
|
+
export { default as IconBallBowlingFilled } from './ball-bowling-filled.svelte';
|
|
5086
5087
|
export { default as IconBalloonFilled } from './balloon-filled.svelte';
|
|
5087
5088
|
export { default as IconBallpenFilled } from './ballpen-filled.svelte';
|
|
5088
5089
|
export { default as IconBandageFilled } from './bandage-filled.svelte';
|
|
@@ -5639,6 +5640,7 @@ export { default as IconLayoutSidebarRightExpandFilled } from './layout-sidebar-
|
|
|
5639
5640
|
export { default as IconLayoutSidebarRightFilled } from './layout-sidebar-right-filled.svelte';
|
|
5640
5641
|
export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svelte';
|
|
5641
5642
|
export { default as IconLayoutFilled } from './layout-filled.svelte';
|
|
5643
|
+
export { default as IconLeafFilled } from './leaf-filled.svelte';
|
|
5642
5644
|
export { default as IconLegoFilled } from './lego-filled.svelte';
|
|
5643
5645
|
export { default as IconLemon2Filled } from './lemon-2-filled.svelte';
|
|
5644
5646
|
export { default as IconLibraryPlusFilled } from './library-plus-filled.svelte';
|
|
@@ -5696,6 +5698,7 @@ export { default as IconOctagonPlusFilled } from './octagon-plus-filled.svelte';
|
|
|
5696
5698
|
export { default as IconOctagonFilled } from './octagon-filled.svelte';
|
|
5697
5699
|
export { default as IconOvalVerticalFilled } from './oval-vertical-filled.svelte';
|
|
5698
5700
|
export { default as IconOvalFilled } from './oval-filled.svelte';
|
|
5701
|
+
export { default as IconPacmanFilled } from './pacman-filled.svelte';
|
|
5699
5702
|
export { default as IconPaintFilled } from './paint-filled.svelte';
|
|
5700
5703
|
export { default as IconPaletteFilled } from './palette-filled.svelte';
|
|
5701
5704
|
export { default as IconPanoramaHorizontalFilled } from './panorama-horizontal-filled.svelte';
|
|
@@ -5705,6 +5708,10 @@ export { default as IconPawFilled } from './paw-filled.svelte';
|
|
|
5705
5708
|
export { default as IconPennant2Filled } from './pennant-2-filled.svelte';
|
|
5706
5709
|
export { default as IconPennantFilled } from './pennant-filled.svelte';
|
|
5707
5710
|
export { default as IconPentagonFilled } from './pentagon-filled.svelte';
|
|
5711
|
+
export { default as IconPhoneCallFilled } from './phone-call-filled.svelte';
|
|
5712
|
+
export { default as IconPhoneCallingFilled } from './phone-calling-filled.svelte';
|
|
5713
|
+
export { default as IconPhoneCheckFilled } from './phone-check-filled.svelte';
|
|
5714
|
+
export { default as IconPhoneXFilled } from './phone-x-filled.svelte';
|
|
5708
5715
|
export { default as IconPhoneFilled } from './phone-filled.svelte';
|
|
5709
5716
|
export { default as IconPhotoFilled } from './photo-filled.svelte';
|
|
5710
5717
|
export { default as IconPictureInPictureTopFilled } from './picture-in-picture-top-filled.svelte';
|
|
@@ -5714,6 +5721,10 @@ export { default as IconPillFilled } from './pill-filled.svelte';
|
|
|
5714
5721
|
export { default as IconPinFilled } from './pin-filled.svelte';
|
|
5715
5722
|
export { default as IconPinnedFilled } from './pinned-filled.svelte';
|
|
5716
5723
|
export { default as IconPizzaFilled } from './pizza-filled.svelte';
|
|
5724
|
+
export { default as IconPlaneArrivalFilled } from './plane-arrival-filled.svelte';
|
|
5725
|
+
export { default as IconPlaneDepartureFilled } from './plane-departure-filled.svelte';
|
|
5726
|
+
export { default as IconPlaneTiltFilled } from './plane-tilt-filled.svelte';
|
|
5727
|
+
export { default as IconPlaneFilled } from './plane-filled.svelte';
|
|
5717
5728
|
export { default as IconPlayCard1Filled } from './play-card-1-filled.svelte';
|
|
5718
5729
|
export { default as IconPlayCard10Filled } from './play-card-10-filled.svelte';
|
|
5719
5730
|
export { default as IconPlayCard2Filled } from './play-card-2-filled.svelte';
|
|
@@ -5729,6 +5740,7 @@ export { default as IconPlayCardJFilled } from './play-card-j-filled.svelte';
|
|
|
5729
5740
|
export { default as IconPlayCardKFilled } from './play-card-k-filled.svelte';
|
|
5730
5741
|
export { default as IconPlayCardQFilled } from './play-card-q-filled.svelte';
|
|
5731
5742
|
export { default as IconPlayCardStarFilled } from './play-card-star-filled.svelte';
|
|
5743
|
+
export { default as IconPlayCardFilled } from './play-card-filled.svelte';
|
|
5732
5744
|
export { default as IconPlayerEjectFilled } from './player-eject-filled.svelte';
|
|
5733
5745
|
export { default as IconPlayerPauseFilled } from './player-pause-filled.svelte';
|
|
5734
5746
|
export { default as IconPlayerPlayFilled } from './player-play-filled.svelte';
|
|
@@ -5738,6 +5750,7 @@ export { default as IconPlayerSkipForwardFilled } from './player-skip-forward-fi
|
|
|
5738
5750
|
export { default as IconPlayerStopFilled } from './player-stop-filled.svelte';
|
|
5739
5751
|
export { default as IconPlayerTrackNextFilled } from './player-track-next-filled.svelte';
|
|
5740
5752
|
export { default as IconPlayerTrackPrevFilled } from './player-track-prev-filled.svelte';
|
|
5753
|
+
export { default as IconPlaylistFilled } from './playlist-filled.svelte';
|
|
5741
5754
|
export { default as IconPointFilled } from './point-filled.svelte';
|
|
5742
5755
|
export { default as IconPointerFilled } from './pointer-filled.svelte';
|
|
5743
5756
|
export { default as IconPolaroidFilled } from './polaroid-filled.svelte';
|
|
@@ -5762,11 +5775,14 @@ export { default as IconRelationManyToManyFilled } from './relation-many-to-many
|
|
|
5762
5775
|
export { default as IconRelationOneToManyFilled } from './relation-one-to-many-filled.svelte';
|
|
5763
5776
|
export { default as IconRelationOneToOneFilled } from './relation-one-to-one-filled.svelte';
|
|
5764
5777
|
export { default as IconReplaceFilled } from './replace-filled.svelte';
|
|
5778
|
+
export { default as IconReportAnalyticsFilled } from './report-analytics-filled.svelte';
|
|
5779
|
+
export { default as IconReportMoneyFilled } from './report-money-filled.svelte';
|
|
5765
5780
|
export { default as IconRollercoasterFilled } from './rollercoaster-filled.svelte';
|
|
5766
5781
|
export { default as IconRosetteDiscountCheckFilled } from './rosette-discount-check-filled.svelte';
|
|
5767
5782
|
export { default as IconRosetteDiscountFilled } from './rosette-discount-filled.svelte';
|
|
5768
5783
|
export { default as IconRosetteFilled } from './rosette-filled.svelte';
|
|
5769
5784
|
export { default as IconSaladFilled } from './salad-filled.svelte';
|
|
5785
|
+
export { default as IconSatelliteFilled } from './satellite-filled.svelte';
|
|
5770
5786
|
export { default as IconScubaDivingTankFilled } from './scuba-diving-tank-filled.svelte';
|
|
5771
5787
|
export { default as IconSectionFilled } from './section-filled.svelte';
|
|
5772
5788
|
export { default as IconSeedlingFilled } from './seedling-filled.svelte';
|
|
@@ -5787,6 +5803,8 @@ export { default as IconSortDescending2Filled } from './sort-descending-2-filled
|
|
|
5787
5803
|
export { default as IconSortDescendingShapesFilled } from './sort-descending-shapes-filled.svelte';
|
|
5788
5804
|
export { default as IconSoupFilled } from './soup-filled.svelte';
|
|
5789
5805
|
export { default as IconSpadeFilled } from './spade-filled.svelte';
|
|
5806
|
+
export { default as IconSparkles2Filled } from './sparkles-2-filled.svelte';
|
|
5807
|
+
export { default as IconSparklesFilled } from './sparkles-filled.svelte';
|
|
5790
5808
|
export { default as IconSpeedboatFilled } from './speedboat-filled.svelte';
|
|
5791
5809
|
export { default as IconSpiderFilled } from './spider-filled.svelte';
|
|
5792
5810
|
export { default as IconSquareArrowDownFilled } from './square-arrow-down-filled.svelte';
|
package/dist/icons/index.js
CHANGED
|
@@ -5083,6 +5083,7 @@ export { default as IconBadgeVrFilled } from './badge-vr-filled.svelte';
|
|
|
5083
5083
|
export { default as IconBadgeWcFilled } from './badge-wc-filled.svelte';
|
|
5084
5084
|
export { default as IconBadgeFilled } from './badge-filled.svelte';
|
|
5085
5085
|
export { default as IconBadgesFilled } from './badges-filled.svelte';
|
|
5086
|
+
export { default as IconBallBowlingFilled } from './ball-bowling-filled.svelte';
|
|
5086
5087
|
export { default as IconBalloonFilled } from './balloon-filled.svelte';
|
|
5087
5088
|
export { default as IconBallpenFilled } from './ballpen-filled.svelte';
|
|
5088
5089
|
export { default as IconBandageFilled } from './bandage-filled.svelte';
|
|
@@ -5639,6 +5640,7 @@ export { default as IconLayoutSidebarRightExpandFilled } from './layout-sidebar-
|
|
|
5639
5640
|
export { default as IconLayoutSidebarRightFilled } from './layout-sidebar-right-filled.svelte';
|
|
5640
5641
|
export { default as IconLayoutSidebarFilled } from './layout-sidebar-filled.svelte';
|
|
5641
5642
|
export { default as IconLayoutFilled } from './layout-filled.svelte';
|
|
5643
|
+
export { default as IconLeafFilled } from './leaf-filled.svelte';
|
|
5642
5644
|
export { default as IconLegoFilled } from './lego-filled.svelte';
|
|
5643
5645
|
export { default as IconLemon2Filled } from './lemon-2-filled.svelte';
|
|
5644
5646
|
export { default as IconLibraryPlusFilled } from './library-plus-filled.svelte';
|
|
@@ -5696,6 +5698,7 @@ export { default as IconOctagonPlusFilled } from './octagon-plus-filled.svelte';
|
|
|
5696
5698
|
export { default as IconOctagonFilled } from './octagon-filled.svelte';
|
|
5697
5699
|
export { default as IconOvalVerticalFilled } from './oval-vertical-filled.svelte';
|
|
5698
5700
|
export { default as IconOvalFilled } from './oval-filled.svelte';
|
|
5701
|
+
export { default as IconPacmanFilled } from './pacman-filled.svelte';
|
|
5699
5702
|
export { default as IconPaintFilled } from './paint-filled.svelte';
|
|
5700
5703
|
export { default as IconPaletteFilled } from './palette-filled.svelte';
|
|
5701
5704
|
export { default as IconPanoramaHorizontalFilled } from './panorama-horizontal-filled.svelte';
|
|
@@ -5705,6 +5708,10 @@ export { default as IconPawFilled } from './paw-filled.svelte';
|
|
|
5705
5708
|
export { default as IconPennant2Filled } from './pennant-2-filled.svelte';
|
|
5706
5709
|
export { default as IconPennantFilled } from './pennant-filled.svelte';
|
|
5707
5710
|
export { default as IconPentagonFilled } from './pentagon-filled.svelte';
|
|
5711
|
+
export { default as IconPhoneCallFilled } from './phone-call-filled.svelte';
|
|
5712
|
+
export { default as IconPhoneCallingFilled } from './phone-calling-filled.svelte';
|
|
5713
|
+
export { default as IconPhoneCheckFilled } from './phone-check-filled.svelte';
|
|
5714
|
+
export { default as IconPhoneXFilled } from './phone-x-filled.svelte';
|
|
5708
5715
|
export { default as IconPhoneFilled } from './phone-filled.svelte';
|
|
5709
5716
|
export { default as IconPhotoFilled } from './photo-filled.svelte';
|
|
5710
5717
|
export { default as IconPictureInPictureTopFilled } from './picture-in-picture-top-filled.svelte';
|
|
@@ -5714,6 +5721,10 @@ export { default as IconPillFilled } from './pill-filled.svelte';
|
|
|
5714
5721
|
export { default as IconPinFilled } from './pin-filled.svelte';
|
|
5715
5722
|
export { default as IconPinnedFilled } from './pinned-filled.svelte';
|
|
5716
5723
|
export { default as IconPizzaFilled } from './pizza-filled.svelte';
|
|
5724
|
+
export { default as IconPlaneArrivalFilled } from './plane-arrival-filled.svelte';
|
|
5725
|
+
export { default as IconPlaneDepartureFilled } from './plane-departure-filled.svelte';
|
|
5726
|
+
export { default as IconPlaneTiltFilled } from './plane-tilt-filled.svelte';
|
|
5727
|
+
export { default as IconPlaneFilled } from './plane-filled.svelte';
|
|
5717
5728
|
export { default as IconPlayCard1Filled } from './play-card-1-filled.svelte';
|
|
5718
5729
|
export { default as IconPlayCard10Filled } from './play-card-10-filled.svelte';
|
|
5719
5730
|
export { default as IconPlayCard2Filled } from './play-card-2-filled.svelte';
|
|
@@ -5729,6 +5740,7 @@ export { default as IconPlayCardJFilled } from './play-card-j-filled.svelte';
|
|
|
5729
5740
|
export { default as IconPlayCardKFilled } from './play-card-k-filled.svelte';
|
|
5730
5741
|
export { default as IconPlayCardQFilled } from './play-card-q-filled.svelte';
|
|
5731
5742
|
export { default as IconPlayCardStarFilled } from './play-card-star-filled.svelte';
|
|
5743
|
+
export { default as IconPlayCardFilled } from './play-card-filled.svelte';
|
|
5732
5744
|
export { default as IconPlayerEjectFilled } from './player-eject-filled.svelte';
|
|
5733
5745
|
export { default as IconPlayerPauseFilled } from './player-pause-filled.svelte';
|
|
5734
5746
|
export { default as IconPlayerPlayFilled } from './player-play-filled.svelte';
|
|
@@ -5738,6 +5750,7 @@ export { default as IconPlayerSkipForwardFilled } from './player-skip-forward-fi
|
|
|
5738
5750
|
export { default as IconPlayerStopFilled } from './player-stop-filled.svelte';
|
|
5739
5751
|
export { default as IconPlayerTrackNextFilled } from './player-track-next-filled.svelte';
|
|
5740
5752
|
export { default as IconPlayerTrackPrevFilled } from './player-track-prev-filled.svelte';
|
|
5753
|
+
export { default as IconPlaylistFilled } from './playlist-filled.svelte';
|
|
5741
5754
|
export { default as IconPointFilled } from './point-filled.svelte';
|
|
5742
5755
|
export { default as IconPointerFilled } from './pointer-filled.svelte';
|
|
5743
5756
|
export { default as IconPolaroidFilled } from './polaroid-filled.svelte';
|
|
@@ -5762,11 +5775,14 @@ export { default as IconRelationManyToManyFilled } from './relation-many-to-many
|
|
|
5762
5775
|
export { default as IconRelationOneToManyFilled } from './relation-one-to-many-filled.svelte';
|
|
5763
5776
|
export { default as IconRelationOneToOneFilled } from './relation-one-to-one-filled.svelte';
|
|
5764
5777
|
export { default as IconReplaceFilled } from './replace-filled.svelte';
|
|
5778
|
+
export { default as IconReportAnalyticsFilled } from './report-analytics-filled.svelte';
|
|
5779
|
+
export { default as IconReportMoneyFilled } from './report-money-filled.svelte';
|
|
5765
5780
|
export { default as IconRollercoasterFilled } from './rollercoaster-filled.svelte';
|
|
5766
5781
|
export { default as IconRosetteDiscountCheckFilled } from './rosette-discount-check-filled.svelte';
|
|
5767
5782
|
export { default as IconRosetteDiscountFilled } from './rosette-discount-filled.svelte';
|
|
5768
5783
|
export { default as IconRosetteFilled } from './rosette-filled.svelte';
|
|
5769
5784
|
export { default as IconSaladFilled } from './salad-filled.svelte';
|
|
5785
|
+
export { default as IconSatelliteFilled } from './satellite-filled.svelte';
|
|
5770
5786
|
export { default as IconScubaDivingTankFilled } from './scuba-diving-tank-filled.svelte';
|
|
5771
5787
|
export { default as IconSectionFilled } from './section-filled.svelte';
|
|
5772
5788
|
export { default as IconSeedlingFilled } from './seedling-filled.svelte';
|
|
@@ -5787,6 +5803,8 @@ export { default as IconSortDescending2Filled } from './sort-descending-2-filled
|
|
|
5787
5803
|
export { default as IconSortDescendingShapesFilled } from './sort-descending-shapes-filled.svelte';
|
|
5788
5804
|
export { default as IconSoupFilled } from './soup-filled.svelte';
|
|
5789
5805
|
export { default as IconSpadeFilled } from './spade-filled.svelte';
|
|
5806
|
+
export { default as IconSparkles2Filled } from './sparkles-2-filled.svelte';
|
|
5807
|
+
export { default as IconSparklesFilled } from './sparkles-filled.svelte';
|
|
5790
5808
|
export { default as IconSpeedboatFilled } from './speedboat-filled.svelte';
|
|
5791
5809
|
export { default as IconSpiderFilled } from './spider-filled.svelte';
|
|
5792
5810
|
export { default as IconSquareArrowDownFilled } from './square-arrow-down-filled.svelte';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M3.055 14.328l-.018 -.168l-.004 -.043a11 11 0 0 1 -.047 -1.12c.018 -6.29 4.29 -9.997 13 -9.997h4.014a1 1 0 0 1 1 1l-.002 2.057c-.498 8.701 -4.74 12.943 -11.998 12.943h-2.631a16 16 0 0 0 -.375 2.11a1 1 0 1 1 -1.988 -.22q .174 -1.568 .58 -2.947l-.118 -.146l-.208 -.28l-.157 -.229l-.182 -.293l-.098 -.171l-.065 -.122a6 6 0 0 1 -.397 -.941l-.072 -.237l-.085 -.327l-.057 -.268l-.043 -.242zm8.539 -4.242c-2.845 1.265 -4.854 3.13 -6.108 5.583q .098 .2 .218 .4l.185 .281l.07 .097q .12 .164 .258 .329l.197 .224h.649c1.037 -2.271 2.777 -3.946 5.343 -5.086a1 1 0 0 0 -.812 -1.828" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="leaf-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 LeafFilledProps = typeof __propDef.props;
|
|
13
|
+
export type LeafFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type LeafFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class LeafFilled extends SvelteComponentTyped<LeafFilledProps, LeafFilledEvents, LeafFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M13.557 2.015a10 10 0 0 1 7.257 3.744a1 1 0 0 1 -.074 1.331l-4.912 4.91l4.912 4.91a1 1 0 0 1 .074 1.332a10 10 0 1 1 -15.112 -13.078l.235 -.242l.07 -.063a9.98 9.98 0 0 1 7.55 -2.844m-1.057 3.485c-1.02 0 -1.86 .762 -1.982 1.748l-.013 .15a1 1 0 0 0 -.005 .102a2 2 0 1 0 2 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="pacman-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 PacmanFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PacmanFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PacmanFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PacmanFilled extends SvelteComponentTyped<PacmanFilledProps, PacmanFilledEvents, PacmanFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons/pacman.svelte
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Icon from '../Icon.svelte';
|
|
2
|
-
const iconNode = [["path", { "d": "
|
|
2
|
+
const iconNode = [["path", { "d": "M6.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981" }], ["path", { "d": "M11.5 7.5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0" }]];
|
|
3
3
|
</script>
|
|
4
4
|
<Icon type="outline" name="pacman" {...$$props} iconNode={iconNode}>
|
|
5
5
|
<slot/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M9.928 3.629l2 5a1 1 0 0 1 -.414 1.228l-1.67 1.003a9.9 9.9 0 0 0 3.296 3.297l1.003 -1.671a1 1 0 0 1 1.228 -.414l5 2a1 1 0 0 1 .629 .928v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 3 -3h4a1 1 0 0 1 .928 .629" }], ["path", { "d": "M18 9a1 1 0 0 1 -2 0a1 1 0 0 0 -1 -1a1 1 0 0 1 0 -2a3 3 0 0 1 3 3" }], ["path", { "d": "M22 9a1 1 0 0 1 -2 0a5 5 0 0 0 -5 -5a1 1 0 0 1 0 -2a7 7 0 0 1 7 7" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="phone-call-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 PhoneCallFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PhoneCallFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PhoneCallFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhoneCallFilled extends SvelteComponentTyped<PhoneCallFilledProps, PhoneCallFilledEvents, PhoneCallFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M9.928 3.629l2 5a1 1 0 0 1 -.414 1.228l-1.67 1.003a9.9 9.9 0 0 0 3.296 3.297l1.003 -1.671a1 1 0 0 1 1.228 -.414l5 2a1 1 0 0 1 .629 .928v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 3 -3h4a1 1 0 0 1 .928 .629" }], ["path", { "d": "M16 7v.01a1 1 0 0 1 -2 0v-.01a1 1 0 0 1 2 0" }], ["path", { "d": "M19 7v.01a1 1 0 0 1 -2 0v-.01a1 1 0 0 1 2 0" }], ["path", { "d": "M22 7v.01a1 1 0 0 1 -2 0v-.01a1 1 0 0 1 2 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="phone-calling-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 PhoneCallingFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PhoneCallingFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PhoneCallingFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhoneCallingFilled extends SvelteComponentTyped<PhoneCallingFilledProps, PhoneCallingFilledEvents, PhoneCallingFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M9.928 3.629l2 5a1 1 0 0 1 -.414 1.228l-1.67 1.003a9.9 9.9 0 0 0 3.296 3.297l1.003 -1.671a1 1 0 0 1 1.228 -.414l5 2a1 1 0 0 1 .629 .928v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 3 -3h4a1 1 0 0 1 .928 .629" }], ["path", { "d": "M21.707 3.293a1 1 0 0 1 0 1.414l-4 4a1 1 0 0 1 -1.414 0l-2 -2a1 1 0 1 1 1.414 -1.414l1.293 1.293l3.293 -3.293a1 1 0 0 1 1.414 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="phone-check-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 PhoneCheckFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PhoneCheckFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PhoneCheckFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhoneCheckFilled extends SvelteComponentTyped<PhoneCheckFilledProps, PhoneCheckFilledEvents, PhoneCheckFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M9.928 3.629l2 5a1 1 0 0 1 -.414 1.228l-1.67 1.003a9.9 9.9 0 0 0 3.296 3.297l1.003 -1.671a1 1 0 0 1 1.228 -.414l5 2a1 1 0 0 1 .629 .928v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 3 -3h4a1 1 0 0 1 .928 .629" }], ["path", { "d": "M20.707 3.293a1 1 0 0 1 0 1.414l-1.293 1.293l1.293 1.293a1 1 0 1 1 -1.414 1.414l-1.293 -1.293l-1.293 1.293a1 1 0 0 1 -1.414 -1.414l1.293 -1.293l-1.293 -1.293a1 1 0 1 1 1.414 -1.414l1.293 1.293l1.293 -1.293a1 1 0 0 1 1.414 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="phone-x-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 PhoneXFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PhoneXFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PhoneXFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PhoneXFilled extends SvelteComponentTyped<PhoneXFilledProps, PhoneXFilledEvents, PhoneXFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M10.466 2.271l2.898 .777a1 1 0 0 1 .708 .711l1.904 7.235l4.255 1.141a3 3 0 1 1 -1.539 5.799l-14.489 -3.882a1 1 0 0 1 -.72 -.765l-1.347 -6.572a1 1 0 0 1 1.239 -1.167l2.898 .776a1 1 0 0 1 .607 .466l1.207 2.091l1.217 .326l-.098 -5.954a1 1 0 0 1 1.259 -.982" }], ["path", { "d": "M22 21a1 1 0 0 1 -1 1h-18a1 1 0 0 1 0 -2h18a1 1 0 0 1 1 1" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="plane-arrival-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 PlaneArrivalFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlaneArrivalFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlaneArrivalFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlaneArrivalFilled extends SvelteComponentTyped<PlaneArrivalFilledProps, PlaneArrivalFilledEvents, PlaneArrivalFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M9.674 3.827l5.267 5.315l4.25 -1.139a3 3 0 1 1 1.572 5.79l-14.49 3.883a1 1 0 0 1 -1.006 -.303l-4.45 -5.02a1 1 0 0 1 .49 -1.629l2.896 -.776a1 1 0 0 1 .759 .1l2.091 1.207l1.217 -.326l-3.062 -5.107a1 1 0 0 1 .599 -1.48l2.898 -.777a1 1 0 0 1 .97 .262" }], ["path", { "d": "M22 21a1 1 0 0 1 -1 1h-18a1 1 0 0 1 0 -2h18a1 1 0 0 1 1 1" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="plane-departure-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 PlaneDepartureFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlaneDepartureFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlaneDepartureFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlaneDepartureFilled extends SvelteComponentTyped<PlaneDepartureFilledProps, PlaneDepartureFilledEvents, PlaneDepartureFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M12.868 2.504l3.712 6.496h3.42a3 3 0 0 1 0 6h-3.42l-3.712 6.496a1 1 0 0 1 -.868 .504h-3a1 1 0 0 1 -.962 -1.275l1.636 -5.725h-2.26l-1.707 1.707a1 1 0 0 1 -.707 .293h-3a1 1 0 0 1 -.894 -1.447l1.776 -3.553l-1.776 -3.553a1 1 0 0 1 .894 -1.447h3a1 1 0 0 1 .707 .293l1.707 1.707h2.26l-1.636 -5.725a1 1 0 0 1 .962 -1.275h3a1 1 0 0 1 .868 .504" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="plane-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 PlaneFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlaneFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlaneFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlaneFilled extends SvelteComponentTyped<PlaneFilledProps, PlaneFilledEvents, PlaneFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M21.107 2.893a3.047 3.047 0 0 1 .012 4.302l-2.479 2.564l2.309 6.925a1 1 0 0 1 -.235 1.016l-2.5 2.55a1 1 0 0 1 -1.596 -.229l-2.864 -5.36l-1.754 1.753v2.586a1 1 0 0 1 -.293 .707l-2 2a1 1 0 0 1 -1.656 -.39l-1.341 -4.027l-4.025 -1.342a1 1 0 0 1 -.391 -1.656l2 -2a1 1 0 0 1 .706 -.292h2.586l1.757 -1.757l-5.317 -2.863a1 1 0 0 1 -.233 -1.587l2.5 -2.5a1 1 0 0 1 1.023 -.242l6.925 2.309l2.552 -2.467a3.05 3.05 0 0 1 4.314 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="plane-tilt-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 PlaneTiltFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlaneTiltFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlaneTiltFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlaneTiltFilled extends SvelteComponentTyped<PlaneTiltFilledProps, PlaneTiltFilledEvents, PlaneTiltFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17 2a2.995 2.995 0 0 1 2.995 2.898q .005 .05 .005 .102v14a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm-.99 15h-.01a1 1 0 0 0 0 2h.01a1 1 0 0 0 0 -2m-3.21 -9.6a1 1 0 0 0 -1.6 0l-3 4a1 1 0 0 0 0 1.2l2.988 3.984l.012 .016q .007 .01 .017 .02a.5 .5 0 0 0 .077 .086l.016 .018l.018 .016q .025 .024 .052 .043l.025 .02a.5 .5 0 0 0 .084 .056l.056 .03q .016 .01 .033 .018l.043 .017a.4 .4 0 0 0 .074 .028a.9 .9 0 0 0 .305 .047h.047a1 1 0 0 0 .095 -.01a1 1 0 0 0 .163 -.037l.025 -.008l.049 -.02a.3 .3 0 0 0 .076 -.034a.5 .5 0 0 0 .08 -.046a1 1 0 0 0 .085 -.06a.5 .5 0 0 0 .086 -.078l.018 -.016l.016 -.018l.043 -.052l.017 -.02l.009 -.012l2.991 -3.988a1 1 0 0 0 0 -1.2zm-4.79 -2.4h-.01a1 1 0 1 0 0 2h.01a1 1 0 1 0 0 -2" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="play-card-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 PlayCardFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlayCardFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlayCardFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlayCardFilled extends SvelteComponentTyped<PlayCardFilledProps, PlayCardFilledEvents, PlayCardFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M21 3a1 1 0 0 1 0 2h-3v12a4 4 0 1 1 -2.001 -3.465l.001 -9.535a1 1 0 0 1 1 -1z" }], ["path", { "d": "M14 5a1 1 0 0 1 -1 1h-10a1 1 0 1 1 0 -2h10a1 1 0 0 1 1 1" }], ["path", { "d": "M14 9a1 1 0 0 1 -1 1h-10a1 1 0 1 1 0 -2h10a1 1 0 0 1 1 1" }], ["path", { "d": "M10 13a1 1 0 0 1 -1 1h-6a1 1 0 0 1 0 -2h6a1 1 0 0 1 1 1" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="playlist-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 PlaylistFilledProps = typeof __propDef.props;
|
|
13
|
+
export type PlaylistFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type PlaylistFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class PlaylistFilled extends SvelteComponentTyped<PlaylistFilledProps, PlaylistFilledEvents, PlaylistFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17.997 4.17a3 3 0 0 1 2.003 2.83v12a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 2.003 -2.83a4 4 0 0 0 3.997 3.83h4a4 4 0 0 0 3.98 -3.597zm-8.997 6.83a1 1 0 0 0 -1 1v5a1 1 0 0 0 2 0v-5a1 1 0 0 0 -1 -1m3 4a1 1 0 0 0 -1 1v1a1 1 0 0 0 2 0v-1a1 1 0 0 0 -1 -1m3 -2a1 1 0 0 0 -1 1v3a1 1 0 0 0 2 0v-3a1 1 0 0 0 -1 -1m-1 -11a2 2 0 1 1 0 4h-4a2 2 0 1 1 0 -4z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="report-analytics-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 ReportAnalyticsFilledProps = typeof __propDef.props;
|
|
13
|
+
export type ReportAnalyticsFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type ReportAnalyticsFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ReportAnalyticsFilled extends SvelteComponentTyped<ReportAnalyticsFilledProps, ReportAnalyticsFilledEvents, ReportAnalyticsFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17.997 4.17a3 3 0 0 1 2.003 2.83v12a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 2.003 -2.83a4 4 0 0 0 3.997 3.83h4a4 4 0 0 0 3.98 -3.597zm-5.997 5.83a1 1 0 0 0 -1 1v.05a2.5 2.5 0 0 0 .5 4.95h1a.5 .5 0 1 1 0 1h-2.5a1 1 0 0 0 0 2h1a1 1 0 0 0 2 0v-.05a2.5 2.5 0 0 0 -.5 -4.95h-1a.5 .5 0 1 1 0 -1h2.5a1 1 0 0 0 0 -2h-1a1 1 0 0 0 -1 -1m2 -8a2 2 0 1 1 0 4h-4a2 2 0 1 1 0 -4z" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="report-money-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 ReportMoneyFilledProps = typeof __propDef.props;
|
|
13
|
+
export type ReportMoneyFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type ReportMoneyFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class ReportMoneyFilled extends SvelteComponentTyped<ReportMoneyFilledProps, ReportMoneyFilledEvents, ReportMoneyFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M21 14a1 1 0 0 1 1 1a7 7 0 0 1 -7 7a1 1 0 0 1 0 -2a5 5 0 0 0 5 -5a1 1 0 0 1 1 -1m-4 -.5a1 1 0 0 1 1 1a3.5 3.5 0 0 1 -3.5 3.5a1 1 0 0 1 -.117 -1.993l.117 -.007a1.5 1.5 0 0 0 1.493 -1.356l.007 -.144a1 1 0 0 1 1 -1m-13.829 -2.087l4 4.001q .212 .212 .445 .384l-.909 .91a1 1 0 0 1 -1.414 0l-3 -3a1 1 0 0 1 0 -1.415zm5.243 -8.413l5.586 5.586a2 2 0 0 1 0 2.828l-.586 .585l.793 .794a1 1 0 0 1 -1.414 1.414l-.793 -.794l-.586 .587a2 2 0 0 1 -2.828 0l-5.586 -5.586a2 2 0 0 1 -.18 -2.618l.127 -.152l.053 -.058l2.586 -2.586a2 2 0 0 1 2.828 0m5.293 -.707l3 3a1 1 0 0 1 0 1.414l-.908 .91a4 4 0 0 0 -.384 -.445l-4.001 -4l.879 -.88a1 1 0 0 1 1.414 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="satellite-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 SatelliteFilledProps = typeof __propDef.props;
|
|
13
|
+
export type SatelliteFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type SatelliteFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class SatelliteFilled extends SvelteComponentTyped<SatelliteFilledProps, SatelliteFilledEvents, SatelliteFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M17.964 2.733c.156 .563 .312 1 .484 1.353c.342 .71 .758 1.125 1.47 1.467c.353 .17 .79 .326 1.352 .484c.98 .276 .97 1.668 -.013 1.93a8.3 8.3 0 0 0 -1.34 .481c-.71 .342 -1.127 .757 -1.463 1.453a8 8 0 0 0 -.486 1.352c-.258 .988 -1.658 1 -1.932 .015c-.156 -.565 -.312 -1.002 -.484 -1.354c-.342 -.71 -.758 -1.124 -1.458 -1.46a8 8 0 0 0 -1.374 -.495a.4 .4 0 0 1 -.06 -.02l-.044 -.017l-.045 -.02l-.049 -.025l-.035 -.02a.4 .4 0 0 1 -.049 -.03l-.032 -.023l-.043 -.034l-.033 -.028l-.036 -.035l-.034 -.035l-.028 -.033l-.035 -.043l-.022 -.032a.4 .4 0 0 1 -.032 -.049l-.02 -.035l-.025 -.05l-.02 -.044l-.017 -.043a.4 .4 0 0 1 -.02 -.06l-.01 -.034a.5 .5 0 0 1 -.02 -.098l-.006 -.065l-.005 -.035v-.05a.4 .4 0 0 1 .003 -.085a.5 .5 0 0 1 .013 -.093a.5 .5 0 0 1 .024 -.103a.4 .4 0 0 1 .02 -.06l.017 -.044l.02 -.045l.025 -.049l.02 -.035a.4 .4 0 0 1 .03 -.049l.023 -.032l.034 -.043l.028 -.033l.035 -.036l.035 -.034q .015 -.015 .033 -.028l.043 -.035l.032 -.022a.4 .4 0 0 1 .049 -.032l.035 -.02l.05 -.025l.044 -.02l.043 -.017a.4 .4 0 0 1 .06 -.02l.027 -.008a8.3 8.3 0 0 0 1.339 -.48c.71 -.342 1.127 -.757 1.47 -1.466c.17 -.354 .327 -.792 .483 -1.355c.272 -.976 1.657 -.976 1.928 0" }], ["path", { "d": "M10.965 6.737q .219 .801 .503 1.574c.856 2.28 1.945 3.363 4.23 4.22q .708 .265 1.571 .506c.976 .272 .974 1.656 -.002 1.927q -.798 .221 -1.568 .504c-2.288 .858 -3.376 1.94 -4.229 4.216a19 19 0 0 0 -.505 1.579c-.268 .983 -1.662 .983 -1.93 0a19 19 0 0 0 -.503 -1.574c-.856 -2.281 -1.944 -3.363 -4.226 -4.219a20 20 0 0 0 -1.594 -.513a.4 .4 0 0 1 -.054 -.018l-.044 -.017l-.043 -.02a.3 .3 0 0 1 -.048 -.024l-.036 -.02a.4 .4 0 0 1 -.048 -.03l-.032 -.024l-.044 -.034l-.033 -.029l-.037 -.034l-.034 -.037l-.03 -.033l-.033 -.044l-.023 -.032a.4 .4 0 0 1 -.03 -.048l-.021 -.036a.3 .3 0 0 1 -.024 -.048l-.02 -.043l-.017 -.044a.4 .4 0 0 1 -.018 -.054a.2 .2 0 0 1 -.01 -.039a.4 .4 0 0 1 -.014 -.059l-.007 -.04l-.007 -.056l-.003 -.044l-.002 -.05v-.05q 0 -.023 .004 -.044q .001 -.03 .007 -.057l.007 -.04a.4 .4 0 0 1 .017 -.076l.007 -.021a.4 .4 0 0 1 .018 -.054l.017 -.044l.02 -.043a.3 .3 0 0 1 .024 -.048l.02 -.036a.4 .4 0 0 1 .03 -.048l.024 -.032l.034 -.044l.029 -.033l.034 -.037l.037 -.034l.033 -.03l.044 -.033l.032 -.023a.4 .4 0 0 1 .048 -.03l.036 -.021a.3 .3 0 0 1 .048 -.024l.043 -.02l.044 -.017a.4 .4 0 0 1 .054 -.018l.021 -.007a20 20 0 0 0 1.568 -.504c2.287 -.858 3.375 -1.94 4.229 -4.216a19 19 0 0 0 .505 -1.579c.268 -.983 1.662 -.983 1.93 0" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="sparkles-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 Sparkles2FilledProps = typeof __propDef.props;
|
|
13
|
+
export type Sparkles2FilledEvents = typeof __propDef.events;
|
|
14
|
+
export type Sparkles2FilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class Sparkles2Filled extends SvelteComponentTyped<Sparkles2FilledProps, Sparkles2FilledEvents, Sparkles2FilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<script>import Icon from '../Icon.svelte';
|
|
2
|
+
const iconNode = [["path", { "d": "M16 19a1 1 0 0 1 0 -2a1 1 0 0 0 1 -1c0 -1.333 2 -1.333 2 0a1 1 0 0 0 1 1c1.333 0 1.333 2 0 2a1 1 0 0 0 -1 1c0 1.333 -2 1.333 -2 0a1 1 0 0 0 -1 -1" }], ["path", { "d": "M3 11a5 5 0 0 0 5 -5c0 -1.333 2 -1.333 2 0a5 5 0 0 0 5 5c1.333 0 1.333 2 0 2a5 5 0 0 0 -5 5a1 1 0 0 1 -2 0a5 5 0 0 0 -5 -5c-1.333 0 -1.333 -2 0 -2" }], ["path", { "d": "M16 7a1 1 0 0 1 0 -2a1 1 0 0 0 1 -1c0 -1.333 2 -1.333 2 0a1 1 0 0 0 1 1c1.333 0 1.333 2 0 2a1 1 0 0 0 -1 1c0 1.333 -2 1.333 -2 0a1 1 0 0 0 -1 -1" }]];
|
|
3
|
+
</script>
|
|
4
|
+
<Icon type="filled" name="sparkles-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 SparklesFilledProps = typeof __propDef.props;
|
|
13
|
+
export type SparklesFilledEvents = typeof __propDef.events;
|
|
14
|
+
export type SparklesFilledSlots = typeof __propDef.slots;
|
|
15
|
+
export default class SparklesFilled extends SvelteComponentTyped<SparklesFilledProps, SparklesFilledEvents, SparklesFilledSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
package/dist/icons-list.js
CHANGED
|
@@ -5084,6 +5084,7 @@ export default [
|
|
|
5084
5084
|
"badge-wc-filled",
|
|
5085
5085
|
"badge-filled",
|
|
5086
5086
|
"badges-filled",
|
|
5087
|
+
"ball-bowling-filled",
|
|
5087
5088
|
"balloon-filled",
|
|
5088
5089
|
"ballpen-filled",
|
|
5089
5090
|
"bandage-filled",
|
|
@@ -5640,6 +5641,7 @@ export default [
|
|
|
5640
5641
|
"layout-sidebar-right-filled",
|
|
5641
5642
|
"layout-sidebar-filled",
|
|
5642
5643
|
"layout-filled",
|
|
5644
|
+
"leaf-filled",
|
|
5643
5645
|
"lego-filled",
|
|
5644
5646
|
"lemon-2-filled",
|
|
5645
5647
|
"library-plus-filled",
|
|
@@ -5697,6 +5699,7 @@ export default [
|
|
|
5697
5699
|
"octagon-filled",
|
|
5698
5700
|
"oval-vertical-filled",
|
|
5699
5701
|
"oval-filled",
|
|
5702
|
+
"pacman-filled",
|
|
5700
5703
|
"paint-filled",
|
|
5701
5704
|
"palette-filled",
|
|
5702
5705
|
"panorama-horizontal-filled",
|
|
@@ -5706,6 +5709,10 @@ export default [
|
|
|
5706
5709
|
"pennant-2-filled",
|
|
5707
5710
|
"pennant-filled",
|
|
5708
5711
|
"pentagon-filled",
|
|
5712
|
+
"phone-call-filled",
|
|
5713
|
+
"phone-calling-filled",
|
|
5714
|
+
"phone-check-filled",
|
|
5715
|
+
"phone-x-filled",
|
|
5709
5716
|
"phone-filled",
|
|
5710
5717
|
"photo-filled",
|
|
5711
5718
|
"picture-in-picture-top-filled",
|
|
@@ -5715,6 +5722,10 @@ export default [
|
|
|
5715
5722
|
"pin-filled",
|
|
5716
5723
|
"pinned-filled",
|
|
5717
5724
|
"pizza-filled",
|
|
5725
|
+
"plane-arrival-filled",
|
|
5726
|
+
"plane-departure-filled",
|
|
5727
|
+
"plane-tilt-filled",
|
|
5728
|
+
"plane-filled",
|
|
5718
5729
|
"play-card-1-filled",
|
|
5719
5730
|
"play-card-10-filled",
|
|
5720
5731
|
"play-card-2-filled",
|
|
@@ -5730,6 +5741,7 @@ export default [
|
|
|
5730
5741
|
"play-card-k-filled",
|
|
5731
5742
|
"play-card-q-filled",
|
|
5732
5743
|
"play-card-star-filled",
|
|
5744
|
+
"play-card-filled",
|
|
5733
5745
|
"player-eject-filled",
|
|
5734
5746
|
"player-pause-filled",
|
|
5735
5747
|
"player-play-filled",
|
|
@@ -5739,6 +5751,7 @@ export default [
|
|
|
5739
5751
|
"player-stop-filled",
|
|
5740
5752
|
"player-track-next-filled",
|
|
5741
5753
|
"player-track-prev-filled",
|
|
5754
|
+
"playlist-filled",
|
|
5742
5755
|
"point-filled",
|
|
5743
5756
|
"pointer-filled",
|
|
5744
5757
|
"polaroid-filled",
|
|
@@ -5763,11 +5776,14 @@ export default [
|
|
|
5763
5776
|
"relation-one-to-many-filled",
|
|
5764
5777
|
"relation-one-to-one-filled",
|
|
5765
5778
|
"replace-filled",
|
|
5779
|
+
"report-analytics-filled",
|
|
5780
|
+
"report-money-filled",
|
|
5766
5781
|
"rollercoaster-filled",
|
|
5767
5782
|
"rosette-discount-check-filled",
|
|
5768
5783
|
"rosette-discount-filled",
|
|
5769
5784
|
"rosette-filled",
|
|
5770
5785
|
"salad-filled",
|
|
5786
|
+
"satellite-filled",
|
|
5771
5787
|
"scuba-diving-tank-filled",
|
|
5772
5788
|
"section-filled",
|
|
5773
5789
|
"seedling-filled",
|
|
@@ -5788,6 +5804,8 @@ export default [
|
|
|
5788
5804
|
"sort-descending-shapes-filled",
|
|
5789
5805
|
"soup-filled",
|
|
5790
5806
|
"spade-filled",
|
|
5807
|
+
"sparkles-2-filled",
|
|
5808
|
+
"sparkles-filled",
|
|
5791
5809
|
"speedboat-filled",
|
|
5792
5810
|
"spider-filled",
|
|
5793
5811
|
"square-arrow-down-filled",
|