@iconify-svelte/pinhead 1.0.1 → 1.0.2
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/components/b/beer-bottle-and-drink-bottle.svelte +11 -0
- package/components/d/drink-can-and-drink-bottle.svelte +11 -0
- package/components/m/martini-glass-and-wine-bottle.svelte +11 -0
- package/components/p/person-dropping-trash-into-wheelie-bin.svelte +11 -0
- package/components/p/phone-down-above-one-one-one.svelte +11 -0
- package/components/p/phone-down-above-one-two-three.svelte +11 -0
- package/components/s/syrup-jug-and-droplet.svelte +11 -0
- package/css/a/axbb0qx1t.css +4 -0
- package/css/b/bnq5ckf1o.css +4 -0
- package/css/h/hg7ocnbci.css +4 -0
- package/css/j/j3vjjyk8d.css +4 -0
- package/css/s/s2je18u3g.css +4 -0
- package/css/s/s2oucbc5y.css +4 -0
- package/css/w/w2w8fkt6o.css +4 -0
- package/iconify.json +2 -2
- package/package.json +29 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/h/hg7ocnbci.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":15,"height":15};
|
|
9
|
+
const content = `<path class="hg7ocnbci"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:beer-bottle-and-drink-bottle" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/s/s2je18u3g.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":15,"height":15};
|
|
9
|
+
const content = `<path class="s2je18u3g"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:drink-can-and-drink-bottle" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/j/j3vjjyk8d.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":15,"height":15};
|
|
9
|
+
const content = `<path class="j3vjjyk8d"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:martini-glass-and-wine-bottle" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/b/bnq5ckf1o.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":15,"height":15};
|
|
9
|
+
const content = `<path class="bnq5ckf1o"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:person-dropping-trash-into-wheelie-bin" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/a/axbb0qx1t.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":15,"height":15};
|
|
9
|
+
const content = `<path class="axbb0qx1t"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:phone-down-above-one-one-one" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/w/w2w8fkt6o.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":15,"height":15};
|
|
9
|
+
const content = `<path class="w2w8fkt6o"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:phone-down-above-one-two-three" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/s/s2oucbc5y.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":15,"height":15};
|
|
9
|
+
const content = `<path class="s2oucbc5y"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:syrup-jug-and-droplet" {...props}></Icon>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.axbb0qx1t {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M4 7v8H2V9.86l-1.25.89v-2.5L2.5 7zm10 0v8h-2V9.86l-1.25.89v-2.5L12.5 7zM9 7v8H7V9.86l-1.25.89v-2.5L7.5 7zM.23 1.85C2.19.62 4.62 0 7.5 0c2.73 0 5.05.55 6.95 1.66l.32.19c.14.09.23.25.23.42V4.3c0 .45-.15.89-.44 1.25L14.2 6c-.12.15-.32.22-.51.17l-2.44-.61a.47.47 0 0 1-.34-.3L10 3H5l-.91 2.26a.47.47 0 0 1-.34.3l-2.44.61A.49.49 0 0 1 .8 6l-.36-.45C.15 5.19 0 4.75 0 4.3V2.27c0-.14.06-.28.17-.37z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.bnq5ckf1o {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M6.14 4.77H7.5c.75 0 .75 1.37 0 1.37H5.45c-.13 0-.68-1.37-.68-1.37v9.55c0 .34-.34.68-.68.68a.68.68 0 0 1-.68-.68V8.86h-.68v5.46c0 .34-.34.68-.68.68c-.35 0-.69-.27-.69-.68V4.77H.68v3.41c0 .75-.34.75-.68 0V4.09c0-.82 1.09-.68 2.05-.68h2.04c.55 0 1.09.27 1.36.68zm6.81 6.14c-1.09 0-2.04.95-2.04 2.04V15H9.55L7.16 8.93V6.95h7.02l.14 3.96zM9.27 6.34l-.82-2.39l.28.14l.13-.27l.28.13l.13-.27l.28.14l.13-.27l.27.13l.14-.27l.27.14l.14-.35l.82 2.39c.07.21-.07.41-.27.48l-1.37.48c-.13.06-.34-.07-.41-.21m.34-4.77l.41-.34l4.5 5.38l-.34.34zM2.73 0c-.75 0-1.37.61-1.37 1.36s.62 1.37 1.37 1.37s1.36-.62 1.36-1.37S3.48 0 2.73 0M13.3 11.59c.95 0 1.7.75 1.7 1.71c0 .95-.75 1.7-1.7 1.7c-.96 0-1.71-.75-1.71-1.7c0-.96.75-1.71 1.71-1.71m0 2.73c.54 0 1.02-.48 1.02-1.02c0-.55-.48-1.03-1.02-1.03c-.55 0-1.03.48-1.03 1.03c0 .54.48 1.02 1.03 1.02");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.hg7ocnbci {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M4.77 4.77c.96.21 1.37 1.03 1.37 2.05v7.77c0 .21-.21.41-.48.41H1.84c-.27 0-.48-.2-.48-.41V6.82c0-1.02.41-1.84 1.37-2.05V1.36h2.04zM2.73 0h2.04v.68H2.73zm7.91 1.64c-.14 0-.21-.14-.21-.28c0-.06.07-.2.14-.2c-.07-.07-.14-.14-.14-.21c0-.13.14-.2.27-.2h1.37c.13 0 .27.07.27.2c0 .07-.07.21-.14.21c.07 0 .14.07.14.2c0 .14-.07.28-.2.28l1.29 4.29c.12.23.13.5.14.75v7.77c0 .28-.27.55-.55.55H9.34c-.27 0-.54-.2-.54-.55V6.82c0-.34 0-.62.13-.89z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.j3vjjyk8d {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M9 5L5 8.5V13c0 1 2.5.5 2.5 2h-6c0-1.5 2.5-1 2.5-2V8.5L0 5zm3-5v4l1.12 1.12c.56.56.88 1.33.88 2.12v7.26c0 .28-.22.5-.5.5h-5c-.05 0-.1-.01-.15-.02c0-.48-.12-.84-.35-1.13V7.24c0-.08 0-.17.01-.25l1.55-1.35c.4-.35.36-.92.04-1.24L10 4V0z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.s2je18u3g {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M10.02 1.02c-.11 0-.18-.09-.2-.2V.75c0-.14.07-.2.13-.27c-.05-.06-.1-.11-.12-.2L9.82.2c0-.13.13-.27.27-.27h1.71c.11 0 .23.1.26.22l.01.05c0 .14-.07.21-.14.28c.06.05.11.11.13.2l.01.07c0 .14-.14.27-.21.27l1.64 4.5c.07.28.14.62.14.96v7.97c0 .28-.28.55-.55.55H8.73c-.28 0-.55-.27-.55-.55V6.48c0-.34.07-.68.14-.96zM2.93 4.5l.34.95v.14c0 .21-.13.34-.34.34c-.05 0-.1 0-.15-.03l-.94-.72a.55.55 0 0 1-.2-.41c0-.34.27-.68.68-.68c.27 0 .48.14.61.41m-.88.48l.47.41l.05.03c.02.02.06.03.09.03c.07 0 .2-.13.2-.2v-.07l-.27-.54c-.07-.14-.14-.21-.27-.21c-.21 0-.34.14-.34.34c0 .07 0 .14.07.21m4.56 1.16c.07 0 .21.06.21.2v.48c0 .13-.07.2-.21.2h-.2c.2.14.41.41.41.68v6.69c0 .34-.27.61-.62.61H2.05c-.35 0-.69-.34-.69-.68V7.7c0-.27.14-.54.41-.68h-.2c-.14 0-.21-.07-.21-.2v-.48c0-.14.07-.2.21-.2z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.s2oucbc5y {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("m10.92.76l.66.66l.5-.5c.08-.07.2-.09.29-.03l.04.03l1.67 1.67c.09.09.09.24 0 .33l-.5.5l1.19 1.19c.09.09.14.21.14.33c0 .26-.21.47-.47.47h-2.79l.08.5l.12.86c.04.31.08.64.13 1c.18 1.44-.32 2.88-1.34 3.91l-3.05 3.04c-.37.37-.96.37-1.33 0L.28 8.74a.936.936 0 0 1 0-1.33l3.04-3.05a4.67 4.67 0 0 1 3.21-1.37c-.12-.79.12-1.63.73-2.23a2.59 2.59 0 0 1 3.66 0m2.83 4.99c.21.59.38 1.01.5 1.25c.37.73.75.93.75 1.5s-.62 1-1.25 1c-.62 0-1.25-.43-1.25-1s.38-.77.75-1.5c.12-.24.29-.66.5-1.25M9.92 1.76a1.17 1.17 0 0 0-1.66 0c-.37.37-.45.92-.22 1.37l.6.08l1.01.15l.93-.94z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.w2w8fkt6o {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12.5 7C13.96 7 15 8 15 9.25c0 .83-.28 1.42-.83 1.75c.55.33.83.92.83 1.75C15 14 13.88 15 12.5 15S10 14 10 12.25h1.67v.17c0 .46.37.83.83.83h.08a.749.749 0 1 0 0-1.5h-.5v-1.5h.5a.749.749 0 1 0 0-1.5h-.08c-.46 0-.83.37-.83.83v.17H10C10 8 11.04 7 12.5 7m-9 0v8h-2V9.86l-1.25.89v-2.5L2 7zM.23 1.85C2.19.62 4.62 0 7.5 0c2.73 0 5.05.55 6.95 1.66l.32.19c.14.09.23.25.23.42V4.3c0 .45-.15.89-.44 1.25L14.2 6c-.12.15-.32.22-.51.17l-2.44-.61a.47.47 0 0 1-.34-.3L10 3H5l-.91 2.26a.47.47 0 0 1-.34.3l-2.44.61A.49.49 0 0 1 .8 6l-.36-.45C.15 5.19 0 4.75 0 4.3V2.27c0-.14.06-.28.17-.37zM7 7c1.38 0 2.5 1 2.5 2.75c0 1-1 2.25-2.25 3.25H9.5v2h-5v-1.75l.44-.33c1.93-1.48 2.81-2.45 2.81-2.92v-.25C7.75 9.34 7.41 9 7 9s-.75.34-.75.75V10H4.5v-.33C4.5 8.01 5.62 7 7 7");
|
|
4
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "pinhead",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Pinhead Map Icons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 2003,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Quincy Morgan",
|
|
8
8
|
"url": "https://github.com/waysidemapping/pinhead"
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
],
|
|
29
29
|
"palette": false
|
|
30
30
|
},
|
|
31
|
-
"lastModified":
|
|
31
|
+
"lastModified": 1779771408
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-svelte/pinhead",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/pinhead/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "CC0-1.0",
|
|
@@ -590,6 +590,10 @@
|
|
|
590
590
|
"types": "./types/gfwqskkx.d.ts",
|
|
591
591
|
"svelte": "./components/b/bee-skep.svelte"
|
|
592
592
|
},
|
|
593
|
+
"./beer-bottle-and-drink-bottle": {
|
|
594
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
595
|
+
"svelte": "./components/b/beer-bottle-and-drink-bottle.svelte"
|
|
596
|
+
},
|
|
593
597
|
"./beer-bottles-row": {
|
|
594
598
|
"types": "./types/gfwqskkx.d.ts",
|
|
595
599
|
"svelte": "./components/b/beer-bottles-row.svelte"
|
|
@@ -2162,6 +2166,10 @@
|
|
|
2162
2166
|
"types": "./types/gfwqskkx.d.ts",
|
|
2163
2167
|
"svelte": "./components/d/drink-can.svelte"
|
|
2164
2168
|
},
|
|
2169
|
+
"./drink-can-and-drink-bottle": {
|
|
2170
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
2171
|
+
"svelte": "./components/d/drink-can-and-drink-bottle.svelte"
|
|
2172
|
+
},
|
|
2165
2173
|
"./drink-cup-with-straw": {
|
|
2166
2174
|
"types": "./types/gfwqskkx.d.ts",
|
|
2167
2175
|
"svelte": "./components/d/drink-cup-with-straw.svelte"
|
|
@@ -3690,6 +3698,10 @@
|
|
|
3690
3698
|
"types": "./types/gfwqskkx.d.ts",
|
|
3691
3699
|
"svelte": "./components/m/mars.svelte"
|
|
3692
3700
|
},
|
|
3701
|
+
"./martini-glass-and-wine-bottle": {
|
|
3702
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
3703
|
+
"svelte": "./components/m/martini-glass-and-wine-bottle.svelte"
|
|
3704
|
+
},
|
|
3693
3705
|
"./maryland": {
|
|
3694
3706
|
"types": "./types/gfwqskkx.d.ts",
|
|
3695
3707
|
"svelte": "./components/m/maryland.svelte"
|
|
@@ -4630,6 +4642,10 @@
|
|
|
4630
4642
|
"types": "./types/gfwqskkx.d.ts",
|
|
4631
4643
|
"svelte": "./components/p/person-driving-motorboat-on-water.svelte"
|
|
4632
4644
|
},
|
|
4645
|
+
"./person-dropping-trash-into-wheelie-bin": {
|
|
4646
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
4647
|
+
"svelte": "./components/p/person-dropping-trash-into-wheelie-bin.svelte"
|
|
4648
|
+
},
|
|
4633
4649
|
"./person-falling-on-rough-surface": {
|
|
4634
4650
|
"types": "./types/gfwqskkx.d.ts",
|
|
4635
4651
|
"svelte": "./components/p/person-falling-on-rough-surface.svelte"
|
|
@@ -5182,10 +5198,18 @@
|
|
|
5182
5198
|
"types": "./types/gfwqskkx.d.ts",
|
|
5183
5199
|
"svelte": "./components/p/phone-down-above-nine-one-one.svelte"
|
|
5184
5200
|
},
|
|
5201
|
+
"./phone-down-above-one-one-one": {
|
|
5202
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
5203
|
+
"svelte": "./components/p/phone-down-above-one-one-one.svelte"
|
|
5204
|
+
},
|
|
5185
5205
|
"./phone-down-above-one-one-two": {
|
|
5186
5206
|
"types": "./types/gfwqskkx.d.ts",
|
|
5187
5207
|
"svelte": "./components/p/phone-down-above-one-one-two.svelte"
|
|
5188
5208
|
},
|
|
5209
|
+
"./phone-down-above-one-two-three": {
|
|
5210
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
5211
|
+
"svelte": "./components/p/phone-down-above-one-two-three.svelte"
|
|
5212
|
+
},
|
|
5189
5213
|
"./phone-down-above-sos-text": {
|
|
5190
5214
|
"types": "./types/gfwqskkx.d.ts",
|
|
5191
5215
|
"svelte": "./components/p/phone-down-above-sos-text.svelte"
|
|
@@ -6786,6 +6810,10 @@
|
|
|
6786
6810
|
"types": "./types/gfwqskkx.d.ts",
|
|
6787
6811
|
"svelte": "./components/s/syrup-jug.svelte"
|
|
6788
6812
|
},
|
|
6813
|
+
"./syrup-jug-and-droplet": {
|
|
6814
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
6815
|
+
"svelte": "./components/s/syrup-jug-and-droplet.svelte"
|
|
6816
|
+
},
|
|
6789
6817
|
"./syrup-jug-with-maple-leaf": {
|
|
6790
6818
|
"types": "./types/gfwqskkx.d.ts",
|
|
6791
6819
|
"svelte": "./components/s/syrup-jug-with-maple-leaf.svelte"
|