@central-icons-react-native/round-outlined-radius-2-stroke-1 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 I=Object.create;var{getPrototypeOf:B,defineProperty:l,getOwnPropertyNames:f,getOwnPropertyDescriptor:S}=Object,c=Object.prototype.hasOwnProperty;function g(r){return this[r]}var y,v,k=(r,o,t)=>{var n=r!=null&&typeof r==="object";if(n){var a=o?y??=new WeakMap:v??=new WeakMap,m=a.get(r);if(m)return m}t=r!=null?I(B(r)):{};let C=o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t;for(let h of f(r))if(!c.call(C,h))l(C,h,{get:g.bind(r,h),enumerable:!0});if(n)a.set(r,C);return C},x=(r)=>{var o=(d??=new WeakMap).get(r),t;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of f(r))if(!c.call(o,n))l(o,n,{get:g.bind(r,n),enumerable:!(t=S(r,n))||t.enumerable})}return d.set(r,o),o},d;var G=(r)=>r;function _(r,o){this[r]=G.bind(null,o)}var P=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0,configurable:!0,set:_.bind(o,t)})};var b={};P(b,{CentralIconBase:()=>u});module.exports=x(b);var p=k(require("react")),i=require("react-native-svg"),u=({children:r,size:o=24,mode:t="masked",maskId:n,...a})=>{let m=t!=="raw"&&!!n;return p.default.createElement(i.Svg,{...a,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},m?p.default.createElement(p.default.Fragment,null,p.default.createElement(i.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},p.default.createElement(i.Rect,{width:"24",height:"24",fill:"#000"}),p.default.createElement(i.G,{color:"#fff"},r)),p.default.createElement(i.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):r)};var M={};P(M,{default:()=>$,IconSaturn:()=>w});module.exports=x(M);var s=k(require("react"));var e=require("react-native-svg"),w=s.default.memo((r)=>{return s.default.createElement(u,{...r,maskId:"round-outlined-radius-2-stroke-1-IconSaturn"},s.default.createElement(e.G,{ClipPath:"url(#clip0_15669_27809)"},s.default.createElement(e.Circle,{cx:"12",cy:"12",r:"8",stroke:"currentColor"}),s.default.createElement(e.Path,{d:"M4.00135 12.1715C1.65038 13.514 0.301573 14.8251 0.588555 15.7083C1.10055 17.2841 6.62524 16.9013 12.9283 14.8533C19.2313 12.8053 23.9259 9.86766 23.4139 8.2919C23.1275 7.41048 21.2727 7.14186 18.5906 7.43471",stroke:"currentColor",strokeLinecap:"round"})),s.default.createElement(e.Defs,null,s.default.createElement(e.ClipPath,{id:"clip0_15669_27809"},s.default.createElement(e.Rect,{width:"24",height:"24",fill:"white"}))))}),$=w;
2
+
3
+ //# debugId=75F9D6CEBE86529F64756E2164756E21
@@ -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, ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSaturn: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconSaturn\"><G ClipPath=\"url(#clip0_15669_27809)\"><Circle cx=\"12\" cy=\"12\" r=\"8\" stroke=\"currentColor\"/><Path d=\"M4.00135 12.1715C1.65038 13.514 0.301573 14.8251 0.588555 15.7083C1.10055 17.2841 6.62524 16.9013 12.9283 14.8533C19.2313 12.8053 23.9259 9.86766 23.4139 8.2919C23.1275 7.41048 21.2727 7.14186 18.5906 7.43471\" stroke=\"currentColor\" strokeLinecap=\"round\"/></G><Defs><ClipPath id=\"clip0_15669_27809\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></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,sBAEsD,IAAtD,8BAEa,EAA+D,UAAM,KAAK,CAAC,IAAU,CAChG,OAAO,wBAA8hB,EAA9hB,IAAqB,EAAO,OAAO,+CAA8C,wBAAqW,IAArW,CAAG,SAAS,2BAA0B,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mNAAmN,OAAO,eAAe,cAAc,QAAO,CAAI,EAAE,wBAA+F,OAA/F,KAAM,wBAA8E,WAA9E,CAAU,GAAG,qBAAoB,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,EACtiB,EAEc",
9
+ "debugId": "75F9D6CEBE86529F64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as m,Mask as C,Rect as i,G as h}from"react-native-svg";var s=({children:e,size:t=24,mode:p="masked",maskId:n,...l})=>{let a=p!=="raw"&&!!n;return o.createElement(m,{...l,width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none"},a?o.createElement(o.Fragment,null,o.createElement(C,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(h,{color:"#fff"},e)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import r from"react";import{Circle as u,ClipPath as d,Defs as f,G as c,Path as g,Rect as k}from"react-native-svg";var x=r.memo((e)=>{return r.createElement(s,{...e,maskId:"round-outlined-radius-2-stroke-1-IconSaturn"},r.createElement(c,{ClipPath:"url(#clip0_15669_27809)"},r.createElement(u,{cx:"12",cy:"12",r:"8",stroke:"currentColor"}),r.createElement(g,{d:"M4.00135 12.1715C1.65038 13.514 0.301573 14.8251 0.588555 15.7083C1.10055 17.2841 6.62524 16.9013 12.9283 14.8533C19.2313 12.8053 23.9259 9.86766 23.4139 8.2919C23.1275 7.41048 21.2727 7.14186 18.5906 7.43471",stroke:"currentColor",strokeLinecap:"round"})),r.createElement(f,null,r.createElement(d,{id:"clip0_15669_27809"},r.createElement(k,{width:"24",height:"24",fill:"white"}))))}),b=x;export{b as default,x as IconSaturn};
2
+
3
+ //# debugId=5AA0E76331425B0064756E2164756E21
@@ -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, ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSaturn: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconSaturn\"><G ClipPath=\"url(#clip0_15669_27809)\"><Circle cx=\"12\" cy=\"12\" r=\"8\" stroke=\"currentColor\"/><Path d=\"M4.00135 12.1715C1.65038 13.514 0.301573 14.8251 0.588555 15.7083C1.10055 17.2841 6.62524 16.9013 12.9283 14.8533C19.2313 12.8053 23.9259 9.86766 23.4139 8.2919C23.1275 7.41048 21.2727 7.14186 18.5906 7.43471\" stroke=\"currentColor\" strokeLinecap=\"round\"/></G><Defs><ClipPath id=\"clip0_15669_27809\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></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,cAAQ,UAAU,OAAM,UAAG,UAAM,yBAEnC,IAAM,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA8hB,EAA9hB,IAAqB,EAAO,OAAO,+CAA8C,gBAAqW,EAArW,CAAG,SAAS,2BAA0B,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mNAAmN,OAAO,eAAe,cAAc,QAAO,CAAI,EAAE,gBAA+F,EAA/F,KAAM,gBAA8E,EAA9E,CAAU,GAAG,qBAAoB,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,EACtiB,EAEc",
9
+ "debugId": "5AA0E76331425B0064756E2164756E21",
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