@iconify-svelte/pinhead 1.0.0 → 1.0.1
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/a/arrow-down-from-rectangle-outline.svelte +11 -0
- package/components/a/arrow-down-to-rectangle-outline.svelte +11 -0
- package/components/a/arrow-left-from-rectangle-tall-outline.svelte +11 -0
- package/components/a/arrow-left-to-rectangle-tall-outline.svelte +11 -0
- package/components/a/arrow-right-from-rectangle-tall-outline.svelte +11 -0
- package/components/a/arrow-right-to-rectangle-tall-outline.svelte +11 -0
- package/components/a/arrow-up-from-rectangle-outline.svelte +11 -0
- package/components/a/arrow-up-to-rectangle-outline.svelte +11 -0
- package/components/a/arrows-left-right-above-waters.svelte +11 -0
- package/components/c/campsite-on-pier-in-water.svelte +11 -0
- package/components/c/campsite-on-platform.svelte +11 -0
- package/components/c/campsite-over-water.svelte +11 -0
- package/components/c/campsite-over-waters.svelte +11 -0
- package/components/e/exclamation-point-beside-exclamation-point.svelte +11 -0
- package/components/e/exclamation-point-beside-question-mark.svelte +11 -0
- package/components/e/exclamation-point.svelte +2 -2
- package/components/f/flush-curb-under-shoe.svelte +11 -0
- package/components/f/flush-curb-with-arrow-right.svelte +11 -0
- package/components/f/flush-curb-with-question-mark.svelte +11 -0
- package/components/f/flush-curb.svelte +11 -0
- package/components/l/lowered-curb-under-shoe.svelte +11 -0
- package/components/l/lowered-curb-with-arrow-bottom-right.svelte +11 -0
- package/components/l/lowered-curb-with-question-mark.svelte +11 -0
- package/components/l/lowered-curb.svelte +11 -0
- package/components/p/person-holding-open-book-profile.svelte +11 -0
- package/components/q/question-mark.svelte +11 -0
- package/components/r/raised-curb-under-shoe.svelte +11 -0
- package/components/r/raised-curb-with-arrow-down.svelte +11 -0
- package/components/r/raised-curb-with-question-mark.svelte +11 -0
- package/components/r/raised-curb.svelte +11 -0
- package/components/r/rolled-curb-under-shoe.svelte +11 -0
- package/components/r/rolled-curb-with-arrow-bottom-right.svelte +11 -0
- package/components/r/rolled-curb-with-question-mark.svelte +11 -0
- package/components/r/rolled-curb.svelte +11 -0
- package/css/a/abjqn5hlt.css +4 -0
- package/css/a/ai-hwv_fk.css +4 -0
- package/css/b/bo1qmrsci.css +4 -0
- package/css/b/bqu27-g1n.css +4 -0
- package/css/d/d1uxt3j4p.css +4 -0
- package/css/d/dsokvoiit.css +4 -0
- package/css/d/dwtaaxbts.css +4 -0
- package/css/e/ec3vx5m2n.css +4 -0
- package/css/e/eohem2u0z.css +4 -0
- package/css/f/f1r3n6bhi.css +4 -0
- package/css/f/f4wwjh5bh.css +4 -0
- package/css/g/g73be5v_d.css +4 -0
- package/css/g/gjsa0n_hg.css +4 -0
- package/css/j/jtekpbcxt.css +4 -0
- package/css/k/kihstx6sx.css +4 -0
- package/css/l/l_de38b0p.css +4 -0
- package/css/l/lk136onmn.css +4 -0
- package/css/o/o2k0_cbib.css +4 -0
- package/css/o/oyqpj5b7d.css +4 -0
- package/css/p/p0nn-20rd.css +4 -0
- package/css/r/rnpvry6wl.css +4 -0
- package/css/r/rz4ck4-4i.css +4 -0
- package/css/s/sceiphbpt.css +4 -0
- package/css/t/t8akckbgq.css +4 -0
- package/css/t/tgxrp-bwh.css +4 -0
- package/css/x/xqb-0_4ig.css +4 -0
- package/iconify.json +2 -2
- package/package.json +165 -33
- package/css/i/if65e3bts.css +0 -4
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/o/o2k0_cbib.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="o2k0_cbib"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:arrow-down-from-rectangle-outline" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/t/t8akckbgq.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="t8akckbgq"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:arrow-down-to-rectangle-outline" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/l/l_de38b0p.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="l_de38b0p"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:arrow-left-from-rectangle-tall-outline" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/e/ec3vx5m2n.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="ec3vx5m2n"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:arrow-left-to-rectangle-tall-outline" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/t/tgxrp-bwh.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="tgxrp-bwh"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:arrow-right-from-rectangle-tall-outline" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/a/abjqn5hlt.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="abjqn5hlt"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:arrow-right-to-rectangle-tall-outline" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/g/gjsa0n_hg.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="gjsa0n_hg"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:arrow-up-from-rectangle-outline" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/p/p0nn-20rd.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="p0nn-20rd"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:arrow-up-to-rectangle-outline" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/d/dwtaaxbts.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="dwtaaxbts"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:arrows-left-right-above-waters" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/b/bo1qmrsci.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="bo1qmrsci"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:campsite-on-pier-in-water" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/f/f1r3n6bhi.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="f1r3n6bhi"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:campsite-on-platform" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/g/g73be5v_d.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="g73be5v_d"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:campsite-over-water" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/o/oyqpj5b7d.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="oyqpj5b7d"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:campsite-over-waters" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/a/ai-hwv_fk.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="ai-hwv_fk"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:exclamation-point-beside-exclamation-point" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/k/kihstx6sx.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="kihstx6sx"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:exclamation-point-beside-question-mark" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/x/xqb-0_4ig.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="xqb-0_4ig"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:exclamation-point" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nx0w5hfep.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="nx0w5hfep"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:flush-curb-under-shoe" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/f/f4wwjh5bh.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="f4wwjh5bh"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:flush-curb-with-arrow-right" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/r/rz4ck4-4i.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="rz4ck4-4i"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:flush-curb-with-question-mark" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/f/fwpj51bzm.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="fwpj51bzm"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:flush-curb" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/o/oembw3b6n.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="oembw3b6n"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:lowered-curb-under-shoe" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/r/rnpvry6wl.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="rnpvry6wl"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:lowered-curb-with-arrow-bottom-right" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/d/d1uxt3j4p.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="d1uxt3j4p"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:lowered-curb-with-question-mark" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/c/coq_vclzo.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="coq_vclzo"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:lowered-curb" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/j/jtekpbcxt.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="jtekpbcxt"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:person-holding-open-book-profile" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/l/lk136onmn.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="lk136onmn"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:question-mark" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/i/i5_k12b9p.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="i5_k12b9p"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:raised-curb-under-shoe" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/e/eohem2u0z.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="eohem2u0z"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:raised-curb-with-arrow-down" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/s/sceiphbpt.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="sceiphbpt"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:raised-curb-with-question-mark" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/w/w59onrtks.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="w59onrtks"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:raised-curb" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/o/owpzdlbkl.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="owpzdlbkl"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:rolled-curb-under-shoe" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/d/dsokvoiit.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="dsokvoiit"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:rolled-curb-with-arrow-bottom-right" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/b/bqu27-g1n.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="bqu27-g1n"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:rolled-curb-with-question-mark" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/a/auvszdnuf.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="auvszdnuf"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:rolled-curb" {...props}></Icon>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.bo1qmrsci {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12.5 12.5c.32 0 .64.11.89.31l.32.26c.3.24.68.39 1.07.43H15V15h-.05c-.46 0-.89-.16-1.24-.44l-.32-.25a1.44 1.44 0 0 0-1.78 0l-.31.25c-.36.28-.8.44-1.25.44h-.1c-.45 0-.89-.16-1.25-.44l-.31-.25a1.44 1.44 0 0 0-1.78 0l-.31.25c-.36.28-.8.44-1.25.44h-.1c-.45 0-.89-.16-1.25-.44l-.31-.25a1.44 1.44 0 0 0-1.78 0l-.32.25c-.3.25-.68.4-1.07.43L0 15v-1.5h.05c.46 0 .89-.15 1.24-.43l.32-.26a1.44 1.44 0 0 1 1.78 0l.31.25q.24.195.51.3l.12.04l.07.02l.11.03l.07.02c.06.01.12.02.18.02l.19.01h.18l.16-.02h.07c.34-.06.67-.2.94-.42l.31-.25a1.44 1.44 0 0 1 1.78 0l.31.25c.29.23.63.38 1 .42l.09.01l.16.01h.1l.19-.01l.18-.02l.07-.02l.1-.02l.09-.03l.1-.04l.06-.02c.16-.07.32-.17.46-.28l.31-.25c.25-.2.57-.31.89-.31M13 10v1.5h-2v.84l-.17.14c-.22.17-.5.27-.78.27h-.1c-.16 0-.31-.03-.45-.08V11.5h-4v1.17c-.14.05-.29.08-.45.08h-.1c-.28 0-.56-.1-.78-.27L4 12.34v-.84H2V10zM7.88.21l3.86 7.15h.51c.28 0 .5.23.5.5v.64c0 .27-.22.5-.5.5h-9.5c-.28 0-.5-.23-.5-.5v-.64c0-.27.22-.5.5-.5h.51L7.12.21c.18-.28.58-.28.76 0M7.5 3.27L5.48 7.36h4.04z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.bqu27-g1n {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M15 11v3h-5v-3zM0 5c4.88 0 8.86 3.89 9 8.73V14H0zm12.5.5c.55 0 1 .45 1 1s-.45 1-1 1s-1-.45-1-1s.45-1 1-1m2.5-3c0 .83-.67 1.5-1.5 1.5c-.15 0-.28.1-.33.24l-.17.51h-1v-.74c0-.44.32-.81.75-.88l.26-.05a.59.59 0 0 0 .49-.58c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5c0 .41-.34.75-.75.75S10 2.91 10 2.5c0-1.1.9-2 2-2h1c1.1 0 2 .9 2 2");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.d1uxt3j4p {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M15 11v3h-5v-3zM0 4.5L9 11v3H0zm12.5 1c.55 0 1 .45 1 1s-.45 1-1 1s-1-.45-1-1s.45-1 1-1m2.5-3c0 .83-.67 1.5-1.5 1.5c-.15 0-.28.1-.33.24l-.17.51h-1v-.74c0-.44.32-.81.75-.88l.26-.05a.59.59 0 0 0 .49-.58c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5c0 .41-.34.75-.75.75S10 2.91 10 2.5c0-1.1.9-2 2-2h1c1.1 0 2 .9 2 2");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.dwtaaxbts {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12.5 9.5c.32 0 .64.11.89.31l.32.25c.3.25.68.4 1.07.43l.22.01V12h-.05c-.46 0-.89-.16-1.24-.44l-.32-.25a1.44 1.44 0 0 0-1.78 0l-.31.25c-.36.28-.8.44-1.25.44h-.1c-.45 0-.89-.16-1.25-.44l-.31-.25a1.44 1.44 0 0 0-1.78 0l-.31.25c-.36.28-.8.44-1.25.44h-.1c-.45 0-.89-.16-1.25-.44l-.31-.25a1.44 1.44 0 0 0-1.78 0l-.32.25c-.3.25-.68.4-1.07.43L0 12v-1.5h.05c.46 0 .89-.15 1.24-.44l.32-.25a1.44 1.44 0 0 1 1.78 0l.31.25c.36.28.8.44 1.25.44h.1c.45 0 .89-.16 1.25-.44l.31-.25a1.44 1.44 0 0 1 1.78 0l.31.25c.36.28.8.44 1.25.44h.1c.45 0 .89-.16 1.25-.44l.31-.25c.25-.2.57-.31.89-.31m0 3c.32 0 .64.11.89.31l.32.26c.3.24.68.39 1.07.43H15V15h-.05c-.46 0-.89-.16-1.24-.44l-.32-.25a1.44 1.44 0 0 0-1.78 0l-.31.25c-.36.28-.8.44-1.25.44h-.1c-.45 0-.89-.16-1.25-.44l-.31-.25a1.44 1.44 0 0 0-1.78 0l-.31.25c-.36.28-.8.44-1.25.44h-.1c-.45 0-.89-.16-1.25-.44l-.31-.25a1.44 1.44 0 0 0-1.78 0l-.32.25c-.3.25-.68.4-1.07.43L0 15v-1.5h.05c.46 0 .89-.15 1.24-.43l.32-.26a1.44 1.44 0 0 1 1.78 0l.31.25c.36.29.8.44 1.25.44h.1c.45 0 .89-.15 1.25-.44l.31-.25a1.44 1.44 0 0 1 1.78 0l.31.25c.36.29.8.44 1.25.44h.1c.45 0 .89-.15 1.25-.44l.31-.25c.25-.2.57-.31.89-.31M5.5 0l-5 4l5 4V5.5h4V8l5-4l-5-4v2.5h-4z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.g73be5v_d {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12.75 7.86v.64c0 .27-.22.5-.5.5h-9.5c-.28 0-.5-.23-.5-.5v-.64c0-.27.22-.5.5-.5h.51L7.12.21c.18-.28.58-.28.76 0l3.86 7.15h.51c.25 0 .45.18.49.41zm-3.23-.5L7.5 3.27L5.48 7.36zM12 10c.67 1.33 1.42 2 2.25 2c.26 0 .51-.06.75-.19v2.05c-.24.09-.49.14-.75.14q-1.245 0-2.25-1.5Q10.995 14 9.75 14T7.5 12.5Q6.495 14 5.25 14T3 12.5Q1.995 14 .75 14c-.26 0-.51-.05-.75-.14v-2.05c.24.13.49.19.75.19c.83 0 1.58-.67 2.25-2c.67 1.33 1.42 2 2.25 2s1.58-.67 2.25-2c.67 1.33 1.42 2 2.25 2s1.58-.67 2.25-2");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.kihstx6sx {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M2.5 11c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2M5 .25H0L1.5 9.5h2zM10.5 11c1.1 0 2 .9 2 2s-.9 2-2 2s-2-.9-2-2s.9-2 2-2M15 4c0 1.24-.66 2.38-1.74 2.99l-.75.43c-.63.36-1.01 1.02-1.01 1.74v.34h-2V8.15c0-.86.48-1.64 1.25-2.02l.14-.08A2 2 0 0 0 12 4.26V4l-.05-.11c-.28-.54-.84-.89-1.45-.89s-1.17.35-1.45.89L9 4c0 .83-.67 1.5-1.5 1.5S6 4.83 6 4c0-2.21 1.79-4 4-4h1c2.21 0 4 1.79 4 4");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.lk136onmn {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M7.5 11c1.1 0 2 .9 2 2s-.9 2-2 2s-2-.9-2-2s.9-2 2-2M12 4c0 1.24-.66 2.38-1.74 2.99l-.75.43c-.63.36-1.01 1.02-1.01 1.74v.34h-2V8.15c0-.86.48-1.64 1.25-2.02l.14-.08A2 2 0 0 0 9 4.26V4l-.05-.11C8.67 3.35 8.11 3 7.5 3s-1.17.35-1.45.89L6 4c0 .83-.67 1.5-1.5 1.5S3 4.83 3 4c0-2.21 1.79-4 4-4h1c2.21 0 4 1.79 4 4");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.oyqpj5b7d {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12.5 10c.32 0 .64.11.89.31l.32.25c.3.25.68.4 1.07.43L15 11v1.5h-.05c-.46 0-.89-.16-1.24-.44l-.32-.25a1.44 1.44 0 0 0-1.78 0l-.31.25c-.36.28-.8.44-1.25.44h-.1c-.45 0-.89-.16-1.25-.44l-.31-.25a1.44 1.44 0 0 0-1.78 0l-.31.25c-.36.28-.8.44-1.25.44h-.1c-.45 0-.89-.16-1.25-.44l-.31-.25a1.44 1.44 0 0 0-1.78 0l-.32.25c-.3.25-.68.4-1.07.43L0 12.5V11h.05c.46 0 .89-.15 1.24-.44l.32-.25a1.44 1.44 0 0 1 1.78 0l.31.25c.36.28.8.44 1.25.44h.1c.45 0 .89-.16 1.25-.44l.31-.25a1.44 1.44 0 0 1 1.78 0l.31.25c.36.28.8.44 1.25.44h.1c.45 0 .89-.16 1.25-.44l.31-.25c.25-.2.57-.31.89-.31m0 2.5c.32 0 .64.11.89.31l.32.26c.3.24.68.39 1.07.43H15V15h-.05c-.46 0-.89-.16-1.24-.44l-.32-.25a1.44 1.44 0 0 0-1.78 0l-.31.25c-.36.28-.8.44-1.25.44h-.1c-.45 0-.89-.16-1.25-.44l-.31-.25a1.44 1.44 0 0 0-1.78 0l-.31.25c-.36.28-.8.44-1.25.44h-.1c-.45 0-.89-.16-1.25-.44l-.31-.25a1.44 1.44 0 0 0-1.78 0l-.32.25c-.3.25-.68.4-1.07.43L0 15v-1.5h.05c.46 0 .89-.15 1.24-.43l.32-.26a1.44 1.44 0 0 1 1.78 0l.31.25c.36.29.8.44 1.25.44h.1c.45 0 .89-.15 1.25-.44l.31-.25a1.44 1.44 0 0 1 1.78 0l.31.25c.36.29.8.44 1.25.44h.1c.45 0 .89-.15 1.25-.44l.31-.25c.25-.2.57-.31.89-.31m.25-4.64v.64c0 .27-.22.5-.5.5h-9.5c-.28 0-.5-.23-.5-.5v-.64c0-.27.22-.5.5-.5h.51L7.12.21c.18-.28.58-.28.76 0l3.86 7.15h.51c.25 0 .45.18.49.41zm-3.23-.5L7.5 3.27L5.48 7.36z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.rz4ck4-4i {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M10 11h5v3h-5zM0 11h9v3H0zm12.5-5.5c.55 0 1 .45 1 1s-.45 1-1 1s-1-.45-1-1s.45-1 1-1m2.5-3c0 .83-.67 1.5-1.5 1.5c-.15 0-.28.1-.33.24l-.17.51h-1v-.74c0-.44.32-.81.75-.88l.26-.05a.59.59 0 0 0 .49-.58c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5c0 .41-.34.75-.75.75S10 2.91 10 2.5c0-1.1.9-2 2-2h1c1.1 0 2 .9 2 2");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.sceiphbpt {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M15 11v3h-5v-3zM9 7v7H0V7zm3.5-1.5c.55 0 1 .45 1 1s-.45 1-1 1s-1-.45-1-1s.45-1 1-1m2.5-3c0 .83-.67 1.5-1.5 1.5c-.15 0-.28.1-.33.24l-.17.51h-1v-.74c0-.44.32-.81.75-.88l.26-.05a.59.59 0 0 0 .49-.58c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5c0 .41-.34.75-.75.75S10 2.91 10 2.5c0-1.1.9-2 2-2h1c1.1 0 2 .9 2 2");
|
|
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": 1996,
|
|
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": 1779514389
|
|
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.1",
|
|
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",
|
|
@@ -254,6 +254,10 @@
|
|
|
254
254
|
"types": "./types/gfwqskkx.d.ts",
|
|
255
255
|
"svelte": "./components/a/arrow-down-from-payment-card-in-slot.svelte"
|
|
256
256
|
},
|
|
257
|
+
"./arrow-down-from-rectangle-outline": {
|
|
258
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
259
|
+
"svelte": "./components/a/arrow-down-from-rectangle-outline.svelte"
|
|
260
|
+
},
|
|
257
261
|
"./arrow-down-from-ticket-in-slot": {
|
|
258
262
|
"types": "./types/gfwqskkx.d.ts",
|
|
259
263
|
"svelte": "./components/a/arrow-down-from-ticket-in-slot.svelte"
|
|
@@ -266,10 +270,18 @@
|
|
|
266
270
|
"types": "./types/gfwqskkx.d.ts",
|
|
267
271
|
"svelte": "./components/a/arrow-down-to-down-bracket.svelte"
|
|
268
272
|
},
|
|
273
|
+
"./arrow-down-to-rectangle-outline": {
|
|
274
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
275
|
+
"svelte": "./components/a/arrow-down-to-rectangle-outline.svelte"
|
|
276
|
+
},
|
|
269
277
|
"./arrow-left": {
|
|
270
278
|
"types": "./types/gfwqskkx.d.ts",
|
|
271
279
|
"svelte": "./components/a/arrow-left.svelte"
|
|
272
280
|
},
|
|
281
|
+
"./arrow-left-from-rectangle-tall-outline": {
|
|
282
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
283
|
+
"svelte": "./components/a/arrow-left-from-rectangle-tall-outline.svelte"
|
|
284
|
+
},
|
|
273
285
|
"./arrow-left-from-right-bracket": {
|
|
274
286
|
"types": "./types/gfwqskkx.d.ts",
|
|
275
287
|
"svelte": "./components/a/arrow-left-from-right-bracket.svelte"
|
|
@@ -278,6 +290,10 @@
|
|
|
278
290
|
"types": "./types/gfwqskkx.d.ts",
|
|
279
291
|
"svelte": "./components/a/arrow-left-to-left-bracket.svelte"
|
|
280
292
|
},
|
|
293
|
+
"./arrow-left-to-rectangle-tall-outline": {
|
|
294
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
295
|
+
"svelte": "./components/a/arrow-left-to-rectangle-tall-outline.svelte"
|
|
296
|
+
},
|
|
281
297
|
"./arrow-right": {
|
|
282
298
|
"types": "./types/gfwqskkx.d.ts",
|
|
283
299
|
"svelte": "./components/a/arrow-right.svelte"
|
|
@@ -286,6 +302,14 @@
|
|
|
286
302
|
"types": "./types/gfwqskkx.d.ts",
|
|
287
303
|
"svelte": "./components/a/arrow-right-from-left-bracket.svelte"
|
|
288
304
|
},
|
|
305
|
+
"./arrow-right-from-rectangle-tall-outline": {
|
|
306
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
307
|
+
"svelte": "./components/a/arrow-right-from-rectangle-tall-outline.svelte"
|
|
308
|
+
},
|
|
309
|
+
"./arrow-right-to-rectangle-tall-outline": {
|
|
310
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
311
|
+
"svelte": "./components/a/arrow-right-to-rectangle-tall-outline.svelte"
|
|
312
|
+
},
|
|
289
313
|
"./arrow-right-to-right-bracket": {
|
|
290
314
|
"types": "./types/gfwqskkx.d.ts",
|
|
291
315
|
"svelte": "./components/a/arrow-right-to-right-bracket.svelte"
|
|
@@ -310,6 +334,10 @@
|
|
|
310
334
|
"types": "./types/gfwqskkx.d.ts",
|
|
311
335
|
"svelte": "./components/a/arrow-up-from-down-bracket.svelte"
|
|
312
336
|
},
|
|
337
|
+
"./arrow-up-from-rectangle-outline": {
|
|
338
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
339
|
+
"svelte": "./components/a/arrow-up-from-rectangle-outline.svelte"
|
|
340
|
+
},
|
|
313
341
|
"./arrow-up-to-banknote-in-slot": {
|
|
314
342
|
"types": "./types/gfwqskkx.d.ts",
|
|
315
343
|
"svelte": "./components/a/arrow-up-to-banknote-in-slot.svelte"
|
|
@@ -326,6 +354,10 @@
|
|
|
326
354
|
"types": "./types/gfwqskkx.d.ts",
|
|
327
355
|
"svelte": "./components/a/arrow-up-to-payment-card-in-slot.svelte"
|
|
328
356
|
},
|
|
357
|
+
"./arrow-up-to-rectangle-outline": {
|
|
358
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
359
|
+
"svelte": "./components/a/arrow-up-to-rectangle-outline.svelte"
|
|
360
|
+
},
|
|
329
361
|
"./arrow-up-to-ticket-in-slot": {
|
|
330
362
|
"types": "./types/gfwqskkx.d.ts",
|
|
331
363
|
"svelte": "./components/a/arrow-up-to-ticket-in-slot.svelte"
|
|
@@ -342,6 +374,10 @@
|
|
|
342
374
|
"types": "./types/gfwqskkx.d.ts",
|
|
343
375
|
"svelte": "./components/a/arrows-left-right-above-water.svelte"
|
|
344
376
|
},
|
|
377
|
+
"./arrows-left-right-above-waters": {
|
|
378
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
379
|
+
"svelte": "./components/a/arrows-left-right-above-waters.svelte"
|
|
380
|
+
},
|
|
345
381
|
"./arrows-recirculating": {
|
|
346
382
|
"types": "./types/gfwqskkx.d.ts",
|
|
347
383
|
"svelte": "./components/a/arrows-recirculating.svelte"
|
|
@@ -1074,6 +1110,22 @@
|
|
|
1074
1110
|
"types": "./types/gfwqskkx.d.ts",
|
|
1075
1111
|
"svelte": "./components/c/campsite-and-wifi.svelte"
|
|
1076
1112
|
},
|
|
1113
|
+
"./campsite-on-pier-in-water": {
|
|
1114
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
1115
|
+
"svelte": "./components/c/campsite-on-pier-in-water.svelte"
|
|
1116
|
+
},
|
|
1117
|
+
"./campsite-on-platform": {
|
|
1118
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
1119
|
+
"svelte": "./components/c/campsite-on-platform.svelte"
|
|
1120
|
+
},
|
|
1121
|
+
"./campsite-over-water": {
|
|
1122
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
1123
|
+
"svelte": "./components/c/campsite-over-water.svelte"
|
|
1124
|
+
},
|
|
1125
|
+
"./campsite-over-waters": {
|
|
1126
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
1127
|
+
"svelte": "./components/c/campsite-over-waters.svelte"
|
|
1128
|
+
},
|
|
1077
1129
|
"./campsite-with-canoe": {
|
|
1078
1130
|
"types": "./types/gfwqskkx.d.ts",
|
|
1079
1131
|
"svelte": "./components/c/campsite-with-canoe.svelte"
|
|
@@ -2270,6 +2322,14 @@
|
|
|
2270
2322
|
"types": "./types/gfwqskkx.d.ts",
|
|
2271
2323
|
"svelte": "./components/e/exclamation-point.svelte"
|
|
2272
2324
|
},
|
|
2325
|
+
"./exclamation-point-beside-exclamation-point": {
|
|
2326
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
2327
|
+
"svelte": "./components/e/exclamation-point-beside-exclamation-point.svelte"
|
|
2328
|
+
},
|
|
2329
|
+
"./exclamation-point-beside-question-mark": {
|
|
2330
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
2331
|
+
"svelte": "./components/e/exclamation-point-beside-question-mark.svelte"
|
|
2332
|
+
},
|
|
2273
2333
|
"./eye": {
|
|
2274
2334
|
"types": "./types/gfwqskkx.d.ts",
|
|
2275
2335
|
"svelte": "./components/e/eye.svelte"
|
|
@@ -2526,6 +2586,22 @@
|
|
|
2526
2586
|
"types": "./types/gfwqskkx.d.ts",
|
|
2527
2587
|
"svelte": "./components/f/flower-bouquet.svelte"
|
|
2528
2588
|
},
|
|
2589
|
+
"./flush-curb": {
|
|
2590
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
2591
|
+
"svelte": "./components/f/flush-curb.svelte"
|
|
2592
|
+
},
|
|
2593
|
+
"./flush-curb-under-shoe": {
|
|
2594
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
2595
|
+
"svelte": "./components/f/flush-curb-under-shoe.svelte"
|
|
2596
|
+
},
|
|
2597
|
+
"./flush-curb-with-arrow-right": {
|
|
2598
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
2599
|
+
"svelte": "./components/f/flush-curb-with-arrow-right.svelte"
|
|
2600
|
+
},
|
|
2601
|
+
"./flush-curb-with-question-mark": {
|
|
2602
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
2603
|
+
"svelte": "./components/f/flush-curb-with-question-mark.svelte"
|
|
2604
|
+
},
|
|
2529
2605
|
"./flying-saucer": {
|
|
2530
2606
|
"types": "./types/gfwqskkx.d.ts",
|
|
2531
2607
|
"svelte": "./components/f/flying-saucer.svelte"
|
|
@@ -3230,38 +3306,6 @@
|
|
|
3230
3306
|
"types": "./types/gfwqskkx.d.ts",
|
|
3231
3307
|
"svelte": "./components/k/kentucky-with-capital-star.svelte"
|
|
3232
3308
|
},
|
|
3233
|
-
"./kerb-flush": {
|
|
3234
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
3235
|
-
"svelte": "./components/k/kerb-flush.svelte"
|
|
3236
|
-
},
|
|
3237
|
-
"./kerb-flush-under-shoe": {
|
|
3238
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
3239
|
-
"svelte": "./components/k/kerb-flush-under-shoe.svelte"
|
|
3240
|
-
},
|
|
3241
|
-
"./kerb-lowered": {
|
|
3242
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
3243
|
-
"svelte": "./components/k/kerb-lowered.svelte"
|
|
3244
|
-
},
|
|
3245
|
-
"./kerb-lowered-under-shoe": {
|
|
3246
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
3247
|
-
"svelte": "./components/k/kerb-lowered-under-shoe.svelte"
|
|
3248
|
-
},
|
|
3249
|
-
"./kerb-raised": {
|
|
3250
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
3251
|
-
"svelte": "./components/k/kerb-raised.svelte"
|
|
3252
|
-
},
|
|
3253
|
-
"./kerb-raised-under-shoe": {
|
|
3254
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
3255
|
-
"svelte": "./components/k/kerb-raised-under-shoe.svelte"
|
|
3256
|
-
},
|
|
3257
|
-
"./kerb-rolled": {
|
|
3258
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
3259
|
-
"svelte": "./components/k/kerb-rolled.svelte"
|
|
3260
|
-
},
|
|
3261
|
-
"./kerb-rolled-under-shoe": {
|
|
3262
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
3263
|
-
"svelte": "./components/k/kerb-rolled-under-shoe.svelte"
|
|
3264
|
-
},
|
|
3265
3309
|
"./key": {
|
|
3266
3310
|
"types": "./types/gfwqskkx.d.ts",
|
|
3267
3311
|
"svelte": "./components/k/key.svelte"
|
|
@@ -3474,6 +3518,22 @@
|
|
|
3474
3518
|
"types": "./types/gfwqskkx.d.ts",
|
|
3475
3519
|
"svelte": "./components/l/low-shrub.svelte"
|
|
3476
3520
|
},
|
|
3521
|
+
"./lowered-curb": {
|
|
3522
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
3523
|
+
"svelte": "./components/l/lowered-curb.svelte"
|
|
3524
|
+
},
|
|
3525
|
+
"./lowered-curb-under-shoe": {
|
|
3526
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
3527
|
+
"svelte": "./components/l/lowered-curb-under-shoe.svelte"
|
|
3528
|
+
},
|
|
3529
|
+
"./lowered-curb-with-arrow-bottom-right": {
|
|
3530
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
3531
|
+
"svelte": "./components/l/lowered-curb-with-arrow-bottom-right.svelte"
|
|
3532
|
+
},
|
|
3533
|
+
"./lowered-curb-with-question-mark": {
|
|
3534
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
3535
|
+
"svelte": "./components/l/lowered-curb-with-question-mark.svelte"
|
|
3536
|
+
},
|
|
3477
3537
|
"./lowrise-building": {
|
|
3478
3538
|
"types": "./types/gfwqskkx.d.ts",
|
|
3479
3539
|
"svelte": "./components/l/lowrise-building.svelte"
|
|
@@ -4602,6 +4662,10 @@
|
|
|
4602
4662
|
"types": "./types/gfwqskkx.d.ts",
|
|
4603
4663
|
"svelte": "./components/p/person-holding-open-book.svelte"
|
|
4604
4664
|
},
|
|
4665
|
+
"./person-holding-open-book-profile": {
|
|
4666
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
4667
|
+
"svelte": "./components/p/person-holding-open-book-profile.svelte"
|
|
4668
|
+
},
|
|
4605
4669
|
"./person-holding-shopping-bags-walking": {
|
|
4606
4670
|
"types": "./types/gfwqskkx.d.ts",
|
|
4607
4671
|
"svelte": "./components/p/person-holding-shopping-bags-walking.svelte"
|
|
@@ -5634,6 +5698,10 @@
|
|
|
5634
5698
|
"types": "./types/gfwqskkx.d.ts",
|
|
5635
5699
|
"svelte": "./components/q/quay.svelte"
|
|
5636
5700
|
},
|
|
5701
|
+
"./question-mark": {
|
|
5702
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
5703
|
+
"svelte": "./components/q/question-mark.svelte"
|
|
5704
|
+
},
|
|
5637
5705
|
"./r": {
|
|
5638
5706
|
"types": "./types/gfwqskkx.d.ts",
|
|
5639
5707
|
"svelte": "./components/r/r.svelte"
|
|
@@ -5706,6 +5774,22 @@
|
|
|
5706
5774
|
"types": "./types/gfwqskkx.d.ts",
|
|
5707
5775
|
"svelte": "./components/r/railway-track-partial.svelte"
|
|
5708
5776
|
},
|
|
5777
|
+
"./raised-curb": {
|
|
5778
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
5779
|
+
"svelte": "./components/r/raised-curb.svelte"
|
|
5780
|
+
},
|
|
5781
|
+
"./raised-curb-under-shoe": {
|
|
5782
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
5783
|
+
"svelte": "./components/r/raised-curb-under-shoe.svelte"
|
|
5784
|
+
},
|
|
5785
|
+
"./raised-curb-with-arrow-down": {
|
|
5786
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
5787
|
+
"svelte": "./components/r/raised-curb-with-arrow-down.svelte"
|
|
5788
|
+
},
|
|
5789
|
+
"./raised-curb-with-question-mark": {
|
|
5790
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
5791
|
+
"svelte": "./components/r/raised-curb-with-question-mark.svelte"
|
|
5792
|
+
},
|
|
5709
5793
|
"./ranger-hat": {
|
|
5710
5794
|
"types": "./types/gfwqskkx.d.ts",
|
|
5711
5795
|
"svelte": "./components/r/ranger-hat.svelte"
|
|
@@ -5778,6 +5862,22 @@
|
|
|
5778
5862
|
"types": "./types/gfwqskkx.d.ts",
|
|
5779
5863
|
"svelte": "./components/r/rocking-horse.svelte"
|
|
5780
5864
|
},
|
|
5865
|
+
"./rolled-curb": {
|
|
5866
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
5867
|
+
"svelte": "./components/r/rolled-curb.svelte"
|
|
5868
|
+
},
|
|
5869
|
+
"./rolled-curb-under-shoe": {
|
|
5870
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
5871
|
+
"svelte": "./components/r/rolled-curb-under-shoe.svelte"
|
|
5872
|
+
},
|
|
5873
|
+
"./rolled-curb-with-arrow-bottom-right": {
|
|
5874
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
5875
|
+
"svelte": "./components/r/rolled-curb-with-arrow-bottom-right.svelte"
|
|
5876
|
+
},
|
|
5877
|
+
"./rolled-curb-with-question-mark": {
|
|
5878
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
5879
|
+
"svelte": "./components/r/rolled-curb-with-question-mark.svelte"
|
|
5880
|
+
},
|
|
5781
5881
|
"./rolled-paper-in-bottle": {
|
|
5782
5882
|
"types": "./types/gfwqskkx.d.ts",
|
|
5783
5883
|
"svelte": "./components/r/rolled-paper-in-bottle.svelte"
|
|
@@ -7890,6 +7990,38 @@
|
|
|
7890
7990
|
"types": "./types/gfwqskkx.d.ts",
|
|
7891
7991
|
"svelte": "./components/z/zero-with-slash-over-water.svelte"
|
|
7892
7992
|
},
|
|
7993
|
+
"./kerb-flush": {
|
|
7994
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7995
|
+
"svelte": "./components/k/kerb-flush.svelte"
|
|
7996
|
+
},
|
|
7997
|
+
"./kerb-flush-under-shoe": {
|
|
7998
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7999
|
+
"svelte": "./components/k/kerb-flush-under-shoe.svelte"
|
|
8000
|
+
},
|
|
8001
|
+
"./kerb-lowered": {
|
|
8002
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
8003
|
+
"svelte": "./components/k/kerb-lowered.svelte"
|
|
8004
|
+
},
|
|
8005
|
+
"./kerb-lowered-under-shoe": {
|
|
8006
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
8007
|
+
"svelte": "./components/k/kerb-lowered-under-shoe.svelte"
|
|
8008
|
+
},
|
|
8009
|
+
"./kerb-raised": {
|
|
8010
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
8011
|
+
"svelte": "./components/k/kerb-raised.svelte"
|
|
8012
|
+
},
|
|
8013
|
+
"./kerb-raised-under-shoe": {
|
|
8014
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
8015
|
+
"svelte": "./components/k/kerb-raised-under-shoe.svelte"
|
|
8016
|
+
},
|
|
8017
|
+
"./kerb-rolled": {
|
|
8018
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
8019
|
+
"svelte": "./components/k/kerb-rolled.svelte"
|
|
8020
|
+
},
|
|
8021
|
+
"./kerb-rolled-under-shoe": {
|
|
8022
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
8023
|
+
"svelte": "./components/k/kerb-rolled-under-shoe.svelte"
|
|
8024
|
+
},
|
|
7893
8025
|
"./*": "./*"
|
|
7894
8026
|
},
|
|
7895
8027
|
"dependencies": {
|
package/css/i/if65e3bts.css
DELETED