@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.264 → 1.1.265
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/IconEnter/index.d.ts +4 -0
- package/IconEnter/index.js +3 -0
- package/IconEnter/index.js.map +11 -0
- package/IconEnter/index.mjs +3 -0
- package/IconEnter/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:H,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var y,F,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?y??=new WeakMap:F??=new WeakMap,s=m.get(r);if(s)return s}e=r!=null?g(H(r)):{};let C=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let p of f(r))if(!i.call(C,p))n(C,p,{get:u.bind(r,p),enumerable:!0});if(t)m.set(r,C);return C},I=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of f(r))if(!i.call(o,t))n(o,t,{get:u.bind(r,t),enumerable:!(e=h(r,t))||e.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var d=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var w={};d(w,{CentralIconBase:()=>l});module.exports=I(w);var v=B(require("react")),x=require("react-native-svg"),l=({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 L={};d(L,{default:()=>M,IconEnter:()=>V});module.exports=I(L);var a=B(require("react"));var P=require("react-native-svg"),V=(r)=>{return a.default.createElement(l,{...r},a.default.createElement(P.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V11.5C3 10.1193 4.11929 9 5.5 9H7.5C8.32843 9 9 8.32843 9 7.5V5.5C9 4.11929 10.1193 3 11.5 3H18.5ZM15 9C14.7239 9 14.5 9.22386 14.5 9.5V13C14.5 13.8284 13.8284 14.5 13 14.5H11V13.2002C10.9998 12.7979 10.5484 12.5603 10.2168 12.7881L7.59961 14.5879C7.31063 14.7866 7.31063 15.2134 7.59961 15.4121L10.2168 17.2119C10.5484 17.4397 10.9998 17.2021 11 16.7998V15.5H13C14.3807 15.5 15.5 14.3807 15.5 13V9.5C15.5 9.22386 15.2761 9 15 9Z",fill:"currentColor"}))},M=V;
|
|
2
|
+
|
|
3
|
+
//# debugId=7F282D1540A3DE7164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconEnter/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 IconEnter: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V11.5C3 10.1193 4.11929 9 5.5 9H7.5C8.32843 9 9 8.32843 9 7.5V5.5C9 4.11929 10.1193 3 11.5 3H18.5ZM15 9C14.7239 9 14.5 9.22386 14.5 9.5V13C14.5 13.8284 13.8284 14.5 13 14.5H11V13.2002C10.9998 12.7979 10.5484 12.5603 10.2168 12.7881L7.59961 14.5879C7.31063 14.7866 7.31063 15.2134 7.59961 15.4121L10.2168 17.2119C10.5484 17.4397 10.9998 17.2021 11 16.7998V15.5H13C14.3807 15.5 15.5 14.3807 15.5 13V9.5C15.5 9.22386 15.2761 9 15 9Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEnter;\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,qECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAAunB,EAAvnB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,shBAAshB,KAAK,eAAc,CAAI,GAGjnB",
|
|
9
|
+
"debugId": "7F282D1540A3DE7164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>{return C.createElement(p,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as l}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V11.5C3 10.1193 4.11929 9 5.5 9H7.5C8.32843 9 9 8.32843 9 7.5V5.5C9 4.11929 10.1193 3 11.5 3H18.5ZM15 9C14.7239 9 14.5 9.22386 14.5 9.5V13C14.5 13.8284 13.8284 14.5 13 14.5H11V13.2002C10.9998 12.7979 10.5484 12.5603 10.2168 12.7881L7.59961 14.5879C7.31063 14.7866 7.31063 15.2134 7.59961 15.4121L10.2168 17.2119C10.5484 17.4397 10.9998 17.2021 11 16.7998V15.5H13C14.3807 15.5 15.5 14.3807 15.5 13V9.5C15.5 9.22386 15.2761 9 15 9Z",fill:"currentColor"}))},x=a;export{x as default,a as IconEnter};
|
|
2
|
+
|
|
3
|
+
//# debugId=323F1C6376E399A264756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconEnter/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 IconEnter: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V11.5C3 10.1193 4.11929 9 5.5 9H7.5C8.32843 9 9 8.32843 9 7.5V5.5C9 4.11929 10.1193 3 11.5 3H18.5ZM15 9C14.7239 9 14.5 9.22386 14.5 9.5V13C14.5 13.8284 13.8284 14.5 13 14.5H11V13.2002C10.9998 12.7979 10.5484 12.5603 10.2168 12.7881L7.59961 14.5879C7.31063 14.7866 7.31063 15.2134 7.59961 15.4121L10.2168 17.2119C10.5484 17.4397 10.9998 17.2021 11 16.7998V15.5H13C14.3807 15.5 15.5 14.3807 15.5 13V9.5C15.5 9.22386 15.2761 9 15 9Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEnter;\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,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAAunB,EAAvnB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,shBAAshB,KAAK,eAAc,CAAI,GAGjnB",
|
|
9
|
+
"debugId": "323F1C6376E399A264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|