@mmg-dev/webpipeline-icons-astro 1.0.2 → 1.1.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/package.json +1 -1
- package/src/components/IconLocationPinFilled.astro +30 -0
- package/src/components/IconNavigationNewtab.astro +30 -0
- package/src/components/IconPlaceholderIcon.astro +30 -0
- package/src/components/{IconPoiExhibitorServiceslDeliveryServices1.astro → IconPoiExhibitorServicesDeliveryServices1.astro} +1 -1
- package/src/components/{IconPoiExhibitorServicesVorOrt.astro → IconPoiExhibitorServicesOnSite.astro} +1 -1
- package/src/components/{IconPoiExhibitorServicesStandausstattung.astro → IconPoiExhibitorServicesStandEquipment.astro} +1 -1
- package/src/components/index.ts +6 -3
package/package.json
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
interface Props {
|
|
3
|
+
size?: number;
|
|
4
|
+
width?: number;
|
|
5
|
+
height?: number;
|
|
6
|
+
title?: string;
|
|
7
|
+
class?: string;
|
|
8
|
+
'aria-label'?: string;
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
const { size = 24, width, height, title, class: className, 'aria-label': ariaLabel, ...props } = Astro.props;
|
|
13
|
+
const hasLabel = !!title || !!ariaLabel;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
<svg
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
width={width ?? size}
|
|
20
|
+
height={height ?? size}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
aria-hidden={hasLabel ? undefined : true}
|
|
23
|
+
aria-label={ariaLabel}
|
|
24
|
+
role={hasLabel ? 'img' : undefined}
|
|
25
|
+
class:list={['icon-location-pin-filled', className]}
|
|
26
|
+
{...props}
|
|
27
|
+
>
|
|
28
|
+
{title && <title>{title}</title>}
|
|
29
|
+
<path d="M12 2c4.812 0 7 3.636 7 7.272 0 7.271-6.996 12.725-7 12.728-.002-.002-7-5.456-7-12.728C5 5.636 7.188 2 12 2m0 4.24A2.88 2.88 0 1 0 12 12a2.88 2.88 0 0 0 0-5.76"/>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
interface Props {
|
|
3
|
+
size?: number;
|
|
4
|
+
width?: number;
|
|
5
|
+
height?: number;
|
|
6
|
+
title?: string;
|
|
7
|
+
class?: string;
|
|
8
|
+
'aria-label'?: string;
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
const { size = 24, width, height, title, class: className, 'aria-label': ariaLabel, ...props } = Astro.props;
|
|
13
|
+
const hasLabel = !!title || !!ariaLabel;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
<svg
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
width={width ?? size}
|
|
20
|
+
height={height ?? size}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
aria-hidden={hasLabel ? undefined : true}
|
|
23
|
+
aria-label={ariaLabel}
|
|
24
|
+
role={hasLabel ? 'img' : undefined}
|
|
25
|
+
class:list={['icon-navigation-newtab', className]}
|
|
26
|
+
{...props}
|
|
27
|
+
>
|
|
28
|
+
{title && <title>{title}</title>}
|
|
29
|
+
<path fill-rule="evenodd" d="M21.38 2.08a1 1 0 0 1 .54.54q.078.182.08.38v5.998a1 1 0 0 1-2 0v-3.59l-8.29 8.298a1.002 1.002 0 0 1-1.638-.326 1 1 0 0 1 .219-1.094L18.59 4H14.5a.997.997 0 0 1-.925-1.383A1 1 0 0 1 14.501 2H21a1 1 0 0 1 .38.08zM10 6.005H7a2 2 0 0 0-2 1.999V17a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2v-3h2v3A4 4 0 0 1 16 21H7a4 4 0 0 1-4-4V8.004a4 4 0 0 1 4-4h3z" clip-rule="evenodd"/>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
interface Props {
|
|
3
|
+
size?: number;
|
|
4
|
+
width?: number;
|
|
5
|
+
height?: number;
|
|
6
|
+
title?: string;
|
|
7
|
+
class?: string;
|
|
8
|
+
'aria-label'?: string;
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
const { size = 24, width, height, title, class: className, 'aria-label': ariaLabel, ...props } = Astro.props;
|
|
13
|
+
const hasLabel = !!title || !!ariaLabel;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
<svg
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
width={width ?? size}
|
|
20
|
+
height={height ?? size}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
aria-hidden={hasLabel ? undefined : true}
|
|
23
|
+
aria-label={ariaLabel}
|
|
24
|
+
role={hasLabel ? 'img' : undefined}
|
|
25
|
+
class:list={['icon-placeholder-icon', className]}
|
|
26
|
+
{...props}
|
|
27
|
+
>
|
|
28
|
+
{title && <title>{title}</title>}
|
|
29
|
+
<path d="M4.235 20.634c.233.106.49.166.765.166h1.75V23H5c-.542 0-1.06-.119-1.531-.334zm9.515.166V23h-3.5v-2.2zm6.781 1.866A3.7 3.7 0 0 1 19 23h-1.75v-2.2H19c.275 0 .532-.06.765-.166zM3 18.6c0 .302.055.585.151.841l-1.847.843A4.8 4.8 0 0 1 1 18.6v-1.65h2zm20-1.65v1.65c0 .596-.108 1.165-.304 1.684l-1.847-.843c.096-.256.151-.539.151-.841v-1.65zm-20-6.6v3.3H1v-3.3zm20 0v3.3h-2v-3.3zM3.151 4.559A2.4 2.4 0 0 0 3 5.4v1.65H1V5.4c0-.596.108-1.165.304-1.684zm19.545-.843c.196.519.304 1.088.304 1.684v1.65h-2V5.4c0-.302-.055-.585-.151-.841zM6.75 1v2.2H5c-.275 0-.532.06-.765.166L3.47 1.334A3.7 3.7 0 0 1 5 1zM19 1c.542 0 1.06.119 1.531.334l-.766 2.032A1.8 1.8 0 0 0 19 3.2h-1.75V1zm-5.25 0v2.2h-3.5V1z"/>
|
|
30
|
+
</svg>
|
|
@@ -22,7 +22,7 @@ const hasLabel = !!title || !!ariaLabel;
|
|
|
22
22
|
aria-hidden={hasLabel ? undefined : true}
|
|
23
23
|
aria-label={ariaLabel}
|
|
24
24
|
role={hasLabel ? 'img' : undefined}
|
|
25
|
-
class:list={['icon-poi-exhibitor-
|
|
25
|
+
class:list={['icon-poi-exhibitor-services-delivery-services-1', className]}
|
|
26
26
|
{...props}
|
|
27
27
|
>
|
|
28
28
|
{title && <title>{title}</title>}
|
package/src/components/{IconPoiExhibitorServicesVorOrt.astro → IconPoiExhibitorServicesOnSite.astro}
RENAMED
|
@@ -22,7 +22,7 @@ const hasLabel = !!title || !!ariaLabel;
|
|
|
22
22
|
aria-hidden={hasLabel ? undefined : true}
|
|
23
23
|
aria-label={ariaLabel}
|
|
24
24
|
role={hasLabel ? 'img' : undefined}
|
|
25
|
-
class:list={['icon-poi-exhibitor-services-
|
|
25
|
+
class:list={['icon-poi-exhibitor-services-on-site', className]}
|
|
26
26
|
{...props}
|
|
27
27
|
>
|
|
28
28
|
{title && <title>{title}</title>}
|
|
@@ -22,7 +22,7 @@ const hasLabel = !!title || !!ariaLabel;
|
|
|
22
22
|
aria-hidden={hasLabel ? undefined : true}
|
|
23
23
|
aria-label={ariaLabel}
|
|
24
24
|
role={hasLabel ? 'img' : undefined}
|
|
25
|
-
class:list={['icon-poi-exhibitor-services-
|
|
25
|
+
class:list={['icon-poi-exhibitor-services-stand-equipment', className]}
|
|
26
26
|
{...props}
|
|
27
27
|
>
|
|
28
28
|
{title && <title>{title}</title>}
|
package/src/components/index.ts
CHANGED
|
@@ -90,6 +90,7 @@ export { default as IconLocationCircleInCircle } from './IconLocationCircleInCir
|
|
|
90
90
|
export { default as IconLocationFactory } from './IconLocationFactory.astro';
|
|
91
91
|
export { default as IconLocationHome } from './IconLocationHome.astro';
|
|
92
92
|
export { default as IconLocationLocation } from './IconLocationLocation.astro';
|
|
93
|
+
export { default as IconLocationPinFilled } from './IconLocationPinFilled.astro';
|
|
93
94
|
export { default as IconLocationPin } from './IconLocationPin.astro';
|
|
94
95
|
export { default as IconLocationRoute } from './IconLocationRoute.astro';
|
|
95
96
|
export { default as IconLocationShop } from './IconLocationShop.astro';
|
|
@@ -120,6 +121,7 @@ export { default as IconNavigationFullscreenEnter } from './IconNavigationFullsc
|
|
|
120
121
|
export { default as IconNavigationFullscreenExit } from './IconNavigationFullscreenExit.astro';
|
|
121
122
|
export { default as IconNavigationGrid } from './IconNavigationGrid.astro';
|
|
122
123
|
export { default as IconNavigationList } from './IconNavigationList.astro';
|
|
124
|
+
export { default as IconNavigationNewtab } from './IconNavigationNewtab.astro';
|
|
123
125
|
export { default as IconNavigationPictureInPicture } from './IconNavigationPictureInPicture.astro';
|
|
124
126
|
export { default as IconNavigationPointMenu } from './IconNavigationPointMenu.astro';
|
|
125
127
|
export { default as IconNavigationShrink } from './IconNavigationShrink.astro';
|
|
@@ -147,10 +149,12 @@ export { default as IconOtherStarFilled } from './IconOtherStarFilled.astro';
|
|
|
147
149
|
export { default as IconOtherStar } from './IconOtherStar.astro';
|
|
148
150
|
export { default as IconOtherTicket } from './IconOtherTicket.astro';
|
|
149
151
|
export { default as IconOtherWorld } from './IconOtherWorld.astro';
|
|
152
|
+
export { default as IconPlaceholderIcon } from './IconPlaceholderIcon.astro';
|
|
150
153
|
export { default as IconPoiExhibitorServicesArtwork } from './IconPoiExhibitorServicesArtwork.astro';
|
|
151
154
|
export { default as IconPoiExhibitorServicesBoothTech } from './IconPoiExhibitorServicesBoothTech.astro';
|
|
152
155
|
export { default as IconPoiExhibitorServicesBoothservices } from './IconPoiExhibitorServicesBoothservices.astro';
|
|
153
156
|
export { default as IconPoiExhibitorServicesCustoms } from './IconPoiExhibitorServicesCustoms.astro';
|
|
157
|
+
export { default as IconPoiExhibitorServicesDeliveryServices1 } from './IconPoiExhibitorServicesDeliveryServices1.astro';
|
|
154
158
|
export { default as IconPoiExhibitorServicesDeliveryServices2 } from './IconPoiExhibitorServicesDeliveryServices2.astro';
|
|
155
159
|
export { default as IconPoiExhibitorServicesDishRental } from './IconPoiExhibitorServicesDishRental.astro';
|
|
156
160
|
export { default as IconPoiExhibitorServicesExhibitorServiceOffice } from './IconPoiExhibitorServicesExhibitorServiceOffice.astro';
|
|
@@ -160,15 +164,14 @@ export { default as IconPoiExhibitorServicesLeadtracking } from './IconPoiExhibi
|
|
|
160
164
|
export { default as IconPoiExhibitorServicesLogistics } from './IconPoiExhibitorServicesLogistics.astro';
|
|
161
165
|
export { default as IconPoiExhibitorServicesMarketing } from './IconPoiExhibitorServicesMarketing.astro';
|
|
162
166
|
export { default as IconPoiExhibitorServicesMultimedia } from './IconPoiExhibitorServicesMultimedia.astro';
|
|
167
|
+
export { default as IconPoiExhibitorServicesOnSite } from './IconPoiExhibitorServicesOnSite.astro';
|
|
163
168
|
export { default as IconPoiExhibitorServicesPlants } from './IconPoiExhibitorServicesPlants.astro';
|
|
164
169
|
export { default as IconPoiExhibitorServicesRentalFurniture } from './IconPoiExhibitorServicesRentalFurniture.astro';
|
|
165
170
|
export { default as IconPoiExhibitorServicesStandConstructionAndDesign } from './IconPoiExhibitorServicesStandConstructionAndDesign.astro';
|
|
166
|
-
export { default as
|
|
171
|
+
export { default as IconPoiExhibitorServicesStandEquipment } from './IconPoiExhibitorServicesStandEquipment.astro';
|
|
167
172
|
export { default as IconPoiExhibitorServicesSuspensionStructure } from './IconPoiExhibitorServicesSuspensionStructure.astro';
|
|
168
173
|
export { default as IconPoiExhibitorServicesSustainable } from './IconPoiExhibitorServicesSustainable.astro';
|
|
169
174
|
export { default as IconPoiExhibitorServicesTelecommunication } from './IconPoiExhibitorServicesTelecommunication.astro';
|
|
170
|
-
export { default as IconPoiExhibitorServicesVorOrt } from './IconPoiExhibitorServicesVorOrt.astro';
|
|
171
|
-
export { default as IconPoiExhibitorServiceslDeliveryServices1 } from './IconPoiExhibitorServiceslDeliveryServices1.astro';
|
|
172
175
|
export { default as IconPoiFoodBakedGoods } from './IconPoiFoodBakedGoods.astro';
|
|
173
176
|
export { default as IconPoiFoodBeergarden } from './IconPoiFoodBeergarden.astro';
|
|
174
177
|
export { default as IconPoiFoodBeverages } from './IconPoiFoodBeverages.astro';
|