@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.281 → 1.1.282
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/IconPresentationAnalytics/index.d.ts +4 -0
- package/IconPresentationAnalytics/index.js +3 -0
- package/IconPresentationAnalytics/index.js.map +11 -0
- package/IconPresentationAnalytics/index.mjs +3 -0
- package/IconPresentationAnalytics/index.mjs.map +11 -0
- package/README.md +1 -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 +1 -0
- package/index.js +3 -0
- package/index.mjs +1 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +2 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:V,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var M,Z,B=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var f=o?M??=new WeakMap:Z??=new WeakMap,i=f.get(r);if(i)return i}e=r!=null?g(V(r)):{};let C=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let a of c(r))if(!u.call(C,a))t(C,a,{get:d.bind(r,a),enumerable:!0});if(n)f.set(r,C);return C},I=(r)=>{var o=(m??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of c(r))if(!u.call(o,n))t(o,n,{get:d.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return m.set(r,o),o},m;var h=(r)=>r;function F(r,o){this[r]=h.bind(null,o)}var P=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:F.bind(o,e)})};var S={};P(S,{CentralIconBase:()=>s});module.exports=I(S);var v=B(require("react")),x=require("react-native-svg"),s=({children:r,size:o=24,...e})=>{return v.default.createElement(x.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var b={};P(b,{default:()=>w,IconPresentationAnalytics:()=>H});module.exports=I(b);var l=B(require("react"));var p=require("react-native-svg"),H=(r)=>{return l.default.createElement(s,{...r},l.default.createElement(p.Path,{d:"M7 16C9.76142 16 12 18.2386 12 21H2C2 18.2386 4.23858 16 7 16Z",fill:"currentColor"}),l.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M22 20H13.9268C13.6408 18.0012 12.5129 16.2744 10.9111 15.1934C11.4393 14.4278 11.75 13.5005 11.75 12.5C11.75 9.87665 9.62335 7.75 7 7.75C5.31984 7.75 3.84446 8.62299 3 9.93945V3H22V20ZM14 15H16V10H14V15ZM18 15H20V7H18V15Z",fill:"currentColor"}),l.default.createElement(p.Path,{d:"M7 9.75C8.51878 9.75 9.75 10.9812 9.75 12.5C9.75 14.0188 8.51878 15.25 7 15.25C5.48122 15.25 4.25 14.0188 4.25 12.5C4.25 10.9812 5.48122 9.75 7 9.75Z",fill:"currentColor"}))},w=H;
|
|
2
|
+
|
|
3
|
+
//# debugId=1091EAB045FCD68564756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPresentationAnalytics/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 IconPresentationAnalytics: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M7 16C9.76142 16 12 18.2386 12 21H2C2 18.2386 4.23858 16 7 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M22 20H13.9268C13.6408 18.0012 12.5129 16.2744 10.9111 15.1934C11.4393 14.4278 11.75 13.5005 11.75 12.5C11.75 9.87665 9.62335 7.75 7 7.75C5.31984 7.75 3.84446 8.62299 3 9.93945V3H22V20ZM14 15H16V10H14V15ZM18 15H20V7H18V15Z\" fill=\"currentColor\"/><Path d=\"M7 9.75C8.51878 9.75 9.75 10.9812 9.75 12.5C9.75 14.0188 8.51878 15.25 7 15.25C5.48122 15.25 4.25 14.0188 4.25 12.5C4.25 10.9812 5.48122 9.75 7 9.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPresentationAnalytics;\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,qFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsD,CAAC,IAAU,CAC5E,OAAO,wBAAqlB,EAArlB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,iEAAiE,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iOAAiO,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAc,CAAI,GAG/kB",
|
|
9
|
+
"debugId": "1091EAB045FCD68564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";import{Svg as p}from"react-native-svg";var t=({children:e,size:r=24,...l})=>{return C.createElement(p,{...l,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e)};import o from"react";import{Path as n}from"react-native-svg";var a=(e)=>{return o.createElement(t,{...e},o.createElement(n,{d:"M7 16C9.76142 16 12 18.2386 12 21H2C2 18.2386 4.23858 16 7 16Z",fill:"currentColor"}),o.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M22 20H13.9268C13.6408 18.0012 12.5129 16.2744 10.9111 15.1934C11.4393 14.4278 11.75 13.5005 11.75 12.5C11.75 9.87665 9.62335 7.75 7 7.75C5.31984 7.75 3.84446 8.62299 3 9.93945V3H22V20ZM14 15H16V10H14V15ZM18 15H20V7H18V15Z",fill:"currentColor"}),o.createElement(n,{d:"M7 9.75C8.51878 9.75 9.75 10.9812 9.75 12.5C9.75 14.0188 8.51878 15.25 7 15.25C5.48122 15.25 4.25 14.0188 4.25 12.5C4.25 10.9812 5.48122 9.75 7 9.75Z",fill:"currentColor"}))},v=a;export{v as default,a as IconPresentationAnalytics};
|
|
2
|
+
|
|
3
|
+
//# debugId=9617204E036ACD6E64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPresentationAnalytics/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 IconPresentationAnalytics: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M7 16C9.76142 16 12 18.2386 12 21H2C2 18.2386 4.23858 16 7 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M22 20H13.9268C13.6408 18.0012 12.5129 16.2744 10.9111 15.1934C11.4393 14.4278 11.75 13.5005 11.75 12.5C11.75 9.87665 9.62335 7.75 7 7.75C5.31984 7.75 3.84446 8.62299 3 9.93945V3H22V20ZM14 15H16V10H14V15ZM18 15H20V7H18V15Z\" fill=\"currentColor\"/><Path d=\"M7 9.75C8.51878 9.75 9.75 10.9812 9.75 12.5C9.75 14.0188 8.51878 15.25 7 15.25C5.48122 15.25 4.25 14.0188 4.25 12.5C4.25 10.9812 5.48122 9.75 7 9.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPresentationAnalytics;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAqlB,EAArlB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,iEAAiE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iOAAiO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAc,CAAI,GAG/kB",
|
|
9
|
+
"debugId": "9617204E036ACD6E64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|