@central-icons-react-native/round-filled-radius-3-stroke-1 1.1.282 → 1.1.284
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/IconCompassPointer/index.d.ts +4 -0
- package/IconCompassPointer/index.js +3 -0
- package/IconCompassPointer/index.js.map +11 -0
- package/IconCompassPointer/index.mjs +3 -0
- package/IconCompassPointer/index.mjs.map +11 -0
- package/IconPinFocus/index.d.ts +4 -0
- package/IconPinFocus/index.js +3 -0
- package/IconPinFocus/index.js.map +11 -0
- package/IconPinFocus/index.mjs +3 -0
- package/IconPinFocus/index.mjs.map +11 -0
- package/README.md +2 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var y=Object.create;var{getPrototypeOf:F,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:L}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var S,b,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var s=o?S??=new WeakMap:b??=new WeakMap,l=s.get(r);if(l)return l}t=r!=null?y(F(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let C of f(r))if(!i.call(p,C))n(p,C,{get:B.bind(r,C),enumerable:!0});if(e)s.set(r,p);return p},P=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!i.call(o,e))n(o,e,{get:B.bind(r,e),enumerable:!(t=L(r,e))||t.enumerable})}return c.set(r,o),o},c;var d=(r)=>r;function w(r,o){this[r]=d.bind(null,o)}var u=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:w.bind(o,t)})};var $={};u($,{CentralIconBase:()=>a});module.exports=P($);var x=I(require("react")),g=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return x.default.createElement(g.Svg,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var M={};u(M,{default:()=>Z,IconCompassPointer:()=>h});module.exports=P(M);var m=I(require("react"));var v=require("react-native-svg"),h=(r)=>{return m.default.createElement(a,{...r},m.default.createElement(v.Path,{d:"M9.72996 3.45613C10.624 1.52101 13.3748 1.52126 14.269 3.45613L20.644 17.2638C21.6566 19.4569 19.2785 21.6679 17.1645 20.4991L12.7251 18.045C12.2736 17.7957 11.7253 17.7955 11.2739 18.045L6.83446 20.4991C4.72049 21.6677 2.34244 19.4568 3.35496 17.2638L9.72996 3.45613Z",fill:"currentColor"}))},Z=h;
|
|
2
|
+
|
|
3
|
+
//# debugId=A45A5D5E2214E9C464756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointer/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCompassPointer: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M9.72996 3.45613C10.624 1.52101 13.3748 1.52126 14.269 3.45613L20.644 17.2638C21.6566 19.4569 19.2785 21.6679 17.1645 20.4991L12.7251 18.045C12.2736 17.7957 11.7253 17.7955 11.2739 18.045L6.83446 20.4991C4.72049 21.6677 2.34244 19.4568 3.35496 17.2638L9.72996 3.45613Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointer;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,8ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA+C,CAAC,IAAU,CACrE,OAAO,wBAA0U,EAA1U,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,+QAA+Q,KAAK,eAAc,CAAI,GAGpU",
|
|
9
|
+
"debugId": "A45A5D5E2214E9C464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>{return p.createElement(C,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as a}from"react-native-svg";var m=(o)=>{return e.createElement(t,{...o},e.createElement(a,{d:"M9.72996 3.45613C10.624 1.52101 13.3748 1.52126 14.269 3.45613L20.644 17.2638C21.6566 19.4569 19.2785 21.6679 17.1645 20.4991L12.7251 18.045C12.2736 17.7957 11.7253 17.7955 11.2739 18.045L6.83446 20.4991C4.72049 21.6677 2.34244 19.4568 3.35496 17.2638L9.72996 3.45613Z",fill:"currentColor"}))},g=m;export{g as default,m as IconCompassPointer};
|
|
2
|
+
|
|
3
|
+
//# debugId=18E8383BDC928B6264756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointer/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCompassPointer: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M9.72996 3.45613C10.624 1.52101 13.3748 1.52126 14.269 3.45613L20.644 17.2638C21.6566 19.4569 19.2785 21.6679 17.1645 20.4991L12.7251 18.045C12.2736 17.7957 11.7253 17.7955 11.2739 18.045L6.83446 20.4991C4.72049 21.6677 2.34244 19.4568 3.35496 17.2638L9.72996 3.45613Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointer;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAA0U,EAA1U,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,+QAA+Q,KAAK,eAAc,CAAI,GAGpU",
|
|
9
|
+
"debugId": "18E8383BDC928B6264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:g,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:M}=Object,a=Object.prototype.hasOwnProperty;function d(C){return this[C]}var Z,F,B=(C,r,o)=>{var e=C!=null&&typeof C==="object";if(e){var u=r?Z??=new WeakMap:F??=new WeakMap,m=u.get(C);if(m)return m}o=C!=null?x(g(C)):{};let p=r||!C||!C.__esModule?t(o,"default",{value:C,enumerable:!0}):o;for(let f of c(C))if(!a.call(p,f))t(p,f,{get:d.bind(C,f),enumerable:!0});if(e)u.set(C,p);return p},H=(C)=>{var r=(s??=new WeakMap).get(C),o;if(r)return r;if(r=t({},"__esModule",{value:!0}),C&&typeof C==="object"||typeof C==="function"){for(var e of c(C))if(!a.call(r,e))t(r,e,{get:d.bind(C,e),enumerable:!(o=M(C,e))||o.enumerable})}return s.set(C,r),r},s;var h=(C)=>C;function y(C,r){this[C]=h.bind(null,r)}var I=(C,r)=>{for(var o in r)t(C,o,{get:r[o],enumerable:!0,configurable:!0,set:y.bind(r,o)})};var S={};I(S,{CentralIconBase:()=>i});module.exports=H(S);var P=B(require("react")),V=require("react-native-svg"),i=({children:C,size:r=24,...o})=>{return P.default.createElement(V.Svg,{...o,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};var b={};I(b,{default:()=>w,IconPinFocus:()=>v});module.exports=H(b);var n=B(require("react"));var l=require("react-native-svg"),v=(C)=>{return n.default.createElement(i,{...C},n.default.createElement(l.Path,{d:"M3.5 15.5C3.77614 15.5 4 15.7239 4 16V17.5C4 18.8807 5.11929 20 6.5 20H8C8.27614 20 8.5 20.2239 8.5 20.5C8.5 20.7761 8.27614 21 8 21H6.5C4.567 21 3 19.433 3 17.5V16C3 15.7239 3.22386 15.5 3.5 15.5Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M20.5 15.5C20.7761 15.5 21 15.7239 21 16V17.5C21 19.433 19.433 21 17.5 21H16C15.7239 21 15.5 20.7761 15.5 20.5C15.5 20.2239 15.7239 20 16 20H17.5C18.8807 20 20 18.8807 20 17.5V16C20 15.7239 20.2239 15.5 20.5 15.5Z",fill:"currentColor"}),n.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 6.9375C14.2091 6.9375 16 8.72836 16 10.9375C16 11.99 15.4405 13.073 14.7783 13.9932C14.1108 14.9208 13.3108 15.7215 12.7744 16.2168C12.3334 16.624 11.6666 16.624 11.2256 16.2168C10.6892 15.7215 9.88922 14.9208 9.22168 13.9932C8.55953 13.073 8 11.99 8 10.9375C8 8.72836 9.79086 6.9375 12 6.9375ZM12 10.25C11.5858 10.25 11.25 10.5858 11.25 11C11.25 11.4142 11.5858 11.75 12 11.75C12.4142 11.75 12.75 11.4142 12.75 11C12.75 10.5858 12.4142 10.25 12 10.25Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M8 3C8.27614 3 8.5 3.22386 8.5 3.5C8.5 3.77614 8.27614 4 8 4H6.5C5.11929 4 4 5.11929 4 6.5V8C4 8.27614 3.77614 8.5 3.5 8.5C3.22386 8.5 3 8.27614 3 8V6.5C3 4.567 4.567 3 6.5 3H8Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M17.5 3C19.433 3 21 4.567 21 6.5V8C21 8.27614 20.7761 8.5 20.5 8.5C20.2239 8.5 20 8.27614 20 8V6.5C20 5.11929 18.8807 4 17.5 4H16C15.7239 4 15.5 3.77614 15.5 3.5C15.5 3.22386 15.7239 3 16 3H17.5Z",fill:"currentColor"}))},w=v;
|
|
2
|
+
|
|
3
|
+
//# debugId=274567288A8C085E64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPinFocus/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPinFocus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 15.5C3.77614 15.5 4 15.7239 4 16V17.5C4 18.8807 5.11929 20 6.5 20H8C8.27614 20 8.5 20.2239 8.5 20.5C8.5 20.7761 8.27614 21 8 21H6.5C4.567 21 3 19.433 3 17.5V16C3 15.7239 3.22386 15.5 3.5 15.5Z\" fill=\"currentColor\"/><Path d=\"M20.5 15.5C20.7761 15.5 21 15.7239 21 16V17.5C21 19.433 19.433 21 17.5 21H16C15.7239 21 15.5 20.7761 15.5 20.5C15.5 20.2239 15.7239 20 16 20H17.5C18.8807 20 20 18.8807 20 17.5V16C20 15.7239 20.2239 15.5 20.5 15.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 6.9375C14.2091 6.9375 16 8.72836 16 10.9375C16 11.99 15.4405 13.073 14.7783 13.9932C14.1108 14.9208 13.3108 15.7215 12.7744 16.2168C12.3334 16.624 11.6666 16.624 11.2256 16.2168C10.6892 15.7215 9.88922 14.9208 9.22168 13.9932C8.55953 13.073 8 11.99 8 10.9375C8 8.72836 9.79086 6.9375 12 6.9375ZM12 10.25C11.5858 10.25 11.25 10.5858 11.25 11C11.25 11.4142 11.5858 11.75 12 11.75C12.4142 11.75 12.75 11.4142 12.75 11C12.75 10.5858 12.4142 10.25 12 10.25Z\" fill=\"currentColor\"/><Path d=\"M8 3C8.27614 3 8.5 3.22386 8.5 3.5C8.5 3.77614 8.27614 4 8 4H6.5C5.11929 4 4 5.11929 4 6.5V8C4 8.27614 3.77614 8.5 3.5 8.5C3.22386 8.5 3 8.27614 3 8V6.5C3 4.567 4.567 3 6.5 3H8Z\" fill=\"currentColor\"/><Path d=\"M17.5 3C19.433 3 21 4.567 21 6.5V8C21 8.27614 20.7761 8.5 20.5 8.5C20.2239 8.5 20 8.27614 20 8V6.5C20 5.11929 18.8807 4 17.5 4H16C15.7239 4 15.5 3.77614 15.5 3.5C15.5 3.22386 15.7239 3 16 3H17.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinFocus;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,wECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAA07C,EAA17C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,wMAAwM,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wNAAwN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2cAA2c,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oLAAoL,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sMAAsM,KAAK,eAAc,CAAI,GAGp7C",
|
|
9
|
+
"debugId": "274567288A8C085E64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import t from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:C=24,...l})=>{return t.createElement(p,{...l,width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},e)};import r from"react";import{Path as o}from"react-native-svg";var f=(e)=>{return r.createElement(n,{...e},r.createElement(o,{d:"M3.5 15.5C3.77614 15.5 4 15.7239 4 16V17.5C4 18.8807 5.11929 20 6.5 20H8C8.27614 20 8.5 20.2239 8.5 20.5C8.5 20.7761 8.27614 21 8 21H6.5C4.567 21 3 19.433 3 17.5V16C3 15.7239 3.22386 15.5 3.5 15.5Z",fill:"currentColor"}),r.createElement(o,{d:"M20.5 15.5C20.7761 15.5 21 15.7239 21 16V17.5C21 19.433 19.433 21 17.5 21H16C15.7239 21 15.5 20.7761 15.5 20.5C15.5 20.2239 15.7239 20 16 20H17.5C18.8807 20 20 18.8807 20 17.5V16C20 15.7239 20.2239 15.5 20.5 15.5Z",fill:"currentColor"}),r.createElement(o,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 6.9375C14.2091 6.9375 16 8.72836 16 10.9375C16 11.99 15.4405 13.073 14.7783 13.9932C14.1108 14.9208 13.3108 15.7215 12.7744 16.2168C12.3334 16.624 11.6666 16.624 11.2256 16.2168C10.6892 15.7215 9.88922 14.9208 9.22168 13.9932C8.55953 13.073 8 11.99 8 10.9375C8 8.72836 9.79086 6.9375 12 6.9375ZM12 10.25C11.5858 10.25 11.25 10.5858 11.25 11C11.25 11.4142 11.5858 11.75 12 11.75C12.4142 11.75 12.75 11.4142 12.75 11C12.75 10.5858 12.4142 10.25 12 10.25Z",fill:"currentColor"}),r.createElement(o,{d:"M8 3C8.27614 3 8.5 3.22386 8.5 3.5C8.5 3.77614 8.27614 4 8 4H6.5C5.11929 4 4 5.11929 4 6.5V8C4 8.27614 3.77614 8.5 3.5 8.5C3.22386 8.5 3 8.27614 3 8V6.5C3 4.567 4.567 3 6.5 3H8Z",fill:"currentColor"}),r.createElement(o,{d:"M17.5 3C19.433 3 21 4.567 21 6.5V8C21 8.27614 20.7761 8.5 20.5 8.5C20.2239 8.5 20 8.27614 20 8V6.5C20 5.11929 18.8807 4 17.5 4H16C15.7239 4 15.5 3.77614 15.5 3.5C15.5 3.22386 15.7239 3 16 3H17.5Z",fill:"currentColor"}))},P=f;export{P as default,f as IconPinFocus};
|
|
2
|
+
|
|
3
|
+
//# debugId=2DAC5B44251B339764756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPinFocus/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPinFocus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 15.5C3.77614 15.5 4 15.7239 4 16V17.5C4 18.8807 5.11929 20 6.5 20H8C8.27614 20 8.5 20.2239 8.5 20.5C8.5 20.7761 8.27614 21 8 21H6.5C4.567 21 3 19.433 3 17.5V16C3 15.7239 3.22386 15.5 3.5 15.5Z\" fill=\"currentColor\"/><Path d=\"M20.5 15.5C20.7761 15.5 21 15.7239 21 16V17.5C21 19.433 19.433 21 17.5 21H16C15.7239 21 15.5 20.7761 15.5 20.5C15.5 20.2239 15.7239 20 16 20H17.5C18.8807 20 20 18.8807 20 17.5V16C20 15.7239 20.2239 15.5 20.5 15.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 6.9375C14.2091 6.9375 16 8.72836 16 10.9375C16 11.99 15.4405 13.073 14.7783 13.9932C14.1108 14.9208 13.3108 15.7215 12.7744 16.2168C12.3334 16.624 11.6666 16.624 11.2256 16.2168C10.6892 15.7215 9.88922 14.9208 9.22168 13.9932C8.55953 13.073 8 11.99 8 10.9375C8 8.72836 9.79086 6.9375 12 6.9375ZM12 10.25C11.5858 10.25 11.25 10.5858 11.25 11C11.25 11.4142 11.5858 11.75 12 11.75C12.4142 11.75 12.75 11.4142 12.75 11C12.75 10.5858 12.4142 10.25 12 10.25Z\" fill=\"currentColor\"/><Path d=\"M8 3C8.27614 3 8.5 3.22386 8.5 3.5C8.5 3.77614 8.27614 4 8 4H6.5C5.11929 4 4 5.11929 4 6.5V8C4 8.27614 3.77614 8.5 3.5 8.5C3.22386 8.5 3 8.27614 3 8V6.5C3 4.567 4.567 3 6.5 3H8Z\" fill=\"currentColor\"/><Path d=\"M17.5 3C19.433 3 21 4.567 21 6.5V8C21 8.27614 20.7761 8.5 20.5 8.5C20.2239 8.5 20 8.27614 20 8V6.5C20 5.11929 18.8807 4 17.5 4H16C15.7239 4 15.5 3.77614 15.5 3.5C15.5 3.22386 15.7239 3 16 3H17.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinFocus;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAA07C,EAA17C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,wMAAwM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wNAAwN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2cAA2c,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oLAAoL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sMAAsM,KAAK,eAAc,CAAI,GAGp7C",
|
|
9
|
+
"debugId": "2DAC5B44251B339764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -394,6 +394,7 @@ Below is a complete list of available icons:
|
|
|
394
394
|
- IconChevronTriangleLeftMedium
|
|
395
395
|
- IconChevronTriangleDownMedium
|
|
396
396
|
- IconChevronTriangleUpMedium
|
|
397
|
+
- IconCompassPointer
|
|
397
398
|
|
|
398
399
|
### Augmented Reality
|
|
399
400
|
|
|
@@ -1396,6 +1397,7 @@ Below is a complete list of available icons:
|
|
|
1396
1397
|
- IconStandingGlobe
|
|
1397
1398
|
- IconMapPin2
|
|
1398
1399
|
- IconMapEditFlat
|
|
1400
|
+
- IconPinFocus
|
|
1399
1401
|
|
|
1400
1402
|
### Nature & Energy
|
|
1401
1403
|
|