@central-icons-react-native/round-filled-radius-2-stroke-2 1.1.255 → 1.1.257

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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconStopShareScreen: FC<CentralIconBaseProps>;
4
+ export default IconStopShareScreen;
@@ -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:"M19 4C20.6569 4 22 5.34315 22 7V17C22 18.6569 20.6569 20 19 20H5C3.34315 20 2 18.6569 2 17V7C2 5.34315 3.34315 4 5 4H19ZM15.207 8.79297C14.8165 8.40244 14.1835 8.40244 13.793 8.79297L12 10.5859L10.207 8.79297C9.81651 8.40244 9.18349 8.40244 8.79297 8.79297C8.40244 9.18349 8.40244 9.81651 8.79297 10.207L10.5859 12L8.79297 13.793C8.40244 14.1835 8.40244 14.8165 8.79297 15.207C9.18349 15.5976 9.81651 15.5976 10.207 15.207L12 13.4141L13.793 15.207C14.1835 15.5976 14.8165 15.5976 15.207 15.207C15.5976 14.8165 15.5976 14.1835 15.207 13.793L13.4141 12L15.207 10.207C15.5976 9.81651 15.5976 9.18349 15.207 8.79297Z",fill:"currentColor"}))},V=P;
2
+
3
+ //# debugId=DABE7D331F50CC0264756E2164756E21
@@ -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=\"M19 4C20.6569 4 22 5.34315 22 7V17C22 18.6569 20.6569 20 19 20H5C3.34315 20 2 18.6569 2 17V7C2 5.34315 3.34315 4 5 4H19ZM15.207 8.79297C14.8165 8.40244 14.1835 8.40244 13.793 8.79297L12 10.5859L10.207 8.79297C9.81651 8.40244 9.18349 8.40244 8.79297 8.79297C8.40244 9.18349 8.40244 9.81651 8.79297 10.207L10.5859 12L8.79297 13.793C8.40244 14.1835 8.40244 14.8165 8.79297 15.207C9.18349 15.5976 9.81651 15.5976 10.207 15.207L12 13.4141L13.793 15.207C14.1835 15.5976 14.8165 15.5976 15.207 15.207C15.5976 14.8165 15.5976 14.1835 15.207 13.793L13.4141 12L15.207 10.207C15.5976 9.81651 15.5976 9.18349 15.207 8.79297Z\" 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,wBAAwsB,EAAxsB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,umBAAumB,KAAK,eAAc,CAAI,GAGlsB",
9
+ "debugId": "DABE7D331F50CC0264756E2164756E21",
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:"M19 4C20.6569 4 22 5.34315 22 7V17C22 18.6569 20.6569 20 19 20H5C3.34315 20 2 18.6569 2 17V7C2 5.34315 3.34315 4 5 4H19ZM15.207 8.79297C14.8165 8.40244 14.1835 8.40244 13.793 8.79297L12 10.5859L10.207 8.79297C9.81651 8.40244 9.18349 8.40244 8.79297 8.79297C8.40244 9.18349 8.40244 9.81651 8.79297 10.207L10.5859 12L8.79297 13.793C8.40244 14.1835 8.40244 14.8165 8.79297 15.207C9.18349 15.5976 9.81651 15.5976 10.207 15.207L12 13.4141L13.793 15.207C14.1835 15.5976 14.8165 15.5976 15.207 15.207C15.5976 14.8165 15.5976 14.1835 15.207 13.793L13.4141 12L15.207 10.207C15.5976 9.81651 15.5976 9.18349 15.207 8.79297Z",fill:"currentColor"}))},v=a;export{v as default,a as IconStopShareScreen};
2
+
3
+ //# debugId=327A4E01AFF717E964756E2164756E21
@@ -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=\"M19 4C20.6569 4 22 5.34315 22 7V17C22 18.6569 20.6569 20 19 20H5C3.34315 20 2 18.6569 2 17V7C2 5.34315 3.34315 4 5 4H19ZM15.207 8.79297C14.8165 8.40244 14.1835 8.40244 13.793 8.79297L12 10.5859L10.207 8.79297C9.81651 8.40244 9.18349 8.40244 8.79297 8.79297C8.40244 9.18349 8.40244 9.81651 8.79297 10.207L10.5859 12L8.79297 13.793C8.40244 14.1835 8.40244 14.8165 8.79297 15.207C9.18349 15.5976 9.81651 15.5976 10.207 15.207L12 13.4141L13.793 15.207C14.1835 15.5976 14.8165 15.5976 15.207 15.207C15.5976 14.8165 15.5976 14.1835 15.207 13.793L13.4141 12L15.207 10.207C15.5976 9.81651 15.5976 9.18349 15.207 8.79297Z\" 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,gBAAwsB,EAAxsB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,umBAAumB,KAAK,eAAc,CAAI,GAGlsB",
9
+ "debugId": "327A4E01AFF717E964756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1548,6 +1548,7 @@ Below is a complete list of available icons:
1548
1548
  - IconLens
1549
1549
  - IconVideo2
1550
1550
  - IconVideo2Off
1551
+ - IconStopShareScreen
1551
1552
 
1552
1553
  ### Security
1553
1554