@iconify-svelte/pinhead 1.0.8 → 1.0.9
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/bag-with-greek-cross.svelte +2 -2
- package/components/b/book-with-greek-cross.svelte +11 -0
- package/components/b/briefcase-with-greek-cross.svelte +2 -2
- package/components/c/compact-box-truck-with-greek-cross.svelte +2 -2
- package/components/d/droplet-beside-greek-cross.svelte +11 -0
- package/components/d/droplet-outline.svelte +2 -2
- package/components/d/droplet-with-greek-cross.svelte +2 -2
- package/components/d/droplet-with-shine.svelte +11 -0
- package/components/d/droplet.svelte +2 -2
- package/components/f/fountain-from-ground.svelte +11 -0
- package/components/g/greek-cross-above-outstretched-hand.svelte +2 -2
- package/components/g/greek-cross.svelte +2 -2
- package/components/h/heart-with-greek-cross.svelte +2 -2
- package/components/m/mortar-and-pestle-with-greek-cross.svelte +2 -2
- package/components/m/mortar-and-pestle.svelte +11 -0
- package/components/m/mountain-with-greek-cross.svelte +2 -2
- package/components/p/pawprint-with-greek-cross.svelte +2 -2
- package/components/p/pawprint.svelte +2 -2
- package/components/p/phone-top-right-with-greek-cross.svelte +2 -2
- package/components/p/pill-bottle-with-greek-cross.svelte +2 -2
- package/components/p/pill-bottle.svelte +11 -0
- package/components/s/slide-and-droplet.svelte +11 -0
- package/components/v/vending-machine-with-greek-cross.svelte +2 -2
- package/css/a/ah84_58pi.css +4 -0
- package/css/{e/esb6vekis.css → b/bzl9v9bzt.css} +2 -2
- package/css/c/c9pj91rwy.css +4 -0
- package/css/d/dffe5p_ib.css +4 -0
- package/css/e/e9et50blq.css +4 -0
- package/css/f/fowbx3bnk.css +4 -0
- package/css/{t/to7g2tvip.css → g/g9k5q2bxk.css} +2 -2
- package/css/g/gjldgvq9y.css +4 -0
- package/css/i/iuebe5bds.css +4 -0
- package/css/k/khetupczm.css +4 -0
- package/css/m/mhy8zvufr.css +4 -0
- package/css/n/nlr6yzbhm.css +4 -0
- package/css/o/ojrhsgb2d.css +4 -0
- package/css/p/p97o-ob5d.css +4 -0
- package/css/p/pw559bcmg.css +4 -0
- package/css/t/t5m1qigkm.css +4 -0
- package/css/v/v-p51qzsf.css +4 -0
- package/css/v/v194byb7j.css +4 -0
- package/css/v/vijrvsb-p.css +4 -0
- package/css/v/vmawyvb1b.css +4 -0
- package/css/v/vruhjebli.css +4 -0
- package/css/w/wcqhkihsq.css +4 -0
- package/css/y/y6j_wib5a.css +4 -0
- package/iconify.json +2 -2
- package/package.json +29 -1
- package/css/a/asky82s9t.css +0 -4
- package/css/b/b2m7asbtx.css +0 -4
- package/css/b/buy5b6bju.css +0 -4
- package/css/g/g3_3l-b0e.css +0 -4
- package/css/k/ki_s-8b3o.css +0 -4
- package/css/l/ldfk44b2b.css +0 -4
- package/css/l/lw0-izbuk.css +0 -4
- package/css/n/nsp6eyi4p.css +0 -4
- package/css/p/pl5v19bpx.css +0 -4
- package/css/q/q_bivj38u.css +0 -4
- package/css/q/qpb306uud.css +0 -4
- package/css/u/uoegovbon.css +0 -4
- package/css/v/v250d_hni.css +0 -4
- package/css/x/x6ouvnbeq.css +0 -4
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/m/mhy8zvufr.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="mhy8zvufr"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:bag-with-greek-cross" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/e/e9et50blq.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="e9et50blq"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:book-with-greek-cross" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/v/vmawyvb1b.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="vmawyvb1b"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:briefcase-with-greek-cross" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/g/g9k5q2bxk.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="g9k5q2bxk"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:compact-box-truck-with-greek-cross" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/w/wcqhkihsq.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="wcqhkihsq"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:droplet-beside-greek-cross" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/y/y6j_wib5a.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="y6j_wib5a"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:droplet-outline" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/p/pw559bcmg.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="pw559bcmg"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:droplet-with-greek-cross" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/v/v194byb7j.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="v194byb7j"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:droplet-with-shine" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/v/vruhjebli.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="vruhjebli"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:droplet" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/d/dffe5p_ib.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="dffe5p_ib"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:fountain-from-ground" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/v/v-p51qzsf.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="v-p51qzsf"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:greek-cross-above-outstretched-hand" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/f/fowbx3bnk.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="fowbx3bnk"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:greek-cross" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/v/vijrvsb-p.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="vijrvsb-p"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:heart-with-greek-cross" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/a/ah84_58pi.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="ah84_58pi"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:mortar-and-pestle-with-greek-cross" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nlr6yzbhm.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="nlr6yzbhm"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:mortar-and-pestle" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/c/c9pj91rwy.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="c9pj91rwy"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:mountain-with-greek-cross" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/k/khetupczm.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="khetupczm"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:pawprint-with-greek-cross" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/i/iuebe5bds.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="iuebe5bds"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:pawprint" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/b/bzl9v9bzt.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="bzl9v9bzt"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:phone-top-right-with-greek-cross" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/p/p97o-ob5d.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="p97o-ob5d"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:pill-bottle-with-greek-cross" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/t/t5m1qigkm.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="t5m1qigkm"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:pill-bottle" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/g/gjldgvq9y.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="gjldgvq9y"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:slide-and-droplet" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/o/ojrhsgb2d.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":15,"height":15};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="ojrhsgb2d"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:vending-machine-with-greek-cross" {...props}></Icon>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.ah84_58pi {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("m9.5 5l1.46-1.91h.23c.86 0 1.56-.69 1.56-1.54c0-.86-.7-1.55-1.56-1.55S9.63.69 9.63 1.55v.17L6.5 5zM13 6v1l-1.5 3.5L13 14v1H2v-1l1.5-3.5L2 7V6zM8.17 8H6.83c-.09 0-.16.07-.16.17v1.5h-1.5c-.1 0-.17.07-.17.16v1.34c0 .09.07.16.17.16h1.5v1.5c0 .1.07.17.16.17h1.34c.09 0 .16-.07.16-.17v-1.5h1.5c.1 0 .17-.07.17-.16V9.83c0-.09-.07-.16-.17-.16h-1.5v-1.5c0-.1-.07-.17-.16-.17");
|
|
4
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.
|
|
1
|
+
.bzl9v9bzt {
|
|
2
2
|
fill: currentColor;
|
|
3
|
-
d: path("M3.88 2.25L5.2 4.43c.08.14.09.31.03.46l-.98 2.27l3.59 3.59l2.27-.98c.15-.06.32-.05.46.03l2.18 1.32c.17.1.27.29.25.49l-.07.58c-.05.46-.25.88-.58 1.21l-1.45 1.45c-.1.1-.24.16-.39.15l-.08-.01c-2.29-.52-4.47-1.82-6.53-3.89C1.94 9.15.67 7.09.1 4.93l-.09-.36a.51.51 0 0 1 .14-.47L1.6 2.65c.33-.33.75-.53 1.21-.58L3.39 2c.2-.02.39.08.49.25M11.
|
|
3
|
+
d: path("M3.88 2.25L5.2 4.43c.08.14.09.31.03.46l-.98 2.27l3.59 3.59l2.27-.98c.15-.06.32-.05.46.03l2.18 1.32c.17.1.27.29.25.49l-.07.58c-.05.46-.25.88-.58 1.21l-1.45 1.45c-.1.1-.24.16-.39.15l-.08-.01c-2.29-.52-4.47-1.82-6.53-3.89C1.94 9.15.67 7.09.1 4.93l-.09-.36a.51.51 0 0 1 .14-.47L1.6 2.65c.33-.33.75-.53 1.21-.58L3.39 2c.2-.02.39.08.49.25M11.8 1c.11 0 .2.09.2.2V3h1.8c.11 0 .2.09.2.2v1.6a.2.2 0 0 1-.2.2H12v1.8a.2.2 0 0 1-.2.2h-1.6a.2.2 0 0 1-.2-.2V5H8.2a.2.2 0 0 1-.2-.2V3.2c0-.11.09-.2.2-.2H10V1.2c0-.11.09-.2.2-.2z");
|
|
4
4
|
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.dffe5p_ib {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M0 15h15s-.75-1.29-3.32-1.5c-2.47-.21-1.82-1.07-3.22-1.07c-1.39 0-.53-.11-2.03 0s-1.39 1.07-3.54 1.18C.64 13.93 0 15 0 15M3.75.5c-2.25 0-3 2-3 4.5c0 2 1 2 1 0c0-2.5 1-3.5 2-3.5C5.5 1.5 6.5 4.75 6.5 6c0 0-.25-.25-1-.25c-1.25 0-2 1-2 2.75c0 1.25.75 1.25.75 0S5 6.75 5.5 6.75S6.75 7 7.03 10c.22 1.98.69 1.98.94 0c.28-3 .78-3.25 1.53-3.25c.5 0 1 .5 1 1.25c0 1.5.75 1.5.75 0c0-1.75-1-2.25-1.75-2.25S8.5 6 8.5 6c.25-1.75 1-4 2.5-4s2.25 2 2.25 3.75s1 1.75 1 0C14.25 2.5 12.75 1 11 1C8.75 1 7.75 3.5 7.5 5C7.25 3 6.25.5 3.75.5");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.e9et50blq {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12.5 0c.28 0 .5.22.5.5v12l-.75.75l.75.75v1H3c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1zM12 12.5H3V14h9l-.75-.75zM8.3 3H6.7a.2.2 0 0 0-.2.2V5H4.7a.2.2 0 0 0-.2.2v1.6c0 .11.09.2.2.2h1.8v1.8c0 .11.09.2.2.2h1.6a.2.2 0 0 0 .2-.2V7h1.8a.2.2 0 0 0 .2-.2V5.2a.2.2 0 0 0-.2-.2H8.5V3.2a.2.2 0 0 0-.2-.2");
|
|
4
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.
|
|
1
|
+
.g9k5q2bxk {
|
|
2
2
|
fill: currentColor;
|
|
3
|
-
d: path("M3.5 10.1c.77 0 1.4.63 1.4 1.4s-.63 1.4-1.4 1.4s-1.4-.63-1.4-1.4s.63-1.4 1.4-1.4m8 0c.77 0 1.4.63 1.4 1.4s-.63 1.4-1.4 1.4s-1.4-.63-1.4-1.4s.63-1.4 1.4-1.4M9.5 2c.28 0 .5.22.5.5V5h1.73c.17 0 .33.08.42.22L14 8l.41.41c.38.38.59.89.59 1.42V11c0 .28-.22.5-.5.5h-.8c0-1.22-.98-2.2-2.2-2.2s-2.2.98-2.2 2.2H5.7c0-1.22-.98-2.2-2.2-2.2s-2.2.98-2.2 2.2H0v-9c0-.28.22-.5.5-.
|
|
3
|
+
d: path("M3.5 10.1c.77 0 1.4.63 1.4 1.4s-.63 1.4-1.4 1.4s-1.4-.63-1.4-1.4s.63-1.4 1.4-1.4m8 0c.77 0 1.4.63 1.4 1.4s-.63 1.4-1.4 1.4s-1.4-.63-1.4-1.4s.63-1.4 1.4-1.4M9.5 2c.28 0 .5.22.5.5V5h1.73c.17 0 .33.08.42.22L14 8l.41.41c.38.38.59.89.59 1.42V11c0 .28-.22.5-.5.5h-.8c0-1.22-.98-2.2-2.2-2.2s-2.2.98-2.2 2.2H5.7c0-1.22-.98-2.2-2.2-2.2s-2.2.98-2.2 2.2H0v-9c0-.28.22-.5.5-.5zm2 4H10v2h2.75zM5.67 3H4.33c-.09 0-.16.07-.16.17v1.5h-1.5c-.1 0-.17.07-.17.16v1.34c0 .09.07.16.17.16h1.5v1.5c0 .1.07.17.16.17h1.34c.09 0 .16-.07.16-.17v-1.5h1.5c.1 0 .17-.07.17-.16V4.83c0-.09-.07-.16-.17-.16h-1.5v-1.5c0-.1-.07-.17-.16-.17");
|
|
4
4
|
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.gjldgvq9y {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M1 12h3v-2H1zm0 1v2H0V6.62a1.505 1.505 0 0 1 0-2.24V2.5c0-.28.22-.5.5-.5s.5.22.5.5V4h3V2.5c0-.28.22-.5.5-.5s.5.22.5.5v1.55c.59.12 1.13.46 1.5.95l5.25 7h1.75c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-2c-.79 0-1.53-.37-2-1L5 8v7H4v-2zm0-4h3V7H1zm11.5-9c.27.84.56 1.51.85 1.98l.12.17c.11.16.26.36.44.59l.54.7c.36.45.55.99.55 1.56c0 1.38-1.13 2.5-2.5 2.5l-.21-.01a2.5 2.5 0 0 1-1.35-.53a2.495 2.495 0 0 1-.4-3.5l.69-.9c.1-.13.18-.25.26-.35l.15-.23c.3-.49.59-1.15.86-1.98");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.iuebe5bds {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M5.34 5.65c.76-.13 1.32-.81 1.41-1.64c.09-.84.28-4.22-.99-4c-3.27.55-3.04 6.1-.42 5.64m4.32 0c2.62.46 2.85-5.09-.42-5.64c-1.27-.22-1.07 3.16-.98 4c.08.83.64 1.52 1.4 1.64M4 8.27c0-.44-.15-.83-.41-1.13c-.42-.54-1.74-1.64-2.05-1.36c-.68.59-.66 2.04-.25 3.09c.21.59.72 1 1.3 1c.78 0 1.41-.72 1.41-1.6m9.47-2.49c-.33-.28-1.64.82-2.05 1.36c-.26.3-.41.69-.41 1.13c0 .88.62 1.6 1.4 1.6c.59 0 1.1-.41 1.3-1c.41-1.05.44-2.5-.24-3.09m-2.65 4.98c-1.2-.6-1.16-1.75-1.43-2.79c-.21-.84-.98-1.46-1.89-1.46c-.89 0-1.64.59-1.88 1.4c-.29 1-.12 2.18-1.42 2.85c-1.05.34-1.48.85-1.48 2.05c0 .96.83 2.01 1.91 2.13c1.19.18 2.12-.06 2.88-.48c.75.42 1.68.66 2.88.48c1.06-.13 1.89-1.17 1.89-2.13c0-1.22-.4-1.68-1.46-2.05");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.khetupczm {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M5.34 5.65c.76-.13 1.32-.81 1.41-1.64c.09-.84.28-4.22-.99-4c-3.27.55-3.04 6.1-.42 5.64m4.32 0c2.62.46 2.85-5.09-.42-5.64c-1.27-.22-1.07 3.16-.98 4c.08.83.64 1.52 1.4 1.64M4 8.27c0-.44-.15-.83-.41-1.13c-.42-.54-1.74-1.64-2.05-1.36c-.68.59-.66 2.04-.25 3.09c.21.59.72 1 1.3 1c.78 0 1.41-.72 1.41-1.6m9.47-2.49c-.33-.28-1.64.82-2.05 1.36c-.26.3-.41.69-.41 1.13c0 .88.62 1.6 1.4 1.6c.59 0 1.1-.41 1.3-1c.41-1.05.44-2.5-.24-3.09m-5.97.73c.91 0 1.68.62 1.89 1.46c.27 1.04.23 2.19 1.43 2.79c1.06.37 1.46.83 1.46 2.05c0 .96-.83 2-1.89 2.13c-1.2.18-2.13-.06-2.88-.48c-.76.42-1.69.66-2.88.48c-1.08-.12-1.91-1.17-1.91-2.13c0-1.2.43-1.71 1.48-2.05c.93-.48 1.11-1.22 1.24-1.96l.05-.3c.04-.2.08-.4.13-.59c.24-.81.99-1.4 1.88-1.4m.53 2.99H6.97c-.08 0-.14.06-.14.13v1.2h-1.2c-.07 0-.13.06-.13.14v1.06c0 .08.06.14.13.14h1.2v1.2c0 .07.06.13.14.13h1.06c.08 0 .14-.06.14-.13v-1.2h1.2c.07 0 .13-.06.13-.14v-1.06c0-.08-.06-.14-.13-.14h-1.2v-1.2c0-.07-.06-.13-.14-.13");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.mhy8zvufr {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M7.5 1.07c-1.24 0-2.5.54-3.35 1.61c-.73.92-.94 1.61-1.04 2.68C1 5.25 0 6.52 0 13.93h15c0-7.41-1-8.68-3.11-8.57c-.1-1.07-.32-1.77-1.04-2.68A4.27 4.27 0 0 0 7.5 1.07m.8 5.43c.11 0 .2.09.2.2v1.8h1.8c.11 0 .2.09.2.2v1.6a.2.2 0 0 1-.2.2H8.5v1.8a.2.2 0 0 1-.2.2H6.7a.2.2 0 0 1-.2-.2v-1.8H4.7a.2.2 0 0 1-.2-.2V8.7c0-.11.09-.2.2-.2h1.8V6.7c0-.11.09-.2.2-.2zm-.8-3.29c1.37 0 2.14 1.08 2.21 2.15H5.29c.07-1.07.84-2.14 2.21-2.15");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.ojrhsgb2d {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12 0c.55 0 1 .45 1 1v13c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1zM9.5 12.5h-5v1h5zm1-11h-7V11h7zM12.25 8h-1v1h1zm0-2h-1v1h1zm0-2h-1v1h1zM7.8 3c.11 0 .2.09.2.2V5h1.8c.11 0 .2.09.2.2v1.6a.2.2 0 0 1-.2.2H8v1.8a.2.2 0 0 1-.2.2H6.2a.2.2 0 0 1-.2-.2V7H4.2a.2.2 0 0 1-.2-.2V5.2c0-.11.09-.2.2-.2H6V3.2c0-.11.09-.2.2-.2z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.p97o-ob5d {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M10.5 4L13 6v8.5c0 .28-.22.5-.5.5h-10c-.28 0-.5-.22-.5-.5V6l2.5-2zM8.3 6.5H6.7a.2.2 0 0 0-.2.2v1.8H4.7a.2.2 0 0 0-.2.2v1.6c0 .11.09.2.2.2h1.8v1.8c0 .11.09.2.2.2h1.6a.2.2 0 0 0 .2-.2v-1.8h1.8a.2.2 0 0 0 .2-.2V8.7a.2.2 0 0 0-.2-.2H8.5V6.7a.2.2 0 0 0-.2-.2M4 .5v2c0 .28.22.5.5.5h6c.28 0 .5-.22.5-.5v-2c0-.28-.22-.5-.5-.5h-6c-.28 0-.5.22-.5.5");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.pw559bcmg {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M7.5 0c.55 1.69 1.13 3.02 1.71 3.96l.18.27c.27.4.66.91 1.15 1.55l.87 1.11c.71.89 1.09 1.98 1.09 3.11c0 2.76-2.25 5-5 5l-.43-.02a5.07 5.07 0 0 1-2.69-1.07a4.987 4.987 0 0 1-.8-7l.96-1.24c.38-.49.69-.91.93-1.25l.31-.46C6.38 2.98 6.96 1.67 7.5 0m.8 7H6.7a.2.2 0 0 0-.2.2V9H4.7a.2.2 0 0 0-.2.2v1.6c0 .11.09.2.2.2h1.8v1.8c0 .11.09.2.2.2h1.6a.2.2 0 0 0 .2-.2V11h1.8a.2.2 0 0 0 .2-.2V9.2a.2.2 0 0 0-.2-.2H8.5V7.2a.2.2 0 0 0-.2-.2");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.v-p51qzsf {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M0 10c2 .5 4.5 1.5 4.5 1.5s1-.5 1.5-.5h2l3-.5s.5.5 0 1s-2.5 1-3 1s.5.5.5.5H10s2 0 3-.5s2-1 2-.5c-2 2-3 2.5-3 2.5s-2 .5-4 .5c-.5 0-2-1-2.5-1S0 14.5 0 14zM11.57.5c.14 0 .26.12.26.27v2.4h2.4c.15 0 .27.12.27.26v2.14c0 .14-.12.26-.27.26h-2.4v2.4c0 .15-.12.27-.26.27H9.43c-.14 0-.26-.12-.26-.27v-2.4h-2.4c-.15 0-.27-.12-.27-.26V3.43c0-.14.12-.26.27-.26h2.4V.77c0-.15.12-.27.26-.27z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.v194byb7j {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M7.5 0c.55 1.69 1.13 3.02 1.71 3.96l.18.27c.27.4.66.91 1.15 1.55l.87 1.11c.71.89 1.09 1.98 1.09 3.11c0 2.76-2.25 5-5 5l-.43-.02a5.07 5.07 0 0 1-2.69-1.07a4.987 4.987 0 0 1-.8-7l.96-1.24c.38-.49.69-.91.93-1.25l.31-.46C6.38 2.98 6.96 1.67 7.5 0M5.48 6.9l-.72.94a3.484 3.484 0 0 0 1.96 5.57l.17.03l-.43-.88c-.3-.63-.5-1.1-.67-1.58c-.11-.32-.2-.63-.26-.94c-.15-.74-.17-1.58-.08-2.73z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.vijrvsb-p {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M6.47 3.83c.13.18.24.37.34.57l.69 1.47l.69-1.47a3.52 3.52 0 0 1 4.69-1.68q.3.135.57.33a3.77 3.77 0 0 1 .83 5.26q-.135.18-.3.36l-5.57 5.94c-.47.5-1.26.53-1.77.06l-.05-.06l-5.57-5.94a3.76 3.76 0 0 1 .17-5.32l.17-.15l.19-.15a3.53 3.53 0 0 1 4.92.78M8.3 6.5H6.7a.2.2 0 0 0-.2.2v1.8H4.7a.2.2 0 0 0-.2.2v1.6c0 .11.09.2.2.2h1.8v1.8c0 .11.09.2.2.2h1.6a.2.2 0 0 0 .2-.2v-1.8h1.8a.2.2 0 0 0 .2-.2V8.7a.2.2 0 0 0-.2-.2H8.5V6.7a.2.2 0 0 0-.2-.2");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.vmawyvb1b {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M5 4h5V3H5zm5-2c.55 0 1 .45 1 1v1h2c.55 0 1 .45 1 1v7c0 .55-.45 1-1 1H2c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h2V3c0-.55.45-1 1-1zM8.3 5.5H6.7a.2.2 0 0 0-.2.2v1.8H4.7a.2.2 0 0 0-.2.2v1.6c0 .11.09.2.2.2h1.8v1.8c0 .11.09.2.2.2h1.6a.2.2 0 0 0 .2-.2V9.5h1.8a.2.2 0 0 0 .2-.2V7.7a.2.2 0 0 0-.2-.2H8.5V5.7a.2.2 0 0 0-.2-.2");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.vruhjebli {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M7.5 0c.55 1.69 1.13 3.02 1.71 3.96c.27.42.71 1.02 1.33 1.82l.87 1.11c.71.89 1.09 1.98 1.09 3.11c0 2.76-2.25 5-5 5l-.43-.02a5.07 5.07 0 0 1-2.69-1.07a4.987 4.987 0 0 1-.8-7l.96-1.24c.38-.49.69-.91.93-1.25l.31-.46C6.38 2.98 6.96 1.67 7.5 0");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.wcqhkihsq {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M5 0c.55 1.69 1.13 3.02 1.71 3.96l.18.27c.27.4.66.91 1.15 1.55l.87 1.11C9.62 7.78 10 8.87 10 10c0 2.76-2.25 5-5 5l-.43-.02a5.07 5.07 0 0 1-2.69-1.07a4.987 4.987 0 0 1-.8-7l.96-1.24c.38-.49.69-.91.93-1.25l.31-.46C3.88 2.98 4.46 1.67 5 0m7.8 0c.11 0 .2.09.2.2V2h1.8c.11 0 .2.09.2.2v1.6a.2.2 0 0 1-.2.2H13v1.8a.2.2 0 0 1-.2.2h-1.6a.2.2 0 0 1-.2-.2V4H9.2a.2.2 0 0 1-.2-.2V2.2c0-.11.09-.2.2-.2H11V.2c0-.11.09-.2.2-.2z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.y6j_wib5a {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M7.5 0c.55 1.69 1.13 3.02 1.71 3.96c.27.42.71 1.02 1.33 1.82l.87 1.11c.71.89 1.09 1.98 1.09 3.11c0 2.76-2.25 5-5 5l-.43-.02a5.07 5.07 0 0 1-2.69-1.07a4.987 4.987 0 0 1-.8-7l.96-1.24c.38-.49.69-.91.93-1.25l.31-.46C6.38 2.98 6.96 1.67 7.5 0m0 3.97l-.09.16c-.12.23-.25.45-.38.66l-.35.52c-.36.5-.63.85-.95 1.27l-.97 1.26a3.484 3.484 0 0 0 2.39 5.64l.35.02c1.93 0 3.5-1.57 3.5-3.5c0-.8-.26-1.55-.77-2.19L9.36 6.7c-.69-.88-1.13-1.49-1.43-1.95c-.1-.17-.2-.34-.29-.52z");
|
|
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": 2348,
|
|
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": 1784091635
|
|
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.9",
|
|
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",
|
|
@@ -966,6 +966,10 @@
|
|
|
966
966
|
"types": "./types/gfwqskkx.d.ts",
|
|
967
967
|
"svelte": "./components/b/book-with-dna.svelte"
|
|
968
968
|
},
|
|
969
|
+
"./book-with-greek-cross": {
|
|
970
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
971
|
+
"svelte": "./components/b/book-with-greek-cross.svelte"
|
|
972
|
+
},
|
|
969
973
|
"./book-with-info-i": {
|
|
970
974
|
"types": "./types/gfwqskkx.d.ts",
|
|
971
975
|
"svelte": "./components/b/book-with-info-i.svelte"
|
|
@@ -2590,6 +2594,10 @@
|
|
|
2590
2594
|
"types": "./types/gfwqskkx.d.ts",
|
|
2591
2595
|
"svelte": "./components/d/droplet-above-water.svelte"
|
|
2592
2596
|
},
|
|
2597
|
+
"./droplet-beside-greek-cross": {
|
|
2598
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
2599
|
+
"svelte": "./components/d/droplet-beside-greek-cross.svelte"
|
|
2600
|
+
},
|
|
2593
2601
|
"./droplet-from-pipes": {
|
|
2594
2602
|
"types": "./types/gfwqskkx.d.ts",
|
|
2595
2603
|
"svelte": "./components/d/droplet-from-pipes.svelte"
|
|
@@ -2610,6 +2618,10 @@
|
|
|
2610
2618
|
"types": "./types/gfwqskkx.d.ts",
|
|
2611
2619
|
"svelte": "./components/d/droplet-with-greek-cross.svelte"
|
|
2612
2620
|
},
|
|
2621
|
+
"./droplet-with-shine": {
|
|
2622
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
2623
|
+
"svelte": "./components/d/droplet-with-shine.svelte"
|
|
2624
|
+
},
|
|
2613
2625
|
"./duck": {
|
|
2614
2626
|
"types": "./types/gfwqskkx.d.ts",
|
|
2615
2627
|
"svelte": "./components/d/duck.svelte"
|
|
@@ -3154,6 +3166,10 @@
|
|
|
3154
3166
|
"types": "./types/gfwqskkx.d.ts",
|
|
3155
3167
|
"svelte": "./components/f/fountain-from-fountain-basin.svelte"
|
|
3156
3168
|
},
|
|
3169
|
+
"./fountain-from-ground": {
|
|
3170
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
3171
|
+
"svelte": "./components/f/fountain-from-ground.svelte"
|
|
3172
|
+
},
|
|
3157
3173
|
"./fountain-from-water": {
|
|
3158
3174
|
"types": "./types/gfwqskkx.d.ts",
|
|
3159
3175
|
"svelte": "./components/f/fountain-from-water.svelte"
|
|
@@ -4590,6 +4606,10 @@
|
|
|
4590
4606
|
"types": "./types/gfwqskkx.d.ts",
|
|
4591
4607
|
"svelte": "./components/m/montana-with-capital-star.svelte"
|
|
4592
4608
|
},
|
|
4609
|
+
"./mortar-and-pestle": {
|
|
4610
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
4611
|
+
"svelte": "./components/m/mortar-and-pestle.svelte"
|
|
4612
|
+
},
|
|
4593
4613
|
"./mortar-and-pestle-with-greek-cross": {
|
|
4594
4614
|
"types": "./types/gfwqskkx.d.ts",
|
|
4595
4615
|
"svelte": "./components/m/mortar-and-pestle-with-greek-cross.svelte"
|
|
@@ -6302,6 +6322,10 @@
|
|
|
6302
6322
|
"types": "./types/gfwqskkx.d.ts",
|
|
6303
6323
|
"svelte": "./components/p/pill.svelte"
|
|
6304
6324
|
},
|
|
6325
|
+
"./pill-bottle": {
|
|
6326
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
6327
|
+
"svelte": "./components/p/pill-bottle.svelte"
|
|
6328
|
+
},
|
|
6305
6329
|
"./pill-bottle-with-greek-cross": {
|
|
6306
6330
|
"types": "./types/gfwqskkx.d.ts",
|
|
6307
6331
|
"svelte": "./components/p/pill-bottle-with-greek-cross.svelte"
|
|
@@ -7530,6 +7554,10 @@
|
|
|
7530
7554
|
"types": "./types/gfwqskkx.d.ts",
|
|
7531
7555
|
"svelte": "./components/s/slide.svelte"
|
|
7532
7556
|
},
|
|
7557
|
+
"./slide-and-droplet": {
|
|
7558
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7559
|
+
"svelte": "./components/s/slide-and-droplet.svelte"
|
|
7560
|
+
},
|
|
7533
7561
|
"./slot": {
|
|
7534
7562
|
"types": "./types/gfwqskkx.d.ts",
|
|
7535
7563
|
"svelte": "./components/s/slot.svelte"
|
package/css/a/asky82s9t.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.asky82s9t {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M7.5 6.44c.84 0 1.55.57 1.75 1.34c.25.97.21 2.03 1.32 2.58c.97.33 1.35.75 1.35 1.87c0 .9-.77 1.85-1.76 1.97c-1.1.16-1.96-.05-2.66-.45c-.7.4-1.56.61-2.66.45c-.99-.12-1.76-1.08-1.76-1.97c0-1.1.4-1.56 1.38-1.88c1.2-.61 1.04-1.69 1.3-2.62c.22-.74.92-1.29 1.74-1.29m5.51-.66c-.3-.26-1.52.75-1.9 1.25c-.23.26-.38.63-.38 1.03c0 .82.59 1.48 1.3 1.48c.55 0 1.01-.38 1.21-.92c.37-.97.39-2.3-.23-2.84m-11.02 0c-.62.54-.6 1.87-.23 2.84c.2.54.66.92 1.21.92c.71 0 1.3-.66 1.3-1.48c0-.4-.15-.77-.38-1.03c-.39-.5-1.6-1.51-1.9-1.25M9.1.46c3.03.52 2.81 5.61.39 5.2c-.7-.12-1.22-.75-1.3-1.51c-.08-.78-.26-3.89.91-3.69m-3.2 0c1.17-.2.99 2.91.9 3.69c-.07.76-.59 1.39-1.29 1.51c-2.43.41-2.64-4.68.39-5.2");
|
|
4
|
-
}
|
package/css/b/b2m7asbtx.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.b2m7asbtx {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M7.5 0c.52 1.6 1.07 2.87 1.62 3.76l.2.29c.25.37.61.85 1.07 1.44l.82 1.05c.68.85 1.04 1.88 1.04 2.96c0 2.62-2.13 4.75-4.75 4.75l-.4-.02c-.93-.09-1.82-.42-2.56-1.01a4.727 4.727 0 0 1-.76-6.65l1.25-1.63c.21-.28.39-.53.54-.74l.3-.44C6.44 2.83 6.99 1.58 7.5 0m.75 6.5h-1.5c-.14 0-.25.11-.25.25V8.5H4.75c-.14 0-.25.11-.25.25v1.5c0 .14.11.25.25.25H6.5v1.75c0 .14.11.25.25.25h1.5c.14 0 .25-.11.25-.25V10.5h1.75c.14 0 .25-.11.25-.25v-1.5c0-.14-.11-.25-.25-.25H8.5V6.75c0-.14-.11-.25-.25-.25");
|
|
4
|
-
}
|
package/css/b/buy5b6bju.css
DELETED
package/css/g/g3_3l-b0e.css
DELETED
package/css/k/ki_s-8b3o.css
DELETED
package/css/l/ldfk44b2b.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.ldfk44b2b {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("m5 1l2 3l3.5-1.5L14.97 13H0zm3 4H7c-.25 0-.45.18-.49.41l-.01.09v2h-2c-.25 0-.45.18-.49.41L4 8v1c0 .25.18.45.41.49l.09.01h2v2c0 .25.18.45.41.49L7 12h1c.25 0 .45-.18.49-.41l.01-.09v-2h2c.25 0 .45-.18.49-.41L11 9V8c0-.25-.18-.45-.41-.49l-.09-.01h-2v-2c0-.25-.18-.45-.41-.49z");
|
|
4
|
-
}
|
package/css/l/lw0-izbuk.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.lw0-izbuk {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M5 4h5V3H5zM4 4V3c0-.55.45-1 1-1h5c.55 0 1 .45 1 1v1h2c.55 0 1 .45 1 1v7c0 .55-.45 1-1 1H2c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1zm4.5 3.5v-2c0-.28-.22-.5-.5-.5H7c-.28 0-.5.22-.5.5v2h-2c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5h2v2c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5v-2h2c.28 0 .5-.22.5-.5V8c0-.28-.22-.5-.5-.5z");
|
|
4
|
-
}
|
package/css/n/nsp6eyi4p.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.nsp6eyi4p {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M7.5 0c.52 1.6 1.07 2.87 1.62 3.76c.26.4.68.97 1.27 1.73l.82 1.05c.68.85 1.04 1.88 1.04 2.96c0 2.62-2.13 4.75-4.75 4.75l-.4-.02c-.93-.09-1.82-.42-2.56-1.01a4.727 4.727 0 0 1-.76-6.65l.91-1.19c.36-.46.65-.86.88-1.18l.3-.44C6.44 2.83 6.99 1.58 7.5 0");
|
|
4
|
-
}
|
package/css/p/pl5v19bpx.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.pl5v19bpx {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M7.5 0c.52 1.6 1.07 2.87 1.62 3.76c.26.4.68.97 1.27 1.73l.82 1.05c.68.85 1.04 1.88 1.04 2.96c0 2.62-2.13 4.75-4.75 4.75l-.4-.02c-.93-.09-1.82-.42-2.56-1.01a4.727 4.727 0 0 1-.76-6.65l.91-1.19c.36-.46.65-.86.88-1.18l.3-.44C6.44 2.83 6.99 1.58 7.5 0m0 3.93l-.02.03q-.18.33-.36.63l-.34.5c-.34.47-.6.81-.9 1.21l-.93 1.2c-1.11 1.4-.88 3.43.53 4.54c.49.4 1.09.64 1.69.69l.33.02c1.79 0 3.25-1.46 3.25-3.25c0-.74-.25-1.44-.72-2.03l-.82-1.06c-.66-.84-1.08-1.42-1.36-1.86c-.11-.17-.21-.35-.31-.53z");
|
|
4
|
-
}
|
package/css/q/q_bivj38u.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.q_bivj38u {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M5.54 5.66c.7-.12 1.22-.75 1.3-1.51c.08-.77.26-3.88-.91-3.68c-3.02.51-2.81 5.61-.39 5.19m3.99 0c2.42.42 2.63-4.68-.39-5.19c-1.17-.2-.99 2.91-.91 3.68c.08.76.6 1.4 1.3 1.51M4.3 8.07c0-.41-.14-.77-.38-1.04c-.38-.5-1.6-1.51-1.89-1.25c-.63.54-.61 1.87-.23 2.84c.19.54.66.92 1.2.92c.72 0 1.3-.66 1.3-1.47m8.74-2.29c-.3-.26-1.51.75-1.89 1.25c-.24.27-.38.63-.38 1.04c0 .81.58 1.47 1.3 1.47c.54 0 1.01-.38 1.2-.92c.37-.97.4-2.3-.23-2.84m-2.44 4.58c-1.11-.55-1.07-1.61-1.32-2.57c-.2-.77-.91-1.34-1.75-1.34c-.82 0-1.51.54-1.73 1.29c-.27.92-.11 2-1.31 2.62c-.97.31-1.37.78-1.37 1.88c0 .89.77 1.85 1.76 1.96c1.1.17 1.96-.05 2.66-.44c.69.39 1.55.61 2.66.44c.98-.12 1.75-1.07 1.75-1.96c0-1.12-.37-1.54-1.35-1.88M9.3 11.7H8.15l.01 1.2H6.91v-1.2H5.7v-1.2h1.22l-.01-1.2h1.25v1.2H9.3z");
|
|
4
|
-
}
|
package/css/q/qpb306uud.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.qpb306uud {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M0 10c2 .5 4.5 1.5 4.5 1.5s1-.5 1.5-.5h2l3-.5s.5.5 0 1s-2.5 1-3 1s.5.5.5.5H10s2 0 3-.5s2-1 2-.5c-2 2-3 2.5-3 2.5s-2 .5-4 .5c-.5 0-2-1-2.5-1S0 14.5 0 14zM11.5.25c.28 0 .5.22.5.5V3h2.25c.25 0 .45.18.49.41l.01.09V5c0 .28-.22.5-.5.5H12v2.25c0 .28-.22.5-.5.5H10c-.28 0-.5-.22-.5-.5V5.5H7.25c-.25 0-.45-.18-.49-.41L6.75 5V3.5c0-.28.22-.5.5-.5H9.5V.75c0-.28.22-.5.5-.5z");
|
|
4
|
-
}
|
package/css/u/uoegovbon.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.uoegovbon {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M12.88 2.72q.3.135.57.33a3.77 3.77 0 0 1 .83 5.26q-.135.18-.3.36l-5.57 5.94c-.47.5-1.26.53-1.77.06l-.05-.06l-5.57-5.94a3.76 3.76 0 0 1 .17-5.32l.17-.15l.19-.15A3.53 3.53 0 0 1 6.81 4.4l.69 1.47l.69-1.47a3.52 3.52 0 0 1 4.69-1.68M8.25 6.5h-1.5c-.14 0-.25.11-.25.25V8.5H4.75c-.14 0-.25.11-.25.25v1.5c0 .14.11.25.25.25H6.5v1.75c0 .14.11.25.25.25h1.5c.14 0 .25-.11.25-.25V10.5h1.75c.14 0 .25-.11.25-.25v-1.5c0-.14-.11-.25-.25-.25H8.5V6.75c0-.14-.11-.25-.25-.25");
|
|
4
|
-
}
|
package/css/v/v250d_hni.css
DELETED
package/css/x/x6ouvnbeq.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.x6ouvnbeq {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M7.5 1.07c-1.24 0-2.5.54-3.35 1.61c-.73.92-.94 1.61-1.04 2.68C1 5.25 0 6.52 0 13.93h15c0-7.41-1-8.68-3.11-8.57c-.1-1.07-.32-1.77-1.04-2.68A4.27 4.27 0 0 0 7.5 1.07m0 2.14c1.37 0 2.14 1.08 2.21 2.15H5.29c.07-1.07.84-2.14 2.21-2.15M6.43 6.43h2.14v2.14h2.14v2.14H8.57v2.15H6.43v-2.15H4.29V8.57h2.14z");
|
|
4
|
-
}
|