@iconify-svelte/pinhead 1.0.3 → 1.0.4

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 (58) hide show
  1. package/components/b/bell.svelte +11 -0
  2. package/components/b/bucket.svelte +11 -0
  3. package/components/b/button.svelte +11 -0
  4. package/components/c/car-wheel-with-tire.svelte +11 -0
  5. package/components/c/clapperboard.svelte +11 -0
  6. package/components/c/classical-statue.svelte +11 -0
  7. package/components/c/coffin-with-latin-cross.svelte +11 -0
  8. package/components/c/coffin.svelte +11 -0
  9. package/components/h/hammer-with-nail.svelte +11 -0
  10. package/components/h/horizontal-storage-tank-on-supports.svelte +11 -0
  11. package/components/l/lantern-lamppost.svelte +11 -0
  12. package/components/m/memorial-stone-with-inscription.svelte +2 -2
  13. package/components/m/memorial-stone-with-latin-cross.svelte +11 -0
  14. package/components/m/memorial-stone.svelte +2 -2
  15. package/components/m/military-police-officer.svelte +11 -0
  16. package/components/o/officer.svelte +11 -0
  17. package/components/o/open-scissors-crossing-handled-comb.svelte +11 -0
  18. package/components/p/paintbrush.svelte +11 -0
  19. package/components/p/person-running-after-person.svelte +11 -0
  20. package/components/p/pixel-arrows-left-right-above-water.svelte +11 -0
  21. package/components/p/pixel-fork-and-knife.svelte +11 -0
  22. package/components/p/pixel-water.svelte +11 -0
  23. package/components/p/pixel-waters.svelte +11 -0
  24. package/components/s/screw-beside-nail.svelte +11 -0
  25. package/components/t/tabletop-microphone.svelte +11 -0
  26. package/components/t/telegraph-key.svelte +11 -0
  27. package/components/t/tshirt-on-clothes-hanger-and-folded-linens.svelte +11 -0
  28. package/css/b/bsdpssbrw.css +4 -0
  29. package/css/f/f38hztbpz.css +4 -0
  30. package/css/g/gw2c6mblg.css +4 -0
  31. package/css/g/gyjky3pmi.css +4 -0
  32. package/css/h/h1wohmrfu.css +4 -0
  33. package/css/h/h95qwns3s.css +4 -0
  34. package/css/i/iw3gm_bov.css +4 -0
  35. package/css/j/jyw49evoz.css +4 -0
  36. package/css/k/k_rmtccot.css +4 -0
  37. package/css/k/ku3j7y3ue.css +4 -0
  38. package/css/l/lhj3enbnr.css +4 -0
  39. package/css/o/ooee_efxt.css +4 -0
  40. package/css/o/oy8a-7mcg.css +4 -0
  41. package/css/p/pf2xu3bsa.css +4 -0
  42. package/css/q/qbebmxbvw.css +4 -0
  43. package/css/r/rqkrn3bpg.css +4 -0
  44. package/css/s/s02vp9brs.css +4 -0
  45. package/css/s/s4tqgfbit.css +4 -0
  46. package/css/t/ttle3lbib.css +4 -0
  47. package/css/u/uq21gubaz.css +4 -0
  48. package/css/w/wj6w53b5x.css +4 -0
  49. package/css/x/xw9aoy2ge.css +4 -0
  50. package/css/y/yimgu8b5h.css +4 -0
  51. package/css/y/yuehshduq.css +4 -0
  52. package/css/y/yywrzcbcn.css +4 -0
  53. package/css/z/zrkyrvqla.css +4 -0
  54. package/css/z/zskhygbqm.css +4 -0
  55. package/iconify.json +2 -2
  56. package/package.json +101 -1
  57. package/css/i/i11fzvx7k.css +0 -4
  58. package/css/z/zr-agdcuy.css +0 -4
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/h/h95qwns3s.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="h95qwns3s"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:bell" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/s/s02vp9brs.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="s02vp9brs"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:bucket" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/l/lhj3enbnr.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="lhj3enbnr"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:button" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/h/h1wohmrfu.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="h1wohmrfu"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:car-wheel-with-tire" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/r/rqkrn3bpg.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="rqkrn3bpg"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:clapperboard" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/w/wj6w53b5x.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="wj6w53b5x"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:classical-statue" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/p/pf2xu3bsa.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="pf2xu3bsa"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:coffin-with-latin-cross" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/q/qbebmxbvw.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="qbebmxbvw"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:coffin" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/y/yuehshduq.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="yuehshduq"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:hammer-with-nail" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/f/f38hztbpz.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="f38hztbpz"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:horizontal-storage-tank-on-supports" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/j/jyw49evoz.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="jyw49evoz"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:lantern-lamppost" {...props}></Icon>
@@ -1,11 +1,11 @@
1
1
  <script>
2
2
  import Icon from '@iconify/css-svelte';
3
- import '../../css/z/zr-agdcuy.css';
3
+ import '../../css/x/xw9aoy2ge.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="zr-agdcuy"/>`;
9
+ const content = `<path class="xw9aoy2ge"/>`;
10
10
  </script>
11
11
  <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:memorial-stone-with-inscription" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/o/ooee_efxt.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="ooee_efxt"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:memorial-stone-with-latin-cross" {...props}></Icon>
@@ -1,11 +1,11 @@
1
1
  <script>
2
2
  import Icon from '@iconify/css-svelte';
3
- import '../../css/i/i11fzvx7k.css';
3
+ import '../../css/k/k_rmtccot.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="i11fzvx7k"/>`;
9
+ const content = `<path class="k_rmtccot"/>`;
10
10
  </script>
11
11
  <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:memorial-stone" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/y/yywrzcbcn.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="yywrzcbcn"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:military-police-officer" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/i/iw3gm_bov.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="iw3gm_bov"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:officer" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/t/ttle3lbib.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="ttle3lbib"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:open-scissors-crossing-handled-comb" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/o/oy8a-7mcg.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="oy8a-7mcg"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:paintbrush" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/s/s4tqgfbit.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="s4tqgfbit"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:person-running-after-person" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/k/ku3j7y3ue.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="ku3j7y3ue"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:pixel-arrows-left-right-above-water" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/b/bsdpssbrw.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="bsdpssbrw"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:pixel-fork-and-knife" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/u/uq21gubaz.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="uq21gubaz"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:pixel-water" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/z/zskhygbqm.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="zskhygbqm"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:pixel-waters" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/y/yimgu8b5h.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="yimgu8b5h"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:screw-beside-nail" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/g/gyjky3pmi.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="gyjky3pmi"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:tabletop-microphone" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/z/zrkyrvqla.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="zrkyrvqla"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:telegraph-key" {...props}></Icon>
@@ -0,0 +1,11 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+ import '../../css/g/gw2c6mblg.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="gw2c6mblg"/>`;
10
+ </script>
11
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="pinhead:tshirt-on-clothes-hanger-and-folded-linens" {...props}></Icon>
@@ -0,0 +1,4 @@
1
+ .bsdpssbrw {
2
+ fill: currentColor;
3
+ d: path("M8 7H5v8H3V7H0V0h2v5h1V0h2v5h1V0h2zm6-7v15h-2v-5h-2V0z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .f38hztbpz {
2
+ fill: currentColor;
3
+ d: path("M7.5 2c.25 0 .45.18.49.41L8 2.5c0 .28-.22.5-.5.5H7v1h6c1.33.67 2 1.83 2 3.5s-.67 2.83-2 3.5h-1v2h-2v-2H5v2H3v-2H2c-1.33-.67-2-1.83-2-3.5S.67 4.67 2 4h2V3h-.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .gw2c6mblg {
2
+ fill: currentColor;
3
+ d: path("M8.82.06c.59.18 1.01.73 1.02 1.34c0 .3-.2.53-.49.54a.494.494 0 0 1-.5-.41l-.01-.09C8.82 1.18 8.64 1 8.4 1c-.23.01-.41.19-.42.41s.12.39.33.44l.09.02c.33.03.51.21.51.55v.48c-.01.07.02.1.08.13l.17.09c.34.17.87.47 1.59.88l3.86.91c.23.05.39.25.39.49V8h-2v7H1.5C.67 15 0 14.33 0 13.5c0-.38.14-.73.38-1c-.24-.26-.38-.62-.38-1c0-.83.67-1.5 1.5-1.5H4V8H2V5l4.25-1l.38-.25q.705-.465.99-.6l.13-.08c.03-.02.05-.03.07-.04c.1-.03.08-.1.09-.17c.01-.08-.05-.1-.1-.12A1.443 1.443 0 0 1 7.22.62c.36-.51 1-.74 1.6-.56M8.5 13h-7c-.28 0-.5.22-.5.5s.22.5.5.5h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5m0-2h-7c-.28 0-.5.22-.5.5s.22.5.5.5h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5m-.06-7.13c-.48.24-.96.64-1.44.88c.11.7.81 1.12 1.52 1.1c.71-.01 1.41-.44 1.48-1.1c-.48-.24-.96-.65-1.44-.89c-.04-.01-.09-.01-.12.01");
4
+ }
@@ -0,0 +1,4 @@
1
+ .gyjky3pmi {
2
+ fill: currentColor;
3
+ d: path("M11.5 5.5c.28 0 .5.22.5.5v1.5c0 2.32-1.75 4.22-4 4.47V14h4v1H3v-1h4v-2.03c-2.25-.25-4-2.15-4-4.47V6c0-.28.22-.5.5-.5s.5.22.5.5v1.5C4 9.43 5.57 11 7.5 11S11 9.43 11 7.5V6c0-.28.22-.5.5-.5M7.5 0A2.5 2.5 0 0 1 10 2.5v5a2.5 2.5 0 0 1-5 0v-5A2.5 2.5 0 0 1 7.5 0");
4
+ }
@@ -0,0 +1,4 @@
1
+ .h1wohmrfu {
2
+ fill: currentColor;
3
+ d: path("M7.5 0C3.38 0 0 3.38 0 7.5S3.38 15 7.5 15S15 11.62 15 7.5S11.62 0 7.5 0M7 3.25l-.57 1.81c-.4.17-.77.43-1.04.77l-1.81-.04A4.26 4.26 0 0 1 7 3.25m1 0c1.56.18 2.86 1.16 3.45 2.54l-1.84.07c-.27-.35-.63-.62-1.04-.8zm-.5 3.18a1.071 1.071 0 0 1 0 2.14a1.071 1.071 0 0 1 0-2.14m-4.25.5l1.6.97c.05.29.15.56.27.81l-.73 1.74a4.26 4.26 0 0 1-1.14-3.52m8.5 0c.03.19.04.38.04.57c0 1.16-.44 2.21-1.18 2.98l-.73-1.77c.12-.25.22-.52.26-.81zM6.8 10.08c.22.06.45.1.7.1s.48-.04.7-.1l1.54 1.07c-.65.4-1.41.64-2.24.64c-.84 0-1.62-.23-2.28-.64z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .h95qwns3s {
2
+ fill: currentColor;
3
+ d: path("M7.5 0C8.33 0 9 .67 9 1.5v.53c1.97.25 3.5 1.93 3.5 3.97v3l1.5 1v2H1v-2l1.5-1V6c0-2.04 1.53-3.72 3.5-3.97V1.5C6 .67 6.67 0 7.5 0m0 15c1.33 0 2.41-1.03 2.49-2.34l.01-.16H5A2.5 2.5 0 0 0 7.5 15");
4
+ }
@@ -0,0 +1,4 @@
1
+ .iw3gm_bov {
2
+ fill: currentColor;
3
+ d: path("M11 7v6.5c0 .28-.23.5-.5.5L5 13.98zM9.5 7L4 13.5v-6c0-.28.22-.5.5-.5zm-2-6a2.5 2.5 0 0 1 0 5a2.5 2.5 0 0 1 0-5");
4
+ }
@@ -0,0 +1,4 @@
1
+ .jyw49evoz {
2
+ fill: currentColor;
3
+ d: path("M7.5 0c-1 0-2 1.5-3 4h-1v1h1l1 4l1 1v1h-2v1h2v3h2v-3h2v-1h-2v-1l1-1l1-4h1V4h-1c-1-2.5-2-4-3-4m-2 5h4l-1 4h-2z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .k_rmtccot {
2
+ fill: currentColor;
3
+ d: path("M3 3v9.5h9V3q-1.5-3-4.5-3T3 3M1.5 13L1 15h13l-.5-2z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .ku3j7y3ue {
2
+ fill: currentColor;
3
+ d: path("M6 10v2h3v-2h3v2h3v3h-3v-2H9v2H6v-2H3v2H0v-3h3v-2zm5-2H9V6h2V5H4v1h2v2H4V7H2V5H0V3h2V1h2V0h2v2H4v1h7V2H9V0h2v1h2v2h2v2h-2v2h-2z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .lhj3enbnr {
2
+ fill: currentColor;
3
+ d: path("M7.5 0C11.64 0 15 3.36 15 7.5S11.64 15 7.5 15S0 11.64 0 7.5S3.36 0 7.5 0m0 1a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0-13m0 1C10.54 2 13 4.46 13 7.5S10.54 13 7.5 13S2 10.54 2 7.5S4.46 2 7.5 2m-2 6.5c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1m4 0c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1m-4-4c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1m4 0c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1");
4
+ }
@@ -0,0 +1,4 @@
1
+ .ooee_efxt {
2
+ fill: currentColor;
3
+ d: path("M3 3v9.5h9V3q-1.5-3-4.5-3T3 3m10.5 10l.5 2H1l.5-2zM8 2v2h2v1H8v5H7V5H5V4h2V2z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .oy8a-7mcg {
2
+ fill: currentColor;
3
+ d: path("M11.16 9c1.22.19 2.06.94 2.34 2.25c.1.56.19 1.12.38 1.69c.09.46.37.65.75.74c.18 0 .37.19.37.38s-.09.37-.28.47c-.66.24-1.31.42-1.91.46h-.25c-2.15.1-3.65-1.12-4.02-3.18l.09-.19c.75-.84 1.59-1.68 2.34-2.52c0-.1.1-.1.19-.1M.59 0l.08.01c.19 0 .28.1.47.19c.56.47 1.22.84 1.78 1.31c2.53 2.06 4.87 4.31 7.12 6.65c.05 0 .07.03.08.06l.01.03l-2.44 2.63c0-.03 0-.05-.01-.06l-.06-.08l-.02-.05c-1.5-1.78-3-3.47-4.4-5.25C2.17 4.13 1.23 2.92.39 1.51C.2 1.23.11.95.01.67C-.07.32.24-.03.59 0");
4
+ }
@@ -0,0 +1,4 @@
1
+ .pf2xu3bsa {
2
+ fill: currentColor;
3
+ d: path("m5.5 0l-3 4.5l3 10.5h4l3-10.5l-3-4.5zM7 2h1v2h2v1H8v5H7V5H5V4h2z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .qbebmxbvw {
2
+ fill: currentColor;
3
+ d: path("m5.5 0l-3 4.5l3 10.5h4l3-10.5l-3-4.5z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .rqkrn3bpg {
2
+ fill: currentColor;
3
+ d: path("m10.2.53l.61 2.27l1.72-.51L12 0zm-1.11.3l-2.35.67l.63 2.27l2.36-.67zM3.58 2.41l.64 2.27l2.08-.61l-.64-2.27zM.22 3.51L1 5.5l2.11-.52l-.61-2.27zM1 13c0 .5.5 1 1 1h11c.5 0 1-.48 1-1V5.5H1zm2-5h9v2H3z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .s02vp9brs {
2
+ fill: currentColor;
3
+ d: path("M7.5 0c-5.25 0-6 4-6 6.5h.75L4.5 15h6l2.25-8.5h.75c0-2.44-.75-6.5-6-6.5m5 5h-10c.5-2.67 2.17-4 5-4s4.5 1.33 5 4M12 6l-.25 1h-8.5L3 6zm-7.25 7h5.5L10 14H5z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .s4tqgfbit {
2
+ fill: currentColor;
3
+ d: path("M6 .25c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5S5.17.25 6 .25m6 1.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5M4.5 4H6l3 1.5V7L6 5.5v3.84l1.5 5.16H6L4.5 9.25l-.03.15c-.12.51-.58 2.1-1.84 2.1H0v-1.12h2.25c.8 0 .75-1.21.75-1.88c0-1.13.75-3 .75-3L1.5 6.91c-.68.45-1.27-.35-.61-.85l2.49-1.68C3.83 4.05 3.97 4 4.5 4m7.88 1.5c.32 0 .5.14.67.3l1.67 1.67c.2.2.28.39.28.66c0 .37-.57.55-.89.23L12.75 7H12v1.5l1.5 4.08c.3.83-.86 1.08-1.12.37L11.62 11H7.5v-1h2.25V7c0-.75.75-1.5 1.5-1.5z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .ttle3lbib {
2
+ fill: currentColor;
3
+ d: path("m5.6 10.13l.76.35c.02.01.04.02.05.05l.29.58l-.03.03l-3.18 3.18c-.18.18-.39.34-.62.47c-.53.29-1.05.28-1.56-.04c-.3-.18-.55-.41-.77-.68c-.12-.14-.19-.31-.24-.49l-.03-.14c-.01-.02-.01-.04-.02-.06v-.41c.12-.45.45-.73.83-.96c.41-.24.86-.42 1.31-.57c.6-.2 1.2-.39 1.78-.66c.45-.21.89-.43 1.34-.65c.03-.01.07-.01.09 0m.78-7.91c.09.08.16.19.21.3l2.46 5.32q.015.045.06.06c.29.07.54.22.78.41c.19.16.37.33.55.5l.64.65l.01.01c.06-.11.11-.23.17-.34c.08-.12.16-.25.24-.37c.46-.66 1.22-.84 1.88-.62c.73.24 1.17.74 1.33 1.47l.03.17c0 .02.01.04.01.05v.24l-.01.04v.04c-.07.63-.51 1.17-1.11 1.33c-.68.19-1.27 0-1.78-.46c-.29-.27-.58-.55-.87-.83c-.26-.25-.54-.46-.87-.6a1.2 1.2 0 0 0-.53-.11c-.16.02-.25.1-.27.27c-.01.16.03.32.08.47c.14.34.35.64.6.9l.85.88c.33.35.52.77.54 1.25c.04.75-.44 1.41-1.16 1.6l-.23.06H9.6c-.11-.03-.22-.04-.32-.07c-.81-.24-1.39-.98-1.4-1.82c0-.57.24-1.04.72-1.35l.2-.12l.41-.21c.02-.02.05-.02.08-.04l-.2-.19c-.33-.33-.66-.66-.95-1.03c-.19-.24-.34-.5-.41-.8a.14.14 0 0 0-.07-.06L2.38 6.78c-.3-.13-.48-.38-.61-.67c-.17-.35-.22-.72-.1-1.1c.07-.21.23-.29.43-.2l4.59 2.05l-2.05-4.57c-.1-.21-.02-.38.2-.44c.59-.17 1.09 0 1.54.37m3.35 9.54c-.3.08-.58.23-.84.41c-.3.2-.43.49-.44.84c0 .7.63 1.33 1.33 1.33c.52 0 .94-.34 1.02-.85c.06-.41-.08-.77-.36-1.07l-.6-.63c-.03-.04-.06-.04-.11-.03m-7.88.96c-.37 0-.67.29-.67.66a.66.66 0 1 0 1.32 0c0-.36-.29-.66-.65-.66m11-4.09c-.29 0-.55.08-.75.31c-.24.27-.43.59-.54.94c-.02.04 0 .07.03.09c.2.2.4.4.61.59c.1.09.2.18.32.25c.31.18.64.23.99.11c.45-.16.71-.6.66-1.11c-.07-.64-.68-1.19-1.32-1.18M8.5 8.27c-.2 0-.36.17-.36.37c0 .21.16.37.37.37s.37-.17.37-.37c0-.21-.17-.37-.38-.37M12.41 0c.1.02.17.08.24.14l1.52 1.52c.57.57.57 1.42 0 1.99l-3.23 3.23c-.19-.1-.38-.19-.56-.28c-.02-.01-.04-.05-.06-.07l-.91-1.94c-.04-.08-.07-.16-.1-.25l.04.04l.95.95c.03.03.07.05.1.06c.07.03.15-.01.18-.07c.04-.06.03-.14-.02-.2L9.1 3.65a.37.37 0 0 1-.09-.42a.39.39 0 0 1 .36-.21c.1.01.18.05.25.12l1.47 1.47c.06.05.16.05.22-.01s.07-.15.01-.22l-.04-.05L9.85 2.9a.37.37 0 0 1-.09-.42c.07-.13.2-.22.35-.21c.11 0 .19.05.27.12l1.44 1.45c.08.07.17.07.24.01c.08-.07.07-.17 0-.25l-1.45-1.44a.38.38 0 0 1-.02-.54c.16-.15.38-.14.54.02l1.45 1.44c.08.08.17.08.24.01s.07-.16-.01-.24L11.36 1.4c-.11-.11-.15-.25-.1-.39c.05-.15.16-.23.32-.25c.12-.01.22.04.31.13l1.43 1.43c.09.08.18.09.26.02c.07-.08.06-.17-.02-.25L12.12.65c-.11-.1-.15-.23-.11-.37q.045-.18.21-.24l.08-.03c.01 0 .02-.01.02-.01z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .uq21gubaz {
2
+ fill: currentColor;
3
+ d: path("M6 5v2h3V5h3v2h3v4h-3V9H9v2H6V9H3v2H0V7h3V5z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .wj6w53b5x {
2
+ fill: currentColor;
3
+ d: path("M10.12 8.74c.21.62.22 1.23.04 1.83c-.02.09-.04.19-.08.27l-.19.38c-.07.17-.1.29-.1.53l.02.37l-.01.11v.27H5.25l-.01-.15V11.3c.01-.35.06-.69.08-1.03c0-.1.06-.13.13-.13h.05c.6.01 1.21-.01 1.8-.13c.88-.18 1.69-.51 2.42-.99l.27-.19c.04-.03.07-.05.13-.09M7.96 0c.3.09.6.18.86.37c.39.31.61.68.6 1.17c0 .66.1 1.48-.08 1.8l-.26.12c-.12.05-.23.08-.38.08v.48l2.26.33v1.81h-.77l-.12.5c-.04.16-.07.32-.08.48c-.03.37-.24.6-.52.82C8.6 8.61 7.62 9 6.53 9.11c-.3.03-.6.01-.93.01l.14-.36c.02-.06.05-.12.08-.18c.12-.22.19-.44.19-.68L6 7.75c-.01-.16 0-.32 0-.5H4.46c.02-.58-.01-1.14.07-1.7c.09-.62.52-1.04 1.14-1.27c.21-.08.43-.16.65-.23c.1-.04.14-.09.15-.2c.04-.41-.05-.77-.32-1.08A.6.6 0 0 1 6 2.38v-.1c.02-.31-.02-.63.03-.93C6.18.64 6.64.21 7.38.03L7.47 0zM4 15v-1.5h7V15z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .xw9aoy2ge {
2
+ fill: currentColor;
3
+ d: path("m13.5 13l.5 2H1l.5-2zm-6-13q3 0 4.5 3v9.5H3V3q1.5-3 4.5-3m2 8h-4v1h4zm1-2h-6v1h6zM9 4H6v1h3z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .yimgu8b5h {
2
+ fill: currentColor;
3
+ d: path("M1 0v3h2v1l3 1V3h2V0zm10 0l-1 2v11l-2 2h6l-2-2V2zM3 5v2l3 1V6zm0 3v2l3 1V9zm0 3v3l1 1h1l1-1v-2z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .yuehshduq {
2
+ fill: currentColor;
3
+ d: path("M13.5 4.5L10 1h-.63C7.77.99 6.78.89 5 0L4 1l3 3l-7 7l1.5 1.5l7-7l2 2zM15 9h-4v2h1l.5 4h1l.5-4h1z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .yywrzcbcn {
2
+ fill: currentColor;
3
+ d: path("M11 8v6.5c0 .28-.23.5-.5.5L5 14.98zm-7 6.5v-6c0-.28.22-.5.5-.5h5zm5.46-8.08C8.98 7.1 8.26 7.5 7.5 7.5s-1.48-.4-1.96-1.08c-.47-.68-.65-1.57-.47-2.42h4.86c.18.85 0 1.74-.47 2.42m.37-2.92H5.17c-.36.01-.66-.38-.67-.87v-.09c.01-.45.26-.82.59-.86l4.67-.67c.18-.03.37.04.51.21c.14.16.23.4.23.65v.76c-.01.49-.31.88-.67.87");
4
+ }
@@ -0,0 +1,4 @@
1
+ .zrkyrvqla {
2
+ fill: currentColor;
3
+ d: path("M14.5 10c.28 0 .5.22.5.5V12H0v-1.5c0-.28.22-.5.5-.5zm-9-7c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h2c.28 0 .5.22.5.5s-.22.5-.5.5H7v.89l.46-.08c.63-.12 1.27-.25 1.59-.32c.69-.15 1.38-.31 2.08-.45c.14-.02.28-.03.43-.03L14.5 3c.25 0 .45.18.49.41l.01.09c0 .28-.22.51-.5.52l-1.55.09c-1.58.1-2.6.2-3.04.3l-.08.01c-.56.15-1.14.27-1.71.4c-.21.04-.42.05-.64.08l.25.31c.04.06.08.11.12.16c.42.58.83 1.72 1.27 2.29c.58.74 1.27 1.34 2.13 1.72l.27.11c.01.01.03.02.08.04L7.5 9.5V9c0-.55-.45-1-1-1h-1V6.5C5.5 5.67 4.83 5 4 5s-1.5.67-1.5 1.5V8H1V5H.5C.22 5 0 4.78 0 4.5S.22 4 .5 4H1V3H.5C.22 3 0 2.78 0 2.5S.22 2 .5 2h2c.28 0 .5.22.5.5s-.22.5-.5.5H2v1h4V3zm1 5.5c.28 0 .5.22.5.5v.5H.5V9c0-.28.22-.5.5-.5zM4 5.5c.55 0 1 .45 1 1s-.45 1-1 1s-1-.45-1-1s.45-1 1-1");
4
+ }
@@ -0,0 +1,4 @@
1
+ .zskhygbqm {
2
+ fill: currentColor;
3
+ d: path("M6 10v2h3v-2h3v2h3v3h-3v-2H9v2H6v-2H3v2H0v-3h3v-2zm0-5v2h3V5h3v2h3v3h-3V8H9v2H6V8H3v2H0V7h3V5zm0-5v2h3V0h3v2h3v3h-3V3H9v2H6V3H3v2H0V2h3V0z");
4
+ }
package/iconify.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "prefix": "pinhead",
3
3
  "info": {
4
4
  "name": "Pinhead Map Icons",
5
- "total": 2061,
5
+ "total": 2086,
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": 1779951095
31
+ "lastModified": 1782727257
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.3",
4
+ "version": "1.0.4",
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",
@@ -610,6 +610,10 @@
610
610
  "types": "./types/gfwqskkx.d.ts",
611
611
  "svelte": "./components/b/belgium-with-capital-star.svelte"
612
612
  },
613
+ "./bell": {
614
+ "types": "./types/gfwqskkx.d.ts",
615
+ "svelte": "./components/b/bell.svelte"
616
+ },
613
617
  "./bell-in-tall-gable-roofed-building": {
614
618
  "types": "./types/gfwqskkx.d.ts",
615
619
  "svelte": "./components/b/bell-in-tall-gable-roofed-building.svelte"
@@ -954,6 +958,10 @@
954
958
  "types": "./types/gfwqskkx.d.ts",
955
959
  "svelte": "./components/b/broadleaved-tree-in-water.svelte"
956
960
  },
961
+ "./bucket": {
962
+ "types": "./types/gfwqskkx.d.ts",
963
+ "svelte": "./components/b/bucket.svelte"
964
+ },
957
965
  "./budded-latin-cross": {
958
966
  "types": "./types/gfwqskkx.d.ts",
959
967
  "svelte": "./components/b/budded-latin-cross.svelte"
@@ -1042,6 +1050,10 @@
1042
1050
  "types": "./types/gfwqskkx.d.ts",
1043
1051
  "svelte": "./components/b/butterfly-with-stars-and-dots.svelte"
1044
1052
  },
1053
+ "./button": {
1054
+ "types": "./types/gfwqskkx.d.ts",
1055
+ "svelte": "./components/b/button.svelte"
1056
+ },
1045
1057
  "./c": {
1046
1058
  "types": "./types/gfwqskkx.d.ts",
1047
1059
  "svelte": "./components/c/c.svelte"
@@ -1294,6 +1306,10 @@
1294
1306
  "types": "./types/gfwqskkx.d.ts",
1295
1307
  "svelte": "./components/c/car-under-toll-gantry.svelte"
1296
1308
  },
1309
+ "./car-wheel-with-tire": {
1310
+ "types": "./types/gfwqskkx.d.ts",
1311
+ "svelte": "./components/c/car-wheel-with-tire.svelte"
1312
+ },
1297
1313
  "./car-with-checkmark": {
1298
1314
  "types": "./types/gfwqskkx.d.ts",
1299
1315
  "svelte": "./components/c/car-with-checkmark.svelte"
@@ -1598,6 +1614,10 @@
1598
1614
  "types": "./types/gfwqskkx.d.ts",
1599
1615
  "svelte": "./components/c/city-gate.svelte"
1600
1616
  },
1617
+ "./clapperboard": {
1618
+ "types": "./types/gfwqskkx.d.ts",
1619
+ "svelte": "./components/c/clapperboard.svelte"
1620
+ },
1601
1621
  "./classical-building": {
1602
1622
  "types": "./types/gfwqskkx.d.ts",
1603
1623
  "svelte": "./components/c/classical-building.svelte"
@@ -1614,6 +1634,10 @@
1614
1634
  "types": "./types/gfwqskkx.d.ts",
1615
1635
  "svelte": "./components/c/classical-building-with-flag.svelte"
1616
1636
  },
1637
+ "./classical-statue": {
1638
+ "types": "./types/gfwqskkx.d.ts",
1639
+ "svelte": "./components/c/classical-statue.svelte"
1640
+ },
1617
1641
  "./cleaver": {
1618
1642
  "types": "./types/gfwqskkx.d.ts",
1619
1643
  "svelte": "./components/c/cleaver.svelte"
@@ -1674,6 +1698,14 @@
1674
1698
  "types": "./types/gfwqskkx.d.ts",
1675
1699
  "svelte": "./components/c/coffee-mug-with-steam.svelte"
1676
1700
  },
1701
+ "./coffin": {
1702
+ "types": "./types/gfwqskkx.d.ts",
1703
+ "svelte": "./components/c/coffin.svelte"
1704
+ },
1705
+ "./coffin-with-latin-cross": {
1706
+ "types": "./types/gfwqskkx.d.ts",
1707
+ "svelte": "./components/c/coffin-with-latin-cross.svelte"
1708
+ },
1677
1709
  "./colorado": {
1678
1710
  "types": "./types/gfwqskkx.d.ts",
1679
1711
  "svelte": "./components/c/colorado.svelte"
@@ -2982,6 +3014,10 @@
2982
3014
  "types": "./types/gfwqskkx.d.ts",
2983
3015
  "svelte": "./components/h/hammer-and-inverted-shoe.svelte"
2984
3016
  },
3017
+ "./hammer-with-nail": {
3018
+ "types": "./types/gfwqskkx.d.ts",
3019
+ "svelte": "./components/h/hammer-with-nail.svelte"
3020
+ },
2985
3021
  "./hand": {
2986
3022
  "types": "./types/gfwqskkx.d.ts",
2987
3023
  "svelte": "./components/h/hand.svelte"
@@ -3134,6 +3170,10 @@
3134
3170
  "types": "./types/gfwqskkx.d.ts",
3135
3171
  "svelte": "./components/h/honeycomb.svelte"
3136
3172
  },
3173
+ "./horizontal-storage-tank-on-supports": {
3174
+ "types": "./types/gfwqskkx.d.ts",
3175
+ "svelte": "./components/h/horizontal-storage-tank-on-supports.svelte"
3176
+ },
3137
3177
  "./horn-cleat": {
3138
3178
  "types": "./types/gfwqskkx.d.ts",
3139
3179
  "svelte": "./components/h/horn-cleat.svelte"
@@ -3486,6 +3526,10 @@
3486
3526
  "types": "./types/gfwqskkx.d.ts",
3487
3527
  "svelte": "./components/l/lantern.svelte"
3488
3528
  },
3529
+ "./lantern-lamppost": {
3530
+ "types": "./types/gfwqskkx.d.ts",
3531
+ "svelte": "./components/l/lantern-lamppost.svelte"
3532
+ },
3489
3533
  "./laptop": {
3490
3534
  "types": "./types/gfwqskkx.d.ts",
3491
3535
  "svelte": "./components/l/laptop.svelte"
@@ -3870,6 +3914,10 @@
3870
3914
  "types": "./types/gfwqskkx.d.ts",
3871
3915
  "svelte": "./components/m/memorial-stone-with-inscription.svelte"
3872
3916
  },
3917
+ "./memorial-stone-with-latin-cross": {
3918
+ "types": "./types/gfwqskkx.d.ts",
3919
+ "svelte": "./components/m/memorial-stone-with-latin-cross.svelte"
3920
+ },
3873
3921
  "./mens-restroom-symbol": {
3874
3922
  "types": "./types/gfwqskkx.d.ts",
3875
3923
  "svelte": "./components/m/mens-restroom-symbol.svelte"
@@ -3906,6 +3954,10 @@
3906
3954
  "types": "./types/gfwqskkx.d.ts",
3907
3955
  "svelte": "./components/m/milestone.svelte"
3908
3956
  },
3957
+ "./military-police-officer": {
3958
+ "types": "./types/gfwqskkx.d.ts",
3959
+ "svelte": "./components/m/military-police-officer.svelte"
3960
+ },
3909
3961
  "./military-police-officer-with-stop-arm": {
3910
3962
  "types": "./types/gfwqskkx.d.ts",
3911
3963
  "svelte": "./components/m/military-police-officer-with-stop-arm.svelte"
@@ -4310,6 +4362,10 @@
4310
4362
  "types": "./types/gfwqskkx.d.ts",
4311
4363
  "svelte": "./components/o/office-building-with-flag.svelte"
4312
4364
  },
4365
+ "./officer": {
4366
+ "types": "./types/gfwqskkx.d.ts",
4367
+ "svelte": "./components/o/officer.svelte"
4368
+ },
4313
4369
  "./officer-with-stop-arm": {
4314
4370
  "types": "./types/gfwqskkx.d.ts",
4315
4371
  "svelte": "./components/o/officer-with-stop-arm.svelte"
@@ -4370,6 +4426,10 @@
4370
4426
  "types": "./types/gfwqskkx.d.ts",
4371
4427
  "svelte": "./components/o/open-chest-with-treasure-and-sparkles.svelte"
4372
4428
  },
4429
+ "./open-scissors-crossing-handled-comb": {
4430
+ "types": "./types/gfwqskkx.d.ts",
4431
+ "svelte": "./components/o/open-scissors-crossing-handled-comb.svelte"
4432
+ },
4373
4433
  "./ordnance-survey-benchmark": {
4374
4434
  "types": "./types/gfwqskkx.d.ts",
4375
4435
  "svelte": "./components/o/ordnance-survey-benchmark.svelte"
@@ -4438,6 +4498,10 @@
4438
4498
  "types": "./types/gfwqskkx.d.ts",
4439
4499
  "svelte": "./components/p/paint-roller.svelte"
4440
4500
  },
4501
+ "./paintbrush": {
4502
+ "types": "./types/gfwqskkx.d.ts",
4503
+ "svelte": "./components/p/paintbrush.svelte"
4504
+ },
4441
4505
  "./palace": {
4442
4506
  "types": "./types/gfwqskkx.d.ts",
4443
4507
  "svelte": "./components/p/palace.svelte"
@@ -4994,6 +5058,10 @@
4994
5058
  "types": "./types/gfwqskkx.d.ts",
4995
5059
  "svelte": "./components/p/person-running.svelte"
4996
5060
  },
5061
+ "./person-running-after-person": {
5062
+ "types": "./types/gfwqskkx.d.ts",
5063
+ "svelte": "./components/p/person-running-after-person.svelte"
5064
+ },
4997
5065
  "./person-shoveling-dirt": {
4998
5066
  "types": "./types/gfwqskkx.d.ts",
4999
5067
  "svelte": "./components/p/person-shoveling-dirt.svelte"
@@ -5542,6 +5610,10 @@
5542
5610
  "types": "./types/gfwqskkx.d.ts",
5543
5611
  "svelte": "./components/p/pixel-apple.svelte"
5544
5612
  },
5613
+ "./pixel-arrows-left-right-above-water": {
5614
+ "types": "./types/gfwqskkx.d.ts",
5615
+ "svelte": "./components/p/pixel-arrows-left-right-above-water.svelte"
5616
+ },
5545
5617
  "./pixel-bicycle": {
5546
5618
  "types": "./types/gfwqskkx.d.ts",
5547
5619
  "svelte": "./components/p/pixel-bicycle.svelte"
@@ -5638,6 +5710,10 @@
5638
5710
  "types": "./types/gfwqskkx.d.ts",
5639
5711
  "svelte": "./components/p/pixel-exclamation-point.svelte"
5640
5712
  },
5713
+ "./pixel-fork-and-knife": {
5714
+ "types": "./types/gfwqskkx.d.ts",
5715
+ "svelte": "./components/p/pixel-fork-and-knife.svelte"
5716
+ },
5641
5717
  "./pixel-gasoline-pump": {
5642
5718
  "types": "./types/gfwqskkx.d.ts",
5643
5719
  "svelte": "./components/p/pixel-gasoline-pump.svelte"
@@ -5718,6 +5794,14 @@
5718
5794
  "types": "./types/gfwqskkx.d.ts",
5719
5795
  "svelte": "./components/p/pixel-transit-vehicle-on-railway-track.svelte"
5720
5796
  },
5797
+ "./pixel-water": {
5798
+ "types": "./types/gfwqskkx.d.ts",
5799
+ "svelte": "./components/p/pixel-water.svelte"
5800
+ },
5801
+ "./pixel-waters": {
5802
+ "types": "./types/gfwqskkx.d.ts",
5803
+ "svelte": "./components/p/pixel-waters.svelte"
5804
+ },
5721
5805
  "./pixel-yen-yuan": {
5722
5806
  "types": "./types/gfwqskkx.d.ts",
5723
5807
  "svelte": "./components/p/pixel-yen-yuan.svelte"
@@ -6342,6 +6426,10 @@
6342
6426
  "types": "./types/gfwqskkx.d.ts",
6343
6427
  "svelte": "./components/s/scissors-open.svelte"
6344
6428
  },
6429
+ "./screw-beside-nail": {
6430
+ "types": "./types/gfwqskkx.d.ts",
6431
+ "svelte": "./components/s/screw-beside-nail.svelte"
6432
+ },
6345
6433
  "./sculpture": {
6346
6434
  "types": "./types/gfwqskkx.d.ts",
6347
6435
  "svelte": "./components/s/sculpture.svelte"
@@ -7090,6 +7178,10 @@
7090
7178
  "types": "./types/gfwqskkx.d.ts",
7091
7179
  "svelte": "./components/t/table-with-umbrella-and-chairs.svelte"
7092
7180
  },
7181
+ "./tabletop-microphone": {
7182
+ "types": "./types/gfwqskkx.d.ts",
7183
+ "svelte": "./components/t/tabletop-microphone.svelte"
7184
+ },
7093
7185
  "./taco": {
7094
7186
  "types": "./types/gfwqskkx.d.ts",
7095
7187
  "svelte": "./components/t/taco.svelte"
@@ -7154,6 +7246,10 @@
7154
7246
  "types": "./types/gfwqskkx.d.ts",
7155
7247
  "svelte": "./components/t/teapot.svelte"
7156
7248
  },
7249
+ "./telegraph-key": {
7250
+ "types": "./types/gfwqskkx.d.ts",
7251
+ "svelte": "./components/t/telegraph-key.svelte"
7252
+ },
7157
7253
  "./telescope": {
7158
7254
  "types": "./types/gfwqskkx.d.ts",
7159
7255
  "svelte": "./components/t/telescope.svelte"
@@ -7578,6 +7674,10 @@
7578
7674
  "types": "./types/gfwqskkx.d.ts",
7579
7675
  "svelte": "./components/t/tshirt.svelte"
7580
7676
  },
7677
+ "./tshirt-on-clothes-hanger-and-folded-linens": {
7678
+ "types": "./types/gfwqskkx.d.ts",
7679
+ "svelte": "./components/t/tshirt-on-clothes-hanger-and-folded-linens.svelte"
7680
+ },
7581
7681
  "./tube": {
7582
7682
  "types": "./types/gfwqskkx.d.ts",
7583
7683
  "svelte": "./components/t/tube.svelte"
@@ -1,4 +0,0 @@
1
- .i11fzvx7k {
2
- fill: currentColor;
3
- d: path("M3 4.5V12h9V4.5C12 2.57 10.43 1 8.5 1h-2C4.57 1 3 2.57 3 4.5m-1 8L1.14 14H14l-1-1.5z");
4
- }
@@ -1,4 +0,0 @@
1
- .zr-agdcuy {
2
- fill: currentColor;
3
- d: path("m13 12.5l1 1.5H1.14L2 12.5zM8.5 1C10.43 1 12 2.57 12 4.5V12H3V4.5C3 2.57 4.57 1 6.5 1Zm1 7h-4v1h4zm1-2h-6v1h6zM9 4H6v1h3z");
4
- }