@central-icons-react-native/round-filled-radius-1-stroke-1 1.1.255 → 1.1.256
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/IconStopShareScreen/index.d.ts +4 -0
- package/IconStopShareScreen/index.js +3 -0
- package/IconStopShareScreen/index.js.map +11 -0
- package/IconStopShareScreen/index.mjs +3 -0
- package/IconStopShareScreen/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 S=Object.create;var{getPrototypeOf:g,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,c=m.get(r);if(c)return c}e=r!=null?S(g(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=(s??=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 s.set(r,o),o},s;var b=(r)=>r;function w(r,o){this[r]=b.bind(null,o)}var L=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:w.bind(o,e)})};var H={};L(H,{CentralIconBase:()=>l});module.exports=I(H);var d=B(require("react")),v=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return d.default.createElement(v.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 M={};L(M,{default:()=>V,IconStopShareScreen:()=>P});module.exports=I(M);var a=B(require("react"));var x=require("react-native-svg"),P=(r)=>{return a.default.createElement(l,{...r},a.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM15.6035 8.39648C15.4083 8.20122 15.0917 8.20122 14.8965 8.39648L12 11.293L9.10352 8.39648C8.90825 8.20122 8.59175 8.20122 8.39648 8.39648C8.20122 8.59175 8.20122 8.90825 8.39648 9.10352L11.293 12L8.39648 14.8965C8.20122 15.0917 8.20122 15.4083 8.39648 15.6035C8.59175 15.7988 8.90825 15.7988 9.10352 15.6035L12 12.707L14.8965 15.6035C15.0917 15.7988 15.4083 15.7988 15.6035 15.6035C15.7988 15.4083 15.7988 15.0917 15.6035 14.8965L12.707 12L15.6035 9.10352C15.7988 8.90825 15.7988 8.59175 15.6035 8.39648Z",fill:"currentColor"}))},V=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=F4E24F3C371B650D64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconStopShareScreen/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 IconStopShareScreen: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM15.6035 8.39648C15.4083 8.20122 15.0917 8.20122 14.8965 8.39648L12 11.293L9.10352 8.39648C8.90825 8.20122 8.59175 8.20122 8.39648 8.39648C8.20122 8.59175 8.20122 8.90825 8.39648 9.10352L11.293 12L8.39648 14.8965C8.20122 15.0917 8.20122 15.4083 8.39648 15.6035C8.59175 15.7988 8.90825 15.7988 9.10352 15.6035L12 12.707L14.8965 15.6035C15.0917 15.7988 15.4083 15.7988 15.6035 15.6035C15.7988 15.4083 15.7988 15.0917 15.6035 14.8965L12.707 12L15.6035 9.10352C15.7988 8.90825 15.7988 8.59175 15.6035 8.39648Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconStopShareScreen;\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,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAAuuB,EAAvuB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,soBAAsoB,KAAK,eAAc,CAAI,GAGjuB",
|
|
9
|
+
"debugId": "F4E24F3C371B650D64756E2164756E21",
|
|
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:"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM15.6035 8.39648C15.4083 8.20122 15.0917 8.20122 14.8965 8.39648L12 11.293L9.10352 8.39648C8.90825 8.20122 8.59175 8.20122 8.39648 8.39648C8.20122 8.59175 8.20122 8.90825 8.39648 9.10352L11.293 12L8.39648 14.8965C8.20122 15.0917 8.20122 15.4083 8.39648 15.6035C8.59175 15.7988 8.90825 15.7988 9.10352 15.6035L12 12.707L14.8965 15.6035C15.0917 15.7988 15.4083 15.7988 15.6035 15.6035C15.7988 15.4083 15.7988 15.0917 15.6035 14.8965L12.707 12L15.6035 9.10352C15.7988 8.90825 15.7988 8.59175 15.6035 8.39648Z",fill:"currentColor"}))},v=a;export{v as default,a as IconStopShareScreen};
|
|
2
|
+
|
|
3
|
+
//# debugId=E5B4783309C5E3AB64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconStopShareScreen/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 IconStopShareScreen: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM15.6035 8.39648C15.4083 8.20122 15.0917 8.20122 14.8965 8.39648L12 11.293L9.10352 8.39648C8.90825 8.20122 8.59175 8.20122 8.39648 8.39648C8.20122 8.59175 8.20122 8.90825 8.39648 9.10352L11.293 12L8.39648 14.8965C8.20122 15.0917 8.20122 15.4083 8.39648 15.6035C8.59175 15.7988 8.90825 15.7988 9.10352 15.6035L12 12.707L14.8965 15.6035C15.0917 15.7988 15.4083 15.7988 15.6035 15.6035C15.7988 15.4083 15.7988 15.0917 15.6035 14.8965L12.707 12L15.6035 9.10352C15.7988 8.90825 15.7988 8.59175 15.6035 8.39648Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconStopShareScreen;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAuuB,EAAvuB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,soBAAsoB,KAAK,eAAc,CAAI,GAGjuB",
|
|
9
|
+
"debugId": "E5B4783309C5E3AB64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|