@iconify-svelte/pinhead 1.0.22 → 1.0.23

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.
Files changed (52) hide show
  1. package/components/b/book-stack.svelte +11 -0
  2. package/components/c/coffin-with-exclamation-point.svelte +11 -0
  3. package/components/c/coffin-with-question-mark.svelte +11 -0
  4. package/components/d/dog-sitting-and-exclamation-point.svelte +2 -2
  5. package/components/d/dog-sitting-and-question-mark.svelte +11 -0
  6. package/components/d/dog-sitting-wearing-collar-and-exclamation-point.svelte +2 -2
  7. package/components/d/dog-sitting-wearing-collar-and-question-mark.svelte +11 -0
  8. package/components/d/droplet-beside-exclamation-point.svelte +11 -0
  9. package/components/d/droplet-beside-question-mark.svelte +11 -0
  10. package/components/d/droplet-with-exclamation-point.svelte +11 -0
  11. package/components/d/droplet-with-question-mark.svelte +11 -0
  12. package/components/e/exclamation-point-on-square.svelte +11 -0
  13. package/components/f/flush-curb-with-exclamation-point.svelte +11 -0
  14. package/components/g/gull-and-question-mark.svelte +11 -0
  15. package/components/h/hairy-caterpillar-and-question-mark.svelte +11 -0
  16. package/components/l/lowered-curb-with-exclamation-point.svelte +11 -0
  17. package/components/m/memorial-stone-with-exclamation-point.svelte +11 -0
  18. package/components/m/memorial-stone-with-question-mark.svelte +11 -0
  19. package/components/p/phone-right-beside-exclamation-point.svelte +11 -0
  20. package/components/p/phone-right-beside-question-mark.svelte +11 -0
  21. package/components/q/question-mark-on-square.svelte +11 -0
  22. package/components/r/raised-curb-with-exclamation-point.svelte +11 -0
  23. package/components/r/rolled-curb-with-exclamation-point.svelte +11 -0
  24. package/components/w/wolf-head-and-exclamation-point.svelte +2 -2
  25. package/components/w/wolf-head-and-question-mark.svelte +11 -0
  26. package/css/a/a6m9uabxg.css +4 -0
  27. package/css/a/arialvbwj.css +4 -0
  28. package/css/b/bchglacsa.css +4 -0
  29. package/css/c/cljdfj5ex.css +4 -0
  30. package/css/e/esgoklb7j.css +4 -0
  31. package/css/f/fxrt52mwa.css +4 -0
  32. package/css/h/hlxc--bra.css +4 -0
  33. package/css/h/hssezr-nb.css +4 -0
  34. package/css/h/htrmdw6ic.css +4 -0
  35. package/css/j/jdri55zjs.css +4 -0
  36. package/css/{p/pntio1bet.css → k/kdlysac4f.css} +2 -2
  37. package/css/k/kuaurdb1s.css +4 -0
  38. package/css/m/m3gyipbkp.css +4 -0
  39. package/css/m/mcl98g9-s.css +4 -0
  40. package/css/n/nuzx80lqc.css +4 -0
  41. package/css/o/o81h3dbhb.css +4 -0
  42. package/css/r/r4knz0mmr.css +4 -0
  43. package/css/t/tf_ta3b0v.css +4 -0
  44. package/css/v/v7piy7bcs.css +4 -0
  45. package/css/x/x_blhsbzq.css +4 -0
  46. package/css/x/xu2ujfbuq.css +4 -0
  47. package/css/y/yoqn4k-mt.css +4 -0
  48. package/css/y/ypfau-f-d.css +4 -0
  49. package/css/{b/bfypw3b4d.css → z/z7utfjroc.css} +2 -2
  50. package/iconify.json +2 -2
  51. package/package.json +93 -5
  52. package/css/w/wqrcn0bja.css +0 -4
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/h/hqybjnb0a.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="hqybjnb0a"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:book-stack" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/x/x_blhsbzq.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="x_blhsbzq"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:coffin-with-exclamation-point" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/t/tf_ta3b0v.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="tf_ta3b0v"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:coffin-with-question-mark" {...props}></Icon>
@@ -1,11 +1,11 @@
1
1
  <script>
2
2
  import Icon from '@iconify/css-svelte';
3
- import '../../css/b/bfypw3b4d.css';
3
+ import '../../css/z/z7utfjroc.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="bfypw3b4d"/>`;
9
+ const content = `<path class="z7utfjroc"/>`;
10
10
  </script>
11
11
  <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:dog-sitting-and-exclamation-point" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/m/m3gyipbkp.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="m3gyipbkp"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:dog-sitting-and-question-mark" {...props}></Icon>
@@ -1,11 +1,11 @@
1
1
  <script>
2
2
  import Icon from '@iconify/css-svelte';
3
- import '../../css/p/pntio1bet.css';
3
+ import '../../css/k/kdlysac4f.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="pntio1bet"/>`;
9
+ const content = `<path class="kdlysac4f"/>`;
10
10
  </script>
11
11
  <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:dog-sitting-wearing-collar-and-exclamation-point" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/n/nuzx80lqc.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="nuzx80lqc"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:dog-sitting-wearing-collar-and-question-mark" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/a/arialvbwj.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="arialvbwj"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:droplet-beside-exclamation-point" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/c/cljdfj5ex.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="cljdfj5ex"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:droplet-beside-question-mark" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/m/mcl98g9-s.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="mcl98g9-s"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:droplet-with-exclamation-point" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/b/bchglacsa.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="bchglacsa"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:droplet-with-question-mark" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/j/jdri55zjs.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="jdri55zjs"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:exclamation-point-on-square" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/x/xu2ujfbuq.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="xu2ujfbuq"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:flush-curb-with-exclamation-point" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/v/v7piy7bcs.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="v7piy7bcs"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:gull-and-question-mark" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/k/kuaurdb1s.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="kuaurdb1s"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:hairy-caterpillar-and-question-mark" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/e/esgoklb7j.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="esgoklb7j"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:lowered-curb-with-exclamation-point" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/h/hssezr-nb.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="hssezr-nb"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:memorial-stone-with-exclamation-point" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/r/r4knz0mmr.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="r4knz0mmr"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:memorial-stone-with-question-mark" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/y/ypfau-f-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="ypfau-f-d"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:phone-right-beside-exclamation-point" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/y/yoqn4k-mt.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="yoqn4k-mt"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:phone-right-beside-question-mark" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/f/fxrt52mwa.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="fxrt52mwa"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:question-mark-on-square" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/a/a6m9uabxg.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="a6m9uabxg"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:raised-curb-with-exclamation-point" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/h/htrmdw6ic.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="htrmdw6ic"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:rolled-curb-with-exclamation-point" {...props}></Icon>
@@ -1,11 +1,11 @@
1
1
  <script>
2
2
  import Icon from '@iconify/css-svelte';
3
- import '../../css/w/wqrcn0bja.css';
3
+ import '../../css/o/o81h3dbhb.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="wqrcn0bja"/>`;
9
+ const content = `<path class="o81h3dbhb"/>`;
10
10
  </script>
11
11
  <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:wolf-head-and-exclamation-point" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/h/hlxc--bra.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="hlxc--bra"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:wolf-head-and-question-mark" {...props}></Icon>
@@ -0,0 +1,4 @@
1
+ .a6m9uabxg {
2
+ fill: currentColor;
3
+ d: path("M15 11v3h-5v-3zM9 7v7H0V7zm3.5-1.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1m1.5-5h-3l1 4.25h1z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .arialvbwj {
2
+ fill: currentColor;
3
+ d: path("M5 0c.55 1.69 1.13 3.02 1.71 3.96c.27.42.71 1.02 1.33 1.82l.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.5 5.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1m1.25-5h-2.5L12 4.75h1z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .bchglacsa {
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 11.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1m.5-5H7c-1.1 0-2 .9-2 2l.01.1c.05.36.36.65.74.65c.41 0 .75-.34.75-.75l.01-.09C6.55 8.17 6.75 8 7 8h1c.28 0 .5.22.5.5l-.01.09c-.04.25-.23.45-.48.49l-.26.05c-.43.07-.75.44-.75.88v.74h1l.17-.51c.05-.14.18-.24.33-.24l.14-.01C9.41 9.92 10 9.28 10 8.5c0-1.1-.9-2-2-2");
4
+ }
@@ -0,0 +1,4 @@
1
+ .cljdfj5ex {
2
+ fill: currentColor;
3
+ d: path("M5 0c.55 1.69 1.13 3.02 1.71 3.96c.27.42.71 1.02 1.33 1.82l.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.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
+ .esgoklb7j {
2
+ fill: currentColor;
3
+ d: path("M15 11v3h-5v-3zM0 4.5L9 11v3H0zm12.5 1c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1m1.5-5h-3l1 4.25h1z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .fxrt52mwa {
2
+ fill: currentColor;
3
+ d: path("M4 8h7v7H4zm3.5-2.4c-.66 0-1.2.54-1.2 1.2S6.84 8 7.5 8s1.2-.54 1.2-1.2s-.54-1.2-1.2-1.2m1.72-2.07l-.48.22c-.39.18-.62.52-.62.88v.17H6.88v-.68c0-.4.26-.77.66-.96l.2-.1c.43-.17.69-.53.69-.91v-.12l-.02-.07c-.18-.26-.54-.45-.91-.45s-.73.19-.91.45l-.02.07c0 .41-.42.74-.94.74c-.51 0-.93-.33-.93-.74C4.7.91 5.81 0 7.19 0h.62c1.38 0 2.49.91 2.49 2.03c0 .62-.41 1.2-1.08 1.5");
4
+ }
@@ -0,0 +1,4 @@
1
+ .hlxc--bra {
2
+ fill: currentColor;
3
+ d: path("M9.79 7.27v-.21c0-.45-.2-.89-.56-1.19l-1.29-.99V2.5s-1.18.32-1.8 1.12V2l-.48.17c-.07.02-1.58.58-2.45 2.63L.86 6.24l.77.77L0 8.4v1.48c.67-.66 1.58-1.04 2.53-1.03c.42 0 .84.08 1.22.22c.28-.8 1.02-2.14 2.75-.95c1.7 1.18 3.7 1.79 4.61 2.03l-.24.29c-.12.09-.74.7-1.99.02l-1.99-.89l-1.11 1.79l.82 1.11l-.73 1.1L6.95 15H8.3l-1.1-1.47l.7-1.06l-.8-1.2c.03-.11.21-.38.21-.38l.66.32c2.19 1.3 3.62.05 3.67 0L13 9.59L9.8 7.27zm-1.16.29c-.1.19-.31.25-.5.17l-.71-.36a.38.38 0 0 1-.17-.49c.1-.18.31-.26.49-.16l.72.36c.18.09.25.31.16.48zM15 2c0 .69-.56 1.25-1.25 1.25h-.25c-.15 0-.28.1-.33.24L13 4h-1v-.74c0-.44.32-.81.75-.88l.5-.09A.29.29 0 0 0 13.5 2c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5c0 .41-.34.75-.75.75S10 2.41 10 2c0-1.1.9-2 2-2h1c1.1 0 2 .9 2 2m-2.5 2.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1");
4
+ }
@@ -0,0 +1,4 @@
1
+ .hssezr-nb {
2
+ fill: currentColor;
3
+ d: path("m13.5 13l.5 2H1l.5-2zm-6-13q3 0 4.5 3v9.5H3V3q1.5-3 4.5-3m0 8c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1M9 3H6l1 4.25h1z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .htrmdw6ic {
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 1s1-.45 1-1s-.45-1-1-1m1.5-5h-3l1 4.25h1z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .jdri55zjs {
2
+ fill: currentColor;
3
+ d: path("M4 8h7v7H4zm3.5-2.4c-.66 0-1.2.54-1.2 1.2S6.84 8 7.5 8s1.2-.54 1.2-1.2s-.54-1.2-1.2-1.2M9.3 0H5.7l1.2 4.8h1.2z");
4
+ }
@@ -1,4 +1,4 @@
1
- .pntio1bet {
1
+ .kdlysac4f {
2
2
  fill: currentColor;
3
- d: path("M6.97 6.03L11 10.06v2.73q0 .21.15.36l.7.7q.15.15.15.36v.29c0 .28-.22.5-.5.5h-1.29q-.21 0-.36-.15l-.7-.7Q9 14 9 13.79V11.5c0-.28-.22-.5-.5-.5h-.19c-.19 0-.36.11-.45.28l-.75 1.51c-.07.14-.11.29-.11.45v.01c0 .15.09.29.22.36l.5.25c.17.09.28.26.28.45v.19c0 .28-.22.5-.5.5H3.04c-.67 0-1.3-.26-1.77-.73l-.39-.39C.32 13.32 0 12.55 0 11.76v-.26c0-.94.47-1.81 1.25-2.33L1.5 9v1.88c0 .69.39 1.31 1 1.62c.03-1.31.36-2.47 1-3.5c.57-.9 1.72-1.89 3.47-2.97M10.5 1c.28 0 .5.22.5.5v1.19c0 .19.11.36.28.45l3.27 1.64c.28.13.45.41.45.72v.09c0 .26-.11.52-.29.7L14 7h-2l-.65 1.29l-3.33-3.33l1.84-3.68c.09-.17.26-.28.45-.28zm-7 3.5c.55 0 1 .45 1 1s-.45 1-1 1s-1-.45-1-1s.45-1 1-1M4.75 0L4 3.75H3L2.25 0z");
3
+ d: path("M6.97 6.03L11 10.06v2.73q0 .21.15.36l.7.7q.15.15.15.36v.29c0 .28-.22.5-.5.5h-1.29q-.21 0-.36-.15l-.7-.7Q9 14 9 13.79V11.5c0-.28-.22-.5-.5-.5h-.19c-.19 0-.36.11-.45.28l-.75 1.51c-.07.14-.11.29-.11.45v.01c0 .15.09.29.22.36l.5.25c.17.09.28.26.28.45v.19c0 .28-.22.5-.5.5H3.04c-.67 0-1.3-.26-1.77-.73l-.39-.39C.32 13.32 0 12.55 0 11.76v-.26c0-.94.47-1.81 1.25-2.33L1.5 9v1.88c0 .69.39 1.31 1 1.62c.03-1.31.36-2.47 1-3.5c.57-.9 1.72-1.89 3.47-2.97M10.5 1c.28 0 .5.22.5.5v1.19c0 .19.11.36.28.45l3.27 1.64c.28.13.45.41.45.72v.09c0 .26-.11.52-.29.7L14 7h-2l-.65 1.29l-3.33-3.33l1.84-3.68c.09-.17.26-.28.45-.28zM3.75 0h-2.5L2 4h1zM2.5 4.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1");
4
4
  }
@@ -0,0 +1,4 @@
1
+ .kuaurdb1s {
2
+ fill: currentColor;
3
+ d: path("M14.38 6.21c.34 0 .62-.28.62-.62s-.28-.62-.62-.62h-1.09v-.83h1.02c.34 0 .62-.27.62-.62c0-.34-.28-.62-.62-.62h-1.12l-.09-.19l1.02-1.02c.24-.24.24-.64 0-.88a.63.63 0 0 0-.88 0l-1.03 1.03l-.16-.06V.62a.625.625 0 0 0-1.25 0v1.16l-.16.07L9.62.84a.61.61 0 0 0-.88 0c-.24.24-.25.63 0 .88l1.02 1.01l-.07.18H8.52c-.34 0-.62.27-.62.62c0 .34.28.62.62.62h1.04v.83H8.53c-.34 0-.62.27-.62.62c0 .34.28.62.62.62h1.08c-.01.66-.22 1.31-.59 1.86l-.87-.86a.61.61 0 0 0-.88 0a.61.61 0 0 0 0 .88l.86.86c-.54.37-1.19.59-1.89.59V8.51a.625.625 0 0 0-1.25 0v1.01h-.83V8.43a.625.625 0 1 0-1.25 0V9.6c-.05.02-.12.04-.17.07l-1-1.02a.62.62 0 0 0-.89 0c-.24.25-.24.65 0 .9l1 1.01c-.04.07-.06.13-.09.21H.61c-.34 0-.61.27-.61.62c0 .34.27.62.61.62h1.15c.02.07.05.15.08.22L.83 13.26c-.24.25-.24.65 0 .9c.12.12.28.19.45.19s.33-.07.44-.19l1.02-1.03c.05.03.12.05.18.07v1.16c0 .35.28.64.63.64c.34 0 .62-.29.62-.64v-1.11H5v1.08c0 .35.28.62.62.62c.35 0 .62-.27.62-.62V13.3c.34 0 .67-.04.99-.08l.27 1.01a.63.63 0 0 0 .77.45c.33-.09.53-.43.44-.77l-.26-.98c.23-.07.45-.15.66-.25l.5.85c.11.2.32.32.54.32c.15 0 .3-.06.43-.17c.22-.2.25-.54.1-.8l-.47-.8c.21-.14.41-.3.61-.46l.72.72c.12.12.28.18.45.18c.21 0 .42-.1.54-.31c.15-.25.08-.57-.13-.77l-.7-.7c.16-.19.31-.38.45-.58l.82.47c.18.1.38.11.57.03c.18-.08.31-.24.36-.43c.07-.27-.08-.55-.33-.69l-.82-.47c.1-.22.18-.44.26-.67l.96.26c.2.05.41.01.56-.12a.62.62 0 0 0 .23-.52c0-.27-.22-.5-.49-.57l-.97-.26c.04-.32.08-.64.08-.97h1.01zM6.12 12H3.49c-.34 0-.62-.28-.62-.62s.28-.62.62-.62h2.68c2.56 0 4.63-2.07 4.63-4.61l-.01-2.63c0-.34.27-.62.61-.62h.03c.34 0 .62.28.62.62l.01 2.63C12.06 9.38 9.4 12 6.12 12M6 2c0 .69-.56 1.25-1.25 1.25H4.5c-.15 0-.28.1-.33.24L4 4H3v-.74c0-.44.32-.81.75-.88l.5-.09A.29.29 0 0 0 4.5 2c0-.28-.22-.5-.5-.5H3c-.28 0-.5.22-.5.5c0 .41-.34.75-.75.75S1 2.41 1 2c0-1.1.9-2 2-2h1c1.1 0 2 .9 2 2M3.5 4.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1");
4
+ }
@@ -0,0 +1,4 @@
1
+ .m3gyipbkp {
2
+ fill: currentColor;
3
+ d: path("M10.5 1c.28 0 .5.22.5.5v1.19c0 .19.11.36.28.45l3.27 1.64c.28.13.45.41.45.72v.09c0 .26-.11.52-.29.7L14 7h-2l-1 2v3.79q0 .21.15.36l.7.7q.15.15.15.36v.29c0 .28-.22.5-.5.5h-1.29q-.21 0-.36-.15l-.7-.7Q9 14 9 13.79V11.5c0-.28-.22-.5-.5-.5h-.19c-.19 0-.36.11-.45.28l-.75 1.51c-.07.14-.11.29-.11.45v.01c0 .15.09.29.22.36l.5.25c.17.09.28.26.28.45v.19c0 .28-.22.5-.5.5H3.04c-.67 0-1.3-.26-1.77-.73l-.39-.39C.32 13.32 0 12.55 0 11.76v-.26c0-.94.47-1.81 1.25-2.33L1.5 9v1.88c0 .69.39 1.31 1 1.62c.03-1.31.36-2.47 1-3.5c.61-.98 1.93-2.06 3.94-3.25c.16-.09.3-.24.38-.41l2.04-4.06c.09-.17.26-.28.45-.28zM5 2c0 .69-.56 1.25-1.25 1.25H3.5c-.15 0-.28.1-.33.24L3 4H2v-.74c0-.44.32-.81.75-.88l.5-.09A.29.29 0 0 0 3.5 2c0-.28-.22-.5-.5-.5H2c-.28 0-.5.22-.5.5c0 .41-.34.75-.75.75S0 2.41 0 2C0 .9.9 0 2 0h1c1.1 0 2 .9 2 2M2.5 4.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1");
4
+ }
@@ -0,0 +1,4 @@
1
+ .mcl98g9-s {
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 11.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1m1.25-5h-2.5L7 10.75h1z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .nuzx80lqc {
2
+ fill: currentColor;
3
+ d: path("M6.97 6.03L11 10.06v2.73q0 .21.15.36l.7.7q.15.15.15.36v.29c0 .28-.22.5-.5.5h-1.29q-.21 0-.36-.15l-.7-.7Q9 14 9 13.79V11.5c0-.28-.22-.5-.5-.5h-.19c-.19 0-.36.11-.45.28l-.75 1.51c-.07.14-.11.29-.11.45v.01c0 .15.09.29.22.36l.5.25c.17.09.28.26.28.45v.19c0 .28-.22.5-.5.5H3.04c-.67 0-1.3-.26-1.77-.73l-.39-.39C.32 13.32 0 12.55 0 11.76v-.26c0-.94.47-1.81 1.25-2.33L1.5 9v1.88c0 .69.39 1.31 1 1.62c.03-1.31.36-2.47 1-3.5c.57-.9 1.72-1.89 3.47-2.97M10.5 1c.28 0 .5.22.5.5v1.19c0 .19.11.36.28.45l3.27 1.64c.28.13.45.41.45.72v.09c0 .26-.11.52-.29.7L14 7h-2l-.65 1.29l-3.33-3.33l1.84-3.68c.09-.17.26-.28.45-.28zM5 2c0 .69-.56 1.25-1.25 1.25H3.5c-.15 0-.28.1-.33.24L3 4H2v-.74c0-.44.32-.81.75-.88l.5-.09A.29.29 0 0 0 3.5 2c0-.28-.22-.5-.5-.5H2c-.28 0-.5.22-.5.5c0 .41-.34.75-.75.75S0 2.41 0 2C0 .9.9 0 2 0h1c1.1 0 2 .9 2 2M2.5 4.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1");
4
+ }
@@ -0,0 +1,4 @@
1
+ .o81h3dbhb {
2
+ fill: currentColor;
3
+ d: path("M9.79 7.27v-.21c0-.45-.2-.89-.56-1.19l-1.29-.99V2.5s-1.18.32-1.8 1.12V2l-.48.17c-.07.02-1.58.58-2.45 2.63L.86 6.24l.77.77L0 8.4v1.48c.67-.66 1.58-1.04 2.53-1.03c.42 0 .84.08 1.22.22c.28-.8 1.02-2.14 2.75-.95c1.7 1.18 3.7 1.79 4.61 2.03l-.24.29c-.12.09-.74.7-1.99.02l-1.99-.89l-1.11 1.79l.82 1.11l-.73 1.1L6.95 15H8.3l-1.1-1.47l.7-1.06l-.8-1.2c.03-.11.21-.38.21-.38l.66.32c2.19 1.3 3.62.05 3.67 0L13 9.59L9.8 7.27zm-1.16.29c-.1.19-.31.25-.5.17l-.71-.36a.38.38 0 0 1-.17-.49c.1-.18.31-.26.49-.16l.72.36c.18.09.25.31.16.48zM13.75 0h-2.5L12 4h1zM12.5 4.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1");
4
+ }
@@ -0,0 +1,4 @@
1
+ .r4knz0mmr {
2
+ fill: currentColor;
3
+ d: path("m13.5 13l.5 2H1l.5-2zm-6-13q3 0 4.5 3v9.5H3V3q1.5-3 4.5-3m0 8c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1M8 3H7c-1.1 0-2 .9-2 2l.01.1c.05.36.36.65.74.65c.41 0 .75-.34.75-.75l.01-.09c.04-.24.24-.41.49-.41h1c.28 0 .5.22.5.5l-.01.09c-.04.25-.23.45-.48.49l-.26.05c-.43.07-.75.44-.75.88v.74h1l.17-.51c.05-.14.18-.24.33-.24l.14-.01C9.41 6.42 10 5.78 10 5c0-1.1-.9-2-2-2");
4
+ }
@@ -0,0 +1,4 @@
1
+ .tf_ta3b0v {
2
+ fill: currentColor;
3
+ d: path("m9.5 0l3 4.5l-3 10.5h-4l-3-10.5l3-4.5zm-2 8c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1M8 3H7c-1.1 0-2 .9-2 2l.01.1c.05.36.36.65.74.65c.41 0 .75-.34.75-.75l.01-.09c.04-.24.24-.41.49-.41h1c.28 0 .5.22.5.5l-.01.09c-.04.25-.23.45-.48.49l-.26.05c-.43.07-.75.44-.75.88v.74h1l.17-.51c.05-.14.18-.24.33-.24l.14-.01C9.41 6.42 10 5.78 10 5c0-1.1-.9-2-2-2");
4
+ }
@@ -0,0 +1,4 @@
1
+ .v7piy7bcs {
2
+ fill: currentColor;
3
+ d: path("M.43 9.28c1.35-.77 5.04-2.89 8.16-2.89c.21.74.86 1.49 1.06 1.63c.37.26.46.34.46.58c0 .7-1.42 1.15-3.61 1.15c-.85 0-4.77-.33-6.07-.47m12.29-3.27l.35-.43H15c-.02-.13-.04-1.03-.88-1.03h-1.04c0-.34-.35-1.05-1.61-1.05c-1.46 0-1.9 1.12-1.9 1.74c0 .89.35 1.56.85 1.98c.37.31.9.61.9 1.39c0 .97-.71 2.22-4.65 2.22c-.79 0-2.91-.22-4.23-.36l.02.04L0 11.76v.74l2.36-.41h3.49L5.84 15h4.11v-1.24h-.8l.01-1.67h.18c2.27 0 4.4-1.26 4.4-3.18c0-2.23-1.02-2.9-1.02-2.9m-4.8 7.75h-.85l.01-1.67h.84zm3.99-8.64c-.15.01-.3-.07-.38-.2a.43.43 0 0 1 0-.44c.08-.13.23-.21.38-.21c.24 0 .42.19.42.43s-.19.42-.42.42M5 2c0 .69-.56 1.25-1.25 1.25H3.5c-.15 0-.28.1-.33.24L3 4H2v-.74c0-.44.32-.81.75-.88l.5-.09A.29.29 0 0 0 3.5 2c0-.28-.22-.5-.5-.5H2c-.28 0-.5.22-.5.5c0 .41-.34.75-.75.75S0 2.41 0 2C0 .9.9 0 2 0h1c1.1 0 2 .9 2 2M2.5 4.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1");
4
+ }
@@ -0,0 +1,4 @@
1
+ .x_blhsbzq {
2
+ fill: currentColor;
3
+ d: path("m9.5 0l3 4.5l-3 10.5h-4l-3-10.5l3-4.5zm-2 8c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1M9 3H6l1 4.25h1z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .xu2ujfbuq {
2
+ fill: currentColor;
3
+ d: path("M10 11h5v3h-5zM0 11h9v3H0zm12.5-5.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1m1.5-5h-3l1 4.25h1z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .yoqn4k-mt {
2
+ fill: currentColor;
3
+ d: path("M2.6 13.8C1.54 12.1 1 10 1 7.5c0-2.37.48-4.38 1.44-6.02l.16-.28c.08-.12.22-.2.37-.2h1.76c.39 0 .77.13 1.08.38l.39.31c.13.11.19.28.15.45l-.53 2.11c-.04.14-.13.25-.26.29l-1.96.79v4.34l1.96.79c.13.04.22.15.26.29l.53 2.11a.45.45 0 0 1-.15.45l-.39.31c-.31.25-.69.38-1.08.38H2.97c-.12 0-.25-.05-.32-.15zm8.4-3.27c.95 0 1.73.78 1.73 1.74c0 .95-.78 1.73-1.73 1.73s-1.73-.78-1.73-1.73c0-.96.78-1.74 1.73-1.74m3.9-6.06c0 1.07-.57 2.06-1.51 2.59l-.65.37c-.54.31-.87.88-.87 1.51v.29h-1.74V8.06c0-.74.42-1.42 1.09-1.75l.12-.07c.59-.29.96-.89.96-1.55v-.22l-.04-.1c-.25-.47-.73-.77-1.26-.77s-1.01.3-1.26.77l-.04.1c0 .72-.58 1.3-1.3 1.3s-1.3-.58-1.3-1.3C7.1 2.55 8.65 1 10.57 1h.86c1.92 0 3.47 1.55 3.47 3.47");
4
+ }
@@ -0,0 +1,4 @@
1
+ .ypfau-f-d {
2
+ fill: currentColor;
3
+ d: path("M11.06 10.53c-.96 0-1.74.78-1.74 1.74c0 .95.78 1.73 1.74 1.73c.95 0 1.73-.78 1.73-1.73c0-.96-.78-1.74-1.73-1.74M13.22 1H8.89l1.3 8.23h1.73zM2.6 13.8C1.54 12.1 1 10 1 7.5c0-2.37.48-4.38 1.44-6.02l.16-.28c.08-.12.22-.2.37-.2h1.76c.39 0 .77.13 1.08.38l.39.31c.13.11.19.28.15.45l-.53 2.11c-.04.14-.13.25-.26.29l-1.96.79v4.34l1.96.79c.13.04.22.15.26.29l.53 2.11a.45.45 0 0 1-.15.45l-.39.31c-.31.25-.69.38-1.08.38H2.97c-.12 0-.25-.05-.32-.15z");
4
+ }
@@ -1,4 +1,4 @@
1
- .bfypw3b4d {
1
+ .z7utfjroc {
2
2
  fill: currentColor;
3
- d: path("M10.5 1c.28 0 .5.22.5.5v1.19c0 .19.11.36.28.45l3.27 1.64c.28.13.45.41.45.72v.09c0 .26-.11.52-.29.7L14 7h-2l-1 2v3.79q0 .21.15.36l.7.7q.15.15.15.36v.29c0 .28-.22.5-.5.5h-1.29q-.21 0-.36-.15l-.7-.7Q9 14 9 13.79V11.5c0-.28-.22-.5-.5-.5h-.19c-.19 0-.36.11-.45.28l-.75 1.51c-.07.14-.11.29-.11.45v.01c0 .15.09.29.22.36l.5.25c.17.09.28.26.28.45v.19c0 .28-.22.5-.5.5H3.04c-.67 0-1.3-.26-1.77-.73l-.39-.39C.32 13.32 0 12.55 0 11.76v-.26c0-.94.47-1.81 1.25-2.33L1.5 9v1.88c0 .69.39 1.31 1 1.62c.03-1.31.36-2.47 1-3.5c.61-.98 1.93-2.06 3.94-3.25c.16-.09.3-.24.38-.41l2.04-4.06c.09-.17.26-.28.45-.28zm-7 3.5c.55 0 1 .45 1 1s-.45 1-1 1s-1-.45-1-1s.45-1 1-1M4.75 0L4 3.75H3L2.25 0z");
3
+ d: path("M10.5 1c.28 0 .5.22.5.5v1.19c0 .19.11.36.28.45l3.27 1.64c.28.13.45.41.45.72v.09c0 .26-.11.52-.29.7L14 7h-2l-1 2v3.79q0 .21.15.36l.7.7q.15.15.15.36v.29c0 .28-.22.5-.5.5h-1.29q-.21 0-.36-.15l-.7-.7Q9 14 9 13.79V11.5c0-.28-.22-.5-.5-.5h-.19c-.19 0-.36.11-.45.28l-.75 1.51c-.07.14-.11.29-.11.45v.01c0 .15.09.29.22.36l.5.25c.17.09.28.26.28.45v.19c0 .28-.22.5-.5.5H3.04c-.67 0-1.3-.26-1.77-.73l-.39-.39C.32 13.32 0 12.55 0 11.76v-.26c0-.94.47-1.81 1.25-2.33L1.5 9v1.88c0 .69.39 1.31 1 1.62c.03-1.31.36-2.47 1-3.5c.61-.98 1.93-2.06 3.94-3.25c.16-.09.3-.24.38-.41l2.04-4.06c.09-.17.26-.28.45-.28zM3.75 0h-2.5L2 4h1zM2.5 4.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1");
4
4
  }
package/iconify.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "prefix": "pinhead",
3
3
  "info": {
4
4
  "name": "Pinhead Map Icons",
5
- "total": 2550,
5
+ "total": 2570,
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": 1787576185
31
+ "lastModified": 1787805473
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.22",
4
+ "version": "1.0.23",
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",
@@ -1234,6 +1234,10 @@
1234
1234
  "types": "./types/gfwqskkx.d.ts",
1235
1235
  "svelte": "./components/b/book.svelte"
1236
1236
  },
1237
+ "./book-stack": {
1238
+ "types": "./types/gfwqskkx.d.ts",
1239
+ "svelte": "./components/b/book-stack.svelte"
1240
+ },
1237
1241
  "./book-with-arrows-recirculating": {
1238
1242
  "types": "./types/gfwqskkx.d.ts",
1239
1243
  "svelte": "./components/b/book-with-arrows-recirculating.svelte"
@@ -2394,6 +2398,10 @@
2394
2398
  "types": "./types/gfwqskkx.d.ts",
2395
2399
  "svelte": "./components/c/coffin-with-dharma-wheel.svelte"
2396
2400
  },
2401
+ "./coffin-with-exclamation-point": {
2402
+ "types": "./types/gfwqskkx.d.ts",
2403
+ "svelte": "./components/c/coffin-with-exclamation-point.svelte"
2404
+ },
2397
2405
  "./coffin-with-flaming-chalice": {
2398
2406
  "types": "./types/gfwqskkx.d.ts",
2399
2407
  "svelte": "./components/c/coffin-with-flaming-chalice.svelte"
@@ -2418,6 +2426,10 @@
2418
2426
  "types": "./types/gfwqskkx.d.ts",
2419
2427
  "svelte": "./components/c/coffin-with-quaker-star.svelte"
2420
2428
  },
2429
+ "./coffin-with-question-mark": {
2430
+ "types": "./types/gfwqskkx.d.ts",
2431
+ "svelte": "./components/c/coffin-with-question-mark.svelte"
2432
+ },
2421
2433
  "./coffin-with-star-and-crescent": {
2422
2434
  "types": "./types/gfwqskkx.d.ts",
2423
2435
  "svelte": "./components/c/coffin-with-star-and-crescent.svelte"
@@ -2934,6 +2946,10 @@
2934
2946
  "types": "./types/gfwqskkx.d.ts",
2935
2947
  "svelte": "./components/d/dog-sitting-and-exclamation-point.svelte"
2936
2948
  },
2949
+ "./dog-sitting-and-question-mark": {
2950
+ "types": "./types/gfwqskkx.d.ts",
2951
+ "svelte": "./components/d/dog-sitting-and-question-mark.svelte"
2952
+ },
2937
2953
  "./dog-sitting-wearing-collar": {
2938
2954
  "types": "./types/gfwqskkx.d.ts",
2939
2955
  "svelte": "./components/d/dog-sitting-wearing-collar.svelte"
@@ -2950,6 +2966,10 @@
2950
2966
  "types": "./types/gfwqskkx.d.ts",
2951
2967
  "svelte": "./components/d/dog-sitting-wearing-collar-and-heart.svelte"
2952
2968
  },
2969
+ "./dog-sitting-wearing-collar-and-question-mark": {
2970
+ "types": "./types/gfwqskkx.d.ts",
2971
+ "svelte": "./components/d/dog-sitting-wearing-collar-and-question-mark.svelte"
2972
+ },
2953
2973
  "./dog-sitting-wearing-collar-and-whistle": {
2954
2974
  "types": "./types/gfwqskkx.d.ts",
2955
2975
  "svelte": "./components/d/dog-sitting-wearing-collar-and-whistle.svelte"
@@ -3094,10 +3114,18 @@
3094
3114
  "types": "./types/gfwqskkx.d.ts",
3095
3115
  "svelte": "./components/d/droplet-above-water.svelte"
3096
3116
  },
3117
+ "./droplet-beside-exclamation-point": {
3118
+ "types": "./types/gfwqskkx.d.ts",
3119
+ "svelte": "./components/d/droplet-beside-exclamation-point.svelte"
3120
+ },
3097
3121
  "./droplet-beside-greek-cross": {
3098
3122
  "types": "./types/gfwqskkx.d.ts",
3099
3123
  "svelte": "./components/d/droplet-beside-greek-cross.svelte"
3100
3124
  },
3125
+ "./droplet-beside-question-mark": {
3126
+ "types": "./types/gfwqskkx.d.ts",
3127
+ "svelte": "./components/d/droplet-beside-question-mark.svelte"
3128
+ },
3101
3129
  "./droplet-from-pipes": {
3102
3130
  "types": "./types/gfwqskkx.d.ts",
3103
3131
  "svelte": "./components/d/droplet-from-pipes.svelte"
@@ -3114,10 +3142,18 @@
3114
3142
  "types": "./types/gfwqskkx.d.ts",
3115
3143
  "svelte": "./components/d/droplet-under-roof.svelte"
3116
3144
  },
3145
+ "./droplet-with-exclamation-point": {
3146
+ "types": "./types/gfwqskkx.d.ts",
3147
+ "svelte": "./components/d/droplet-with-exclamation-point.svelte"
3148
+ },
3117
3149
  "./droplet-with-greek-cross": {
3118
3150
  "types": "./types/gfwqskkx.d.ts",
3119
3151
  "svelte": "./components/d/droplet-with-greek-cross.svelte"
3120
3152
  },
3153
+ "./droplet-with-question-mark": {
3154
+ "types": "./types/gfwqskkx.d.ts",
3155
+ "svelte": "./components/d/droplet-with-question-mark.svelte"
3156
+ },
3121
3157
  "./droplet-with-shine": {
3122
3158
  "types": "./types/gfwqskkx.d.ts",
3123
3159
  "svelte": "./components/d/droplet-with-shine.svelte"
@@ -3290,6 +3326,10 @@
3290
3326
  "types": "./types/gfwqskkx.d.ts",
3291
3327
  "svelte": "./components/e/exclamation-point-beside-question-mark.svelte"
3292
3328
  },
3329
+ "./exclamation-point-on-square": {
3330
+ "types": "./types/gfwqskkx.d.ts",
3331
+ "svelte": "./components/e/exclamation-point-on-square.svelte"
3332
+ },
3293
3333
  "./eye": {
3294
3334
  "types": "./types/gfwqskkx.d.ts",
3295
3335
  "svelte": "./components/e/eye.svelte"
@@ -3598,6 +3638,10 @@
3598
3638
  "types": "./types/gfwqskkx.d.ts",
3599
3639
  "svelte": "./components/f/flush-curb-with-arrow-right.svelte"
3600
3640
  },
3641
+ "./flush-curb-with-exclamation-point": {
3642
+ "types": "./types/gfwqskkx.d.ts",
3643
+ "svelte": "./components/f/flush-curb-with-exclamation-point.svelte"
3644
+ },
3601
3645
  "./flush-curb-with-question-mark": {
3602
3646
  "types": "./types/gfwqskkx.d.ts",
3603
3647
  "svelte": "./components/f/flush-curb-with-question-mark.svelte"
@@ -3922,6 +3966,10 @@
3922
3966
  "types": "./types/gfwqskkx.d.ts",
3923
3967
  "svelte": "./components/g/gull-and-exclamation-point.svelte"
3924
3968
  },
3969
+ "./gull-and-question-mark": {
3970
+ "types": "./types/gfwqskkx.d.ts",
3971
+ "svelte": "./components/g/gull-and-question-mark.svelte"
3972
+ },
3925
3973
  "./gumdrop-head-and-shoulders": {
3926
3974
  "types": "./types/gfwqskkx.d.ts",
3927
3975
  "svelte": "./components/g/gumdrop-head-and-shoulders.svelte"
@@ -3950,6 +3998,10 @@
3950
3998
  "types": "./types/gfwqskkx.d.ts",
3951
3999
  "svelte": "./components/h/hairy-caterpillar-and-exclamation-point.svelte"
3952
4000
  },
4001
+ "./hairy-caterpillar-and-question-mark": {
4002
+ "types": "./types/gfwqskkx.d.ts",
4003
+ "svelte": "./components/h/hairy-caterpillar-and-question-mark.svelte"
4004
+ },
3953
4005
  "./hammer": {
3954
4006
  "types": "./types/gfwqskkx.d.ts",
3955
4007
  "svelte": "./components/h/hammer.svelte"
@@ -4742,6 +4794,10 @@
4742
4794
  "types": "./types/gfwqskkx.d.ts",
4743
4795
  "svelte": "./components/l/lowered-curb-with-arrow-bottom-right.svelte"
4744
4796
  },
4797
+ "./lowered-curb-with-exclamation-point": {
4798
+ "types": "./types/gfwqskkx.d.ts",
4799
+ "svelte": "./components/l/lowered-curb-with-exclamation-point.svelte"
4800
+ },
4745
4801
  "./lowered-curb-with-question-mark": {
4746
4802
  "types": "./types/gfwqskkx.d.ts",
4747
4803
  "svelte": "./components/l/lowered-curb-with-question-mark.svelte"
@@ -4998,6 +5054,10 @@
4998
5054
  "types": "./types/gfwqskkx.d.ts",
4999
5055
  "svelte": "./components/m/memorial-stone-with-dharma-wheel.svelte"
5000
5056
  },
5057
+ "./memorial-stone-with-exclamation-point": {
5058
+ "types": "./types/gfwqskkx.d.ts",
5059
+ "svelte": "./components/m/memorial-stone-with-exclamation-point.svelte"
5060
+ },
5001
5061
  "./memorial-stone-with-flaming-chalice": {
5002
5062
  "types": "./types/gfwqskkx.d.ts",
5003
5063
  "svelte": "./components/m/memorial-stone-with-flaming-chalice.svelte"
@@ -5026,6 +5086,10 @@
5026
5086
  "types": "./types/gfwqskkx.d.ts",
5027
5087
  "svelte": "./components/m/memorial-stone-with-quaker-star.svelte"
5028
5088
  },
5089
+ "./memorial-stone-with-question-mark": {
5090
+ "types": "./types/gfwqskkx.d.ts",
5091
+ "svelte": "./components/m/memorial-stone-with-question-mark.svelte"
5092
+ },
5029
5093
  "./memorial-stone-with-star-and-crescent": {
5030
5094
  "types": "./types/gfwqskkx.d.ts",
5031
5095
  "svelte": "./components/m/memorial-stone-with-star-and-crescent.svelte"
@@ -6874,6 +6938,14 @@
6874
6938
  "types": "./types/gfwqskkx.d.ts",
6875
6939
  "svelte": "./components/p/phone-right.svelte"
6876
6940
  },
6941
+ "./phone-right-beside-exclamation-point": {
6942
+ "types": "./types/gfwqskkx.d.ts",
6943
+ "svelte": "./components/p/phone-right-beside-exclamation-point.svelte"
6944
+ },
6945
+ "./phone-right-beside-question-mark": {
6946
+ "types": "./types/gfwqskkx.d.ts",
6947
+ "svelte": "./components/p/phone-right-beside-question-mark.svelte"
6948
+ },
6877
6949
  "./phone-right-with-beams-from-receiver": {
6878
6950
  "types": "./types/gfwqskkx.d.ts",
6879
6951
  "svelte": "./components/p/phone-right-with-beams-from-receiver.svelte"
@@ -7558,6 +7630,10 @@
7558
7630
  "types": "./types/gfwqskkx.d.ts",
7559
7631
  "svelte": "./components/q/question-mark-above-water.svelte"
7560
7632
  },
7633
+ "./question-mark-on-square": {
7634
+ "types": "./types/gfwqskkx.d.ts",
7635
+ "svelte": "./components/q/question-mark-on-square.svelte"
7636
+ },
7561
7637
  "./r": {
7562
7638
  "types": "./types/gfwqskkx.d.ts",
7563
7639
  "svelte": "./components/r/r.svelte"
@@ -7642,6 +7718,10 @@
7642
7718
  "types": "./types/gfwqskkx.d.ts",
7643
7719
  "svelte": "./components/r/raised-curb-with-arrow-down.svelte"
7644
7720
  },
7721
+ "./raised-curb-with-exclamation-point": {
7722
+ "types": "./types/gfwqskkx.d.ts",
7723
+ "svelte": "./components/r/raised-curb-with-exclamation-point.svelte"
7724
+ },
7645
7725
  "./raised-curb-with-question-mark": {
7646
7726
  "types": "./types/gfwqskkx.d.ts",
7647
7727
  "svelte": "./components/r/raised-curb-with-question-mark.svelte"
@@ -7730,6 +7810,10 @@
7730
7810
  "types": "./types/gfwqskkx.d.ts",
7731
7811
  "svelte": "./components/r/rolled-curb-with-arrow-bottom-right.svelte"
7732
7812
  },
7813
+ "./rolled-curb-with-exclamation-point": {
7814
+ "types": "./types/gfwqskkx.d.ts",
7815
+ "svelte": "./components/r/rolled-curb-with-exclamation-point.svelte"
7816
+ },
7733
7817
  "./rolled-curb-with-question-mark": {
7734
7818
  "types": "./types/gfwqskkx.d.ts",
7735
7819
  "svelte": "./components/r/rolled-curb-with-question-mark.svelte"
@@ -9086,10 +9170,6 @@
9086
9170
  "types": "./types/gfwqskkx.d.ts",
9087
9171
  "svelte": "./components/t/thatched-roof-hut.svelte"
9088
9172
  },
9089
- "./three-books-stacked": {
9090
- "types": "./types/gfwqskkx.d.ts",
9091
- "svelte": "./components/t/three-books-stacked.svelte"
9092
- },
9093
9173
  "./three-circular-pills": {
9094
9174
  "types": "./types/gfwqskkx.d.ts",
9095
9175
  "svelte": "./components/t/three-circular-pills.svelte"
@@ -10166,6 +10246,10 @@
10166
10246
  "types": "./types/gfwqskkx.d.ts",
10167
10247
  "svelte": "./components/w/wolf-head-and-exclamation-point.svelte"
10168
10248
  },
10249
+ "./wolf-head-and-question-mark": {
10250
+ "types": "./types/gfwqskkx.d.ts",
10251
+ "svelte": "./components/w/wolf-head-and-question-mark.svelte"
10252
+ },
10169
10253
  "./womens-and-mens-restroom-symbol": {
10170
10254
  "types": "./types/gfwqskkx.d.ts",
10171
10255
  "svelte": "./components/w/womens-and-mens-restroom-symbol.svelte"
@@ -10782,6 +10866,10 @@
10782
10866
  "types": "./types/gfwqskkx.d.ts",
10783
10867
  "svelte": "./components/t/three-above-water.svelte"
10784
10868
  },
10869
+ "./three-books-stacked": {
10870
+ "types": "./types/gfwqskkx.d.ts",
10871
+ "svelte": "./components/t/three-books-stacked.svelte"
10872
+ },
10785
10873
  "./three-minus": {
10786
10874
  "types": "./types/gfwqskkx.d.ts",
10787
10875
  "svelte": "./components/t/three-minus.svelte"
@@ -1,4 +0,0 @@
1
- .wqrcn0bja {
2
- fill: currentColor;
3
- d: path("M10.54 6.68v-.23c0-.49-.21-.96-.6-1.28L8.55 4.1V1.54s-1.27.34-1.94 1.2V1l-.52.18c-.07.03-1.7.63-2.63 2.83L.93 5.57l.83.83L0 7.89v1.6c.72-.71 1.7-1.12 2.72-1.11c.46 0 .91.08 1.32.23c.3-.86 1.1-2.3 2.96-1.02c1.83 1.27 3.98 1.93 4.96 2.19l-.25.31c-.13.1-.8.75-2.15.02l-2.14-.96l-1.2 1.93l.89 1.19l-.79 1.19L7.48 15h1.46l-1.19-1.58l.76-1.15l-.86-1.29c.03-.12.22-.41.22-.41l.71.35c2.36 1.4 3.9.05 3.95 0L14 9.17l-3.45-2.5zm-1.25.31c-.1.2-.33.27-.53.18l-.77-.39a.4.4 0 0 1-.18-.52c.1-.2.33-.28.52-.18l.78.39c.19.1.27.33.17.52zM13.5 4.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1M14.75 0h-2.5L13 3.75h1z");
4
- }