@central-icons-react-native/round-outlined-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 k=Object.create;var{getPrototypeOf:V,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:v}=Object,f=Object.prototype.hasOwnProperty;function d(r){return this[r]}var h,y,B=(r,o,n)=>{var e=r!=null&&typeof r==="object";if(e){var i=o?h??=new WeakMap:y??=new WeakMap,m=i.get(r);if(m)return m}n=r!=null?k(V(r)):{};let p=o||!r||!r.__esModule?t(n,"default",{value:r,enumerable:!0}):n;for(let a of c(r))if(!f.call(p,a))t(p,a,{get:d.bind(r,a),enumerable:!0});if(e)i.set(r,p);return p},I=(r)=>{var o=(u??=new WeakMap).get(r),n;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!f.call(o,e))t(o,e,{get:d.bind(r,e),enumerable:!(n=v(r,e))||n.enumerable})}return u.set(r,o),o},u;var F=(r)=>r;function H(r,o){this[r]=F.bind(null,o)}var L=(r,o)=>{for(var n in o)t(r,n,{get:o[n],enumerable:!0,configurable:!0,set:H.bind(o,n)})};var S={};L(S,{CentralIconBase:()=>l});module.exports=I(S);var x=B(require("react")),P=require("react-native-svg"),l=({children:r,size:o=24,...n})=>{return x.default.createElement(P.Svg,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var b={};L(b,{default:()=>M,IconEnter:()=>g});module.exports=I(b);var C=B(require("react"));var s=require("react-native-svg"),g=(r)=>{return C.default.createElement(l,{...r},C.default.createElement(s.Path,{d:"M18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V10.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H10.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 11.5C3.5 10.3954 4.39543 9.5 5.5 9.5H7.5C8.60457 9.5 9.5 8.60457 9.5 7.5V5.5C9.5 4.39543 10.3954 3.5 11.5 3.5L18.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(s.Path,{d:"M15 9.5V13C15 14.1046 14.1046 15 13 15H10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(s.Path,{d:"M10.4726 12.5182L7.37404 14.584C7.07717 14.7819 7.07717 15.2181 7.37404 15.416L10.4726 17.4818C10.8049 17.7033 11.25 17.4651 11.25 17.0657V15V12.9343C11.25 12.5349 10.8049 12.2967 10.4726 12.5182Z",fill:"currentColor"}))},M=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=FA58B6179CB66AE364756E2164756E21
|
|
@@ -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 d=\"M18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V10.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H10.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 11.5C3.5 10.3954 4.39543 9.5 5.5 9.5H7.5C8.60457 9.5 9.5 8.60457 9.5 7.5V5.5C9.5 4.39543 10.3954 3.5 11.5 3.5L18.5 3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M15 9.5V13C15 14.1046 14.1046 15 13 15H10\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10.4726 12.5182L7.37404 14.584C7.07717 14.7819 7.07717 15.2181 7.37404 15.416L10.4726 17.4818C10.8049 17.7033 11.25 17.4651 11.25 17.0657V15V12.9343C11.25 12.5349 10.8049 12.2967 10.4726 12.5182Z\" 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,wBAAysB,EAAzsB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,mQAAmQ,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,4CAA4C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,CAAI,GAGnsB",
|
|
9
|
+
"debugId": "FA58B6179CB66AE364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as s}from"react-native-svg";var t=({children:n,size:r=24,...C})=>{return p.createElement(s,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n)};import o from"react";import{Path as e}from"react-native-svg";var a=(n)=>{return o.createElement(t,{...n},o.createElement(e,{d:"M18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V10.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H10.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 11.5C3.5 10.3954 4.39543 9.5 5.5 9.5H7.5C8.60457 9.5 9.5 8.60457 9.5 7.5V5.5C9.5 4.39543 10.3954 3.5 11.5 3.5L18.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M15 9.5V13C15 14.1046 14.1046 15 13 15H10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M10.4726 12.5182L7.37404 14.584C7.07717 14.7819 7.07717 15.2181 7.37404 15.416L10.4726 17.4818C10.8049 17.7033 11.25 17.4651 11.25 17.0657V15V12.9343C11.25 12.5349 10.8049 12.2967 10.4726 12.5182Z",fill:"currentColor"}))},x=a;export{x as default,a as IconEnter};
|
|
2
|
+
|
|
3
|
+
//# debugId=25EC4B00ABF2ACC564756E2164756E21
|
|
@@ -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 d=\"M18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V10.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H10.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 11.5C3.5 10.3954 4.39543 9.5 5.5 9.5H7.5C8.60457 9.5 9.5 8.60457 9.5 7.5V5.5C9.5 4.39543 10.3954 3.5 11.5 3.5L18.5 3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M15 9.5V13C15 14.1046 14.1046 15 13 15H10\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10.4726 12.5182L7.37404 14.584C7.07717 14.7819 7.07717 15.2181 7.37404 15.416L10.4726 17.4818C10.8049 17.7033 11.25 17.4651 11.25 17.0657V15V12.9343C11.25 12.5349 10.8049 12.2967 10.4726 12.5182Z\" 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,gBAAysB,EAAzsB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,mQAAmQ,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,4CAA4C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,CAAI,GAGnsB",
|
|
9
|
+
"debugId": "25EC4B00ABF2ACC564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|