@central-icons-react-native/square-outlined-radius-0-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.
- 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 I=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:d,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?p(t,"default",{value:r,enumerable:!0}):t;for(let h of d(r))if(!c.call(C,h))p(C,h,{get:g.bind(r,h),enumerable:!0});if(n)a.set(r,C);return C},x=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of d(r))if(!c.call(o,n))p(o,n,{get:g.bind(r,n),enumerable:!(t=S(r,n))||t.enumerable})}return u.set(r,o),o},u;var G=(r)=>r;function _(r,o){this[r]=G.bind(null,o)}var P=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0,configurable:!0,set:_.bind(o,t)})};var b={};P(b,{CentralIconBase:()=>f});module.exports=x(b);var l=k(require("react")),s=require("react-native-svg"),f=({children:r,size:o=24,mode:t="masked",maskId:n,...a})=>{let m=t!=="raw"&&!!n;return l.default.createElement(s.Svg,{...a,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},m?l.default.createElement(l.default.Fragment,null,l.default.createElement(s.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},l.default.createElement(s.Rect,{width:"24",height:"24",fill:"#000"}),l.default.createElement(s.G,{color:"#fff"},r)),l.default.createElement(s.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):r)};var M={};P(M,{default:()=>$,IconSaturn:()=>w});module.exports=x(M);var i=k(require("react"));var e=require("react-native-svg"),w=i.default.memo((r)=>{return i.default.createElement(f,{...r,maskId:"square-outlined-radius-0-stroke-1-IconSaturn"},i.default.createElement(e.G,{ClipPath:"url(#clip0_15669_27794)"},i.default.createElement(e.Circle,{cx:"12",cy:"12",r:"8",stroke:"currentColor"}),i.default.createElement(e.Path,{d:"M4.002 12.1714C1.65103 13.5139 0.302225 14.825 0.589207 15.7082C1.1012 17.284 6.62589 16.9012 12.9289 14.8532C19.232 12.8052 23.9266 9.86759 23.4146 8.29182C23.125 7.40066 21.2322 7.13593 18.502 7.44456",stroke:"currentColor"})),i.default.createElement(e.Defs,null,i.default.createElement(e.ClipPath,{id:"clip0_15669_27794"},i.default.createElement(e.Rect,{width:"24",height:"24",fill:"white"}))))}),$=w;
|
|
2
|
+
|
|
3
|
+
//# debugId=37E42C097F0FF3A664756E2164756E21
|
|
@@ -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=\"square-outlined-radius-0-stroke-1-IconSaturn\"><G ClipPath=\"url(#clip0_15669_27794)\"><Circle cx=\"12\" cy=\"12\" r=\"8\" stroke=\"currentColor\"/><Path d=\"M4.002 12.1714C1.65103 13.5139 0.302225 14.825 0.589207 15.7082C1.1012 17.284 6.62589 16.9012 12.9289 14.8532C19.232 12.8052 23.9266 9.86759 23.4146 8.29182C23.125 7.40066 21.2322 7.13593 18.502 7.44456\" stroke=\"currentColor\"/></G><Defs><ClipPath id=\"clip0_15669_27794\"><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,wBAAmgB,EAAngB,IAAqB,EAAO,OAAO,gDAA+C,wBAAyU,IAAzU,CAAG,SAAS,2BAA0B,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6MAA6M,OAAO,eAAc,CAAI,EAAE,wBAA+F,OAA/F,KAAM,wBAA8E,WAA9E,CAAU,GAAG,qBAAoB,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,EAC3gB,EAEc",
|
|
9
|
+
"debugId": "37E42C097F0FF3A664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import o from"react";import{Svg as m,Mask as C,Rect as s,G as h}from"react-native-svg";var i=({children:e,size:t=24,mode:l="masked",maskId:n,...p})=>{let a=l!=="raw"&&!!n;return o.createElement(m,{...p,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(s,{width:"24",height:"24",fill:"#000"}),o.createElement(h,{color:"#fff"},e)),o.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import r from"react";import{Circle as f,ClipPath as u,Defs as d,G as c,Path as g,Rect as k}from"react-native-svg";var x=r.memo((e)=>{return r.createElement(i,{...e,maskId:"square-outlined-radius-0-stroke-1-IconSaturn"},r.createElement(c,{ClipPath:"url(#clip0_15669_27794)"},r.createElement(f,{cx:"12",cy:"12",r:"8",stroke:"currentColor"}),r.createElement(g,{d:"M4.002 12.1714C1.65103 13.5139 0.302225 14.825 0.589207 15.7082C1.1012 17.284 6.62589 16.9012 12.9289 14.8532C19.232 12.8052 23.9266 9.86759 23.4146 8.29182C23.125 7.40066 21.2322 7.13593 18.502 7.44456",stroke:"currentColor"})),r.createElement(d,null,r.createElement(u,{id:"clip0_15669_27794"},r.createElement(k,{width:"24",height:"24",fill:"white"}))))}),b=x;export{b as default,x as IconSaturn};
|
|
2
|
+
|
|
3
|
+
//# debugId=FFF151735E0639A364756E2164756E21
|
|
@@ -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=\"square-outlined-radius-0-stroke-1-IconSaturn\"><G ClipPath=\"url(#clip0_15669_27794)\"><Circle cx=\"12\" cy=\"12\" r=\"8\" stroke=\"currentColor\"/><Path d=\"M4.002 12.1714C1.65103 13.5139 0.302225 14.825 0.589207 15.7082C1.1012 17.284 6.62589 16.9012 12.9289 14.8532C19.232 12.8052 23.9266 9.86759 23.4146 8.29182C23.125 7.40066 21.2322 7.13593 18.502 7.44456\" stroke=\"currentColor\"/></G><Defs><ClipPath id=\"clip0_15669_27794\"><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,gBAAmgB,EAAngB,IAAqB,EAAO,OAAO,gDAA+C,gBAAyU,EAAzU,CAAG,SAAS,2BAA0B,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6MAA6M,OAAO,eAAc,CAAI,EAAE,gBAA+F,EAA/F,KAAM,gBAA8E,EAA9E,CAAU,GAAG,qBAAoB,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,EAC3gB,EAEc",
|
|
9
|
+
"debugId": "FFF151735E0639A364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|