@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.312 → 1.1.313

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 React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconSaturn: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconSaturn;
@@ -0,0 +1,3 @@
1
+ var w=Object.create;var{getPrototypeOf:P,defineProperty:a,getOwnPropertyNames:f,getOwnPropertyDescriptor:S}=Object,h=Object.prototype.hasOwnProperty;function k(r){return this[r]}var y,v,g=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var p=o?y??=new WeakMap:v??=new WeakMap,i=p.get(r);if(i)return i}t=r!=null?w(P(r)):{};let l=o||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t;for(let u of f(r))if(!h.call(l,u))a(l,u,{get:k.bind(r,u),enumerable:!0});if(e)p.set(r,l);return l},x=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!h.call(o,e))a(o,e,{get:k.bind(r,e),enumerable:!(t=S(r,e))||t.enumerable})}return c.set(r,o),o},c;var M=(r)=>r;function b(r,o){this[r]=M.bind(null,o)}var I=(r,o)=>{for(var t in o)a(r,t,{get:o[t],enumerable:!0,configurable:!0,set:b.bind(o,t)})};var $={};I($,{CentralIconBase:()=>d});module.exports=x($);var s=g(require("react")),n=require("react-native-svg"),d=({children:r,size:o=24,mode:t="masked",maskId:e,...p})=>{let i=t!=="raw"&&!!e;return s.default.createElement(n.Svg,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},i?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(n.G,{color:"#fff"},r)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):r)};var F={};I(F,{default:()=>G,IconSaturn:()=>B});module.exports=x(F);var m=g(require("react"));var C=require("react-native-svg"),B=m.default.memo((r)=>{return m.default.createElement(d,{...r,maskId:"square-outlined-radius-0-stroke-2-IconSaturn"},m.default.createElement(C.Circle,{cx:"12",cy:"12",r:"7.5",stroke:"currentColor",strokeWidth:"2"}),m.default.createElement(C.Path,{d:"M4.50043 12L4.50054 11.9597C2.13335 13.3065 0.768038 14.645 1.06328 15.5537C1.35851 16.4623 3.24959 16.7427 5.95603 16.441C7.94325 16.2195 10.3701 15.6841 12.9275 14.8532C15.4847 14.0223 17.7625 13.0291 19.5003 12.0403C21.8675 10.6935 23.2328 9.35498 22.9376 8.44631C22.6424 7.5377 20.7513 7.25729 18.0448 7.55899M19.5003 12.0403L19.5004 12",stroke:"currentColor",strokeWidth:"2"}))}),G=B;
2
+
3
+ //# debugId=3D09EEA42147F42264756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconSaturn/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconSaturn: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconSaturn\"><Circle cx=\"12\" cy=\"12\" r=\"7.5\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M4.50043 12L4.50054 11.9597C2.13335 13.3065 0.768038 14.645 1.06328 15.5537C1.35851 16.4623 3.24959 16.7427 5.95603 16.441C7.94325 16.2195 10.3701 15.6841 12.9275 14.8532C15.4847 14.0223 17.7625 13.0291 19.5003 12.0403C21.8675 10.6935 23.2328 9.35498 22.9376 8.44631C22.6424 7.5377 20.7513 7.25729 18.0448 7.55899M19.5003 12.0403L19.5004 12\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n});\n\nexport default IconSaturn;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,sEChDY,IAAlB,sBAE6B,IAA7B,8BAEa,EAA+D,UAAM,KAAK,CAAC,IAAU,CAChG,OAAO,wBAAiiB,EAAjiB,IAAqB,EAAO,OAAO,gDAA+C,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,uVAAuV,OAAO,eAAe,YAAY,IAAG,CAAI,EACziB,EAEc",
9
+ "debugId": "3D09EEA42147F42264756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as l,Mask as C,Rect as s,G as u}from"react-native-svg";var a=({children:t,size:o=24,mode:m="masked",maskId:n,...p})=>{let i=m!=="raw"&&!!n;return r.createElement(l,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},i?r.createElement(r.Fragment,null,r.createElement(C,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(u,{color:"#fff"},t)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Circle as d,Path as c}from"react-native-svg";var f=e.memo((t)=>{return e.createElement(a,{...t,maskId:"square-outlined-radius-0-stroke-2-IconSaturn"},e.createElement(d,{cx:"12",cy:"12",r:"7.5",stroke:"currentColor",strokeWidth:"2"}),e.createElement(c,{d:"M4.50043 12L4.50054 11.9597C2.13335 13.3065 0.768038 14.645 1.06328 15.5537C1.35851 16.4623 3.24959 16.7427 5.95603 16.441C7.94325 16.2195 10.3701 15.6841 12.9275 14.8532C15.4847 14.0223 17.7625 13.0291 19.5003 12.0403C21.8675 10.6935 23.2328 9.35498 22.9376 8.44631C22.6424 7.5377 20.7513 7.25729 18.0448 7.55899M19.5003 12.0403L19.5004 12",stroke:"currentColor",strokeWidth:"2"}))}),y=f;export{y as default,f as IconSaturn};
2
+
3
+ //# debugId=7E77684C15545ED164756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconSaturn/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconSaturn: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconSaturn\"><Circle cx=\"12\" cy=\"12\" r=\"7.5\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M4.50043 12L4.50054 11.9597C2.13335 13.3065 0.768038 14.645 1.06328 15.5537C1.35851 16.4623 3.24959 16.7427 5.95603 16.441C7.94325 16.2195 10.3701 15.6841 12.9275 14.8532C15.4847 14.0223 17.7625 13.0291 19.5003 12.0403C21.8675 10.6935 23.2328 9.35498 22.9376 8.44631C22.6424 7.5377 20.7513 7.25729 18.0448 7.55899M19.5003 12.0403L19.5004 12\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n});\n\nexport default IconSaturn;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,iBAAS,UAAQ,yBAEV,IAAM,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAiiB,EAAjiB,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,uVAAuV,OAAO,eAAe,YAAY,IAAG,CAAI,EACziB,EAEc",
9
+ "debugId": "7E77684C15545ED164756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1447,6 +1447,7 @@ Below is a complete list of available icons:
1447
1447
  - IconPinFocus
1448
1448
  - IconCompassPointerSquare
1449
1449
  - IconEarth2
1450
+ - IconSaturn
1450
1451
 
1451
1452
  ### Nature & Energy
1452
1453