@central-icons-react-native/round-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.
- package/IconSaturn/index.d.ts +4 -0
- package/IconSaturn/index.js +3 -0
- package/IconSaturn/index.js.map +11 -0
- package/IconSaturn/index.mjs +3 -0
- package/IconSaturn/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 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 i=o?y??=new WeakMap:v??=new WeakMap,m=i.get(r);if(m)return m}t=r!=null?w(P(r)):{};let l=o||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t;for(let d of f(r))if(!h.call(l,d))a(l,d,{get:k.bind(r,d),enumerable:!0});if(e)i.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 L=(r)=>r;function M(r,o){this[r]=L.bind(null,o)}var I=(r,o)=>{for(var t in o)a(r,t,{get:o[t],enumerable:!0,configurable:!0,set:M.bind(o,t)})};var b={};I(b,{CentralIconBase:()=>u});module.exports=x(b);var s=g(require("react")),n=require("react-native-svg"),u=({children:r,size:o=24,mode:t="masked",maskId:e,...i})=>{let m=t!=="raw"&&!!e;return s.default.createElement(n.Svg,{...i,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},m?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 $={};I($,{default:()=>F,IconSaturn:()=>B});module.exports=x($);var p=g(require("react"));var C=require("react-native-svg"),B=p.default.memo((r)=>{return p.default.createElement(u,{...r,maskId:"round-outlined-radius-0-stroke-2-IconSaturn"},p.default.createElement(C.Circle,{cx:"12",cy:"12",r:"7.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),p.default.createElement(C.Path,{d:"M4.50043 11.9999L4.50054 11.9596C2.13335 13.3064 0.768038 14.6449 1.06328 15.5536C1.35851 16.4622 3.24959 16.7426 5.95603 16.4409C7.94325 16.2194 10.3701 15.684 12.9275 14.8531C15.4847 14.0222 17.7625 13.029 19.5003 12.0402C21.8675 10.6934 23.2328 9.35486 22.9376 8.44619C22.6424 7.53758 20.7513 7.25717 18.0448 7.55887M19.5003 12.0402L19.5004 11.9999",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))}),F=B;
|
|
2
|
+
|
|
3
|
+
//# debugId=2AA1F3DBEF81A0D564756E2164756E21
|
|
@@ -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=\"round-outlined-radius-0-stroke-2-IconSaturn\"><Circle cx=\"12\" cy=\"12\" r=\"7.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M4.50043 11.9999L4.50054 11.9596C2.13335 13.3064 0.768038 14.6449 1.06328 15.5536C1.35851 16.4622 3.24959 16.7426 5.95603 16.4409C7.94325 16.2194 10.3701 15.684 12.9275 14.8531C15.4847 14.0222 17.7625 13.029 19.5003 12.0402C21.8675 10.6934 23.2328 9.35486 22.9376 8.44619C22.6424 7.53758 20.7513 7.25717 18.0448 7.55887M19.5003 12.0402L19.5004 11.9999\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/></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,wBAAulB,EAAvlB,IAAqB,EAAO,OAAO,+CAA8C,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,kWAAkW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,EAC/lB,EAEc",
|
|
9
|
+
"debugId": "2AA1F3DBEF81A0D564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import r from"react";import{Svg as l,Mask as C,Rect as s,G as d}from"react-native-svg";var a=({children:t,size:o=24,mode:p="masked",maskId:n,...i})=>{let m=p!=="raw"&&!!n;return r.createElement(l,{...i,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},m?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(d,{color:"#fff"},t)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Circle as u,Path as c}from"react-native-svg";var f=e.memo((t)=>{return e.createElement(a,{...t,maskId:"round-outlined-radius-0-stroke-2-IconSaturn"},e.createElement(u,{cx:"12",cy:"12",r:"7.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.createElement(c,{d:"M4.50043 11.9999L4.50054 11.9596C2.13335 13.3064 0.768038 14.6449 1.06328 15.5536C1.35851 16.4622 3.24959 16.7426 5.95603 16.4409C7.94325 16.2194 10.3701 15.684 12.9275 14.8531C15.4847 14.0222 17.7625 13.029 19.5003 12.0402C21.8675 10.6934 23.2328 9.35486 22.9376 8.44619C22.6424 7.53758 20.7513 7.25717 18.0448 7.55887M19.5003 12.0402L19.5004 11.9999",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))}),y=f;export{y as default,f as IconSaturn};
|
|
2
|
+
|
|
3
|
+
//# debugId=9DD4D0079222F89264756E2164756E21
|
|
@@ -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=\"round-outlined-radius-0-stroke-2-IconSaturn\"><Circle cx=\"12\" cy=\"12\" r=\"7.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M4.50043 11.9999L4.50054 11.9596C2.13335 13.3064 0.768038 14.6449 1.06328 15.5536C1.35851 16.4622 3.24959 16.7426 5.95603 16.4409C7.94325 16.2194 10.3701 15.684 12.9275 14.8531C15.4847 14.0222 17.7625 13.029 19.5003 12.0402C21.8675 10.6934 23.2328 9.35486 22.9376 8.44619C22.6424 7.53758 20.7513 7.25717 18.0448 7.55887M19.5003 12.0402L19.5004 11.9999\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/></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,gBAAulB,EAAvlB,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,kWAAkW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,EAC/lB,EAEc",
|
|
9
|
+
"debugId": "9DD4D0079222F89264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|