@central-icons-react-native/round-outlined-radius-2-stroke-1 1.1.312 → 1.1.314

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.
@@ -1,4 +1,4 @@
1
1
  import React from "react";
2
2
  import { type CentralIconBaseProps } from "../CentralIconBase";
3
- export declare const IconCircleQuestionmark: React.NamedExoticComponent<CentralIconBaseProps>;
4
- export default IconCircleQuestionmark;
3
+ export declare const IconQuestionmarkCircle: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconQuestionmarkCircle;
@@ -0,0 +1,3 @@
1
+ var w=Object.create;var{getPrototypeOf:y,defineProperty:l,getOwnPropertyNames:f,getOwnPropertyDescriptor:P}=Object,k=Object.prototype.hasOwnProperty;function h(r){return this[r]}var v,S,x=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var p=o?v??=new WeakMap:S??=new WeakMap,a=p.get(r);if(a)return a}e=r!=null?w(y(r)):{};let c=o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e;for(let u of f(r))if(!k.call(c,u))l(c,u,{get:h.bind(r,u),enumerable:!0});if(t)p.set(r,c);return c},g=(r)=>{var o=(d??=new WeakMap).get(r),e;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of f(r))if(!k.call(o,t))l(o,t,{get:h.bind(r,t),enumerable:!(e=P(r,t))||e.enumerable})}return d.set(r,o),o},d;var b=(r)=>r;function M(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var $={};I($,{CentralIconBase:()=>C});module.exports=g($);var s=x(require("react")),n=require("react-native-svg"),C=({children:r,size:o=24,mode:e="masked",maskId:t,...p})=>{let a=e!=="raw"&&!!t;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"},a?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:t,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(#${t})`})):r)};var F={};I(F,{default:()=>G,IconQuestionmarkCircle:()=>B});module.exports=g(F);var i=x(require("react"));var m=require("react-native-svg"),B=i.default.memo((r)=>{return i.default.createElement(C,{...r,maskId:"round-outlined-radius-2-stroke-1-IconQuestionmarkCircle"},i.default.createElement(m.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),i.default.createElement(m.Path,{d:"M11.9718 14C11.9718 11 14.5 11.5267 14.5 9.22617C14.5 6.46265 10.0526 6.1419 9.5 9",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(m.Circle,{cx:"12",cy:"16.75",r:"0.75",fill:"currentColor"}))}),G=B;
2
+
3
+ //# debugId=FB202EBE5EF3DF6C64756E2164756E21
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": ["src/CentralIconBase/index.tsx", "src/IconCircleQuestionmark/index.tsx"],
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconQuestionmarkCircle/index.tsx"],
4
4
  "sourcesContent": [
5
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 { Path } from \"react-native-svg\";\n\nexport const IconCircleQuestionmark: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconCircleQuestionmark\"><Path d=\"M9.5 9.5C9.5 8.39543 10.3954 7.5 11.5 7.5H12.5845C13.6424 7.5 14.5 8.35759 14.5 9.41548C14.5 10.0883 14.147 10.7118 13.57 11.058L12.971 11.4174C12.3686 11.7788 12 12.4299 12 13.1324V14.5M12 16.5V16.51M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconCircleQuestionmark;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconQuestionmarkCircle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconQuestionmarkCircle\"><Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><Path d=\"M11.9718 14C11.9718 11 14.5 11.5267 14.5 9.22617C14.5 6.46265 10.0526 6.1419 9.5 9\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"16.75\" r=\"0.75\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconQuestionmarkCircle;\n"
7
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,kFChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAA2E,UAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,wBAAigB,EAAjgB,IAAqB,EAAO,OAAO,2DAA0D,wBAAC,OAAD,CAAM,EAAE,sVAAsV,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EACzgB,EAEc",
9
- "debugId": "5FF34D0209B2E07964756E2164756E21",
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,kFChDY,IAAlB,sBAE6B,IAA7B,8BAEa,EAA2E,UAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,wBAAgX,EAAhX,IAAqB,EAAO,OAAO,2DAA0D,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qFAAqF,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,QAAQ,EAAE,OAAO,KAAK,eAAc,CAAI,EACxX,EAEc",
9
+ "debugId": "FB202EBE5EF3DF6C64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as c,Mask as u,Rect as s,G as C}from"react-native-svg";var i=({children:t,size:o=24,mode:m="masked",maskId:n,...p})=>{let a=m!=="raw"&&!!n;return r.createElement(c,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},a?r.createElement(r.Fragment,null,r.createElement(u,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(C,{color:"#fff"},t)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Circle as l,Path as d}from"react-native-svg";var f=e.memo((t)=>{return e.createElement(i,{...t,maskId:"round-outlined-radius-2-stroke-1-IconQuestionmarkCircle"},e.createElement(l,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),e.createElement(d,{d:"M11.9718 14C11.9718 11 14.5 11.5267 14.5 9.22617C14.5 6.46265 10.0526 6.1419 9.5 9",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(l,{cx:"12",cy:"16.75",r:"0.75",fill:"currentColor"}))}),v=f;export{v as default,f as IconQuestionmarkCircle};
2
+
3
+ //# debugId=2666D265D39F1E5364756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconQuestionmarkCircle/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 IconQuestionmarkCircle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconQuestionmarkCircle\"><Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><Path d=\"M11.9718 14C11.9718 11 14.5 11.5267 14.5 9.22617C14.5 6.46265 10.0526 6.1419 9.5 9\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"16.75\" r=\"0.75\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconQuestionmarkCircle;\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,EAA2E,EAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,gBAAgX,EAAhX,IAAqB,EAAO,OAAO,2DAA0D,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qFAAqF,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,QAAQ,EAAE,OAAO,KAAK,eAAc,CAAI,EACxX,EAEc",
9
+ "debugId": "2666D265D39F1E5364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconQuestionmarkCircle2: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconQuestionmarkCircle2;
@@ -1,3 +1,3 @@
1
- var w=Object.create;var{getPrototypeOf:P,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:v}=Object,f=Object.prototype.hasOwnProperty;function k(o){return this[o]}var y,M,h=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var a=r?y??=new WeakMap:M??=new WeakMap,m=a.get(o);if(m)return m}e=o!=null?w(P(o)):{};let p=r||!o||!o.__esModule?i(e,"default",{value:o,enumerable:!0}):e;for(let l of c(o))if(!f.call(p,l))i(p,l,{get:k.bind(o,l),enumerable:!0});if(t)a.set(o,p);return p},g=(o)=>{var r=(d??=new WeakMap).get(o),e;if(r)return r;if(r=i({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of c(o))if(!f.call(r,t))i(r,t,{get:k.bind(o,t),enumerable:!(e=v(o,t))||e.enumerable})}return d.set(o,r),r},d;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var x=(o,r)=>{for(var e in r)i(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var L={};x(L,{CentralIconBase:()=>u});module.exports=g(L);var s=h(require("react")),n=require("react-native-svg"),u=({children:o,size:r=24,mode:e="masked",maskId:t,...a})=>{let m=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...a,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:t,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"},o)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):o)};var $={};x($,{default:()=>F,IconCircleQuestionmark:()=>B});module.exports=g($);var C=h(require("react"));var I=require("react-native-svg"),B=C.default.memo((o)=>{return C.default.createElement(u,{...o,maskId:"round-outlined-radius-2-stroke-1-IconCircleQuestionmark"},C.default.createElement(I.Path,{d:"M9.5 9.5C9.5 8.39543 10.3954 7.5 11.5 7.5H12.5845C13.6424 7.5 14.5 8.35759 14.5 9.41548C14.5 10.0883 14.147 10.7118 13.57 11.058L12.971 11.4174C12.3686 11.7788 12 12.4299 12 13.1324V14.5M12 16.5V16.51M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),F=B;
1
+ var w=Object.create;var{getPrototypeOf:P,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:v}=Object,f=Object.prototype.hasOwnProperty;function k(o){return this[o]}var y,M,h=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var a=r?y??=new WeakMap:M??=new WeakMap,m=a.get(o);if(m)return m}e=o!=null?w(P(o)):{};let p=r||!o||!o.__esModule?i(e,"default",{value:o,enumerable:!0}):e;for(let l of c(o))if(!f.call(p,l))i(p,l,{get:k.bind(o,l),enumerable:!0});if(t)a.set(o,p);return p},g=(o)=>{var r=(d??=new WeakMap).get(o),e;if(r)return r;if(r=i({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of c(o))if(!f.call(r,t))i(r,t,{get:k.bind(o,t),enumerable:!(e=v(o,t))||e.enumerable})}return d.set(o,r),r},d;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var x=(o,r)=>{for(var e in r)i(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var L={};x(L,{CentralIconBase:()=>u});module.exports=g(L);var s=h(require("react")),n=require("react-native-svg"),u=({children:o,size:r=24,mode:e="masked",maskId:t,...a})=>{let m=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...a,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:t,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"},o)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):o)};var $={};x($,{default:()=>F,IconQuestionmarkCircle2:()=>B});module.exports=g($);var C=h(require("react"));var I=require("react-native-svg"),B=C.default.memo((o)=>{return C.default.createElement(u,{...o,maskId:"round-outlined-radius-2-stroke-1-IconQuestionmarkCircle2"},C.default.createElement(I.Path,{d:"M9.5 9.5C9.5 8.39543 10.3954 7.5 11.5 7.5H12.5845C13.6424 7.5 14.5 8.35759 14.5 9.41548C14.5 10.0883 14.147 10.7118 13.57 11.058L12.971 11.4174C12.3686 11.7788 12 12.4299 12 13.1324V14.5M12 16.5V16.51M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),F=B;
2
2
 
3
- //# debugId=5FF34D0209B2E07964756E2164756E21
3
+ //# debugId=56A0094448493DCE64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconQuestionmarkCircle2/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 { Path } from \"react-native-svg\";\n\nexport const IconQuestionmarkCircle2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconQuestionmarkCircle2\"><Path d=\"M9.5 9.5C9.5 8.39543 10.3954 7.5 11.5 7.5H12.5845C13.6424 7.5 14.5 8.35759 14.5 9.41548C14.5 10.0883 14.147 10.7118 13.57 11.058L12.971 11.4174C12.3686 11.7788 12 12.4299 12 13.1324V14.5M12 16.5V16.51M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconQuestionmarkCircle2;\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,mFChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAA4E,UAAM,KAAK,CAAC,IAAU,CAC7G,OAAO,wBAAkgB,EAAlgB,IAAqB,EAAO,OAAO,4DAA2D,wBAAC,OAAD,CAAM,EAAE,sVAAsV,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAC1gB,EAEc",
9
+ "debugId": "56A0094448493DCE64756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- import o from"react";import{Svg as C,Mask as l,Rect as s,G as u}from"react-native-svg";var i=({children:e,size:r=24,mode:a="masked",maskId:t,...m})=>{let p=a!=="raw"&&!!t;return o.createElement(C,{...m,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?o.createElement(o.Fragment,null,o.createElement(l,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(s,{width:"24",height:"24",fill:"#000"}),o.createElement(u,{color:"#fff"},e)),o.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):e)};import n from"react";import{Path as d}from"react-native-svg";var c=n.memo((e)=>{return n.createElement(i,{...e,maskId:"round-outlined-radius-2-stroke-1-IconCircleQuestionmark"},n.createElement(d,{d:"M9.5 9.5C9.5 8.39543 10.3954 7.5 11.5 7.5H12.5845C13.6424 7.5 14.5 8.35759 14.5 9.41548C14.5 10.0883 14.147 10.7118 13.57 11.058L12.971 11.4174C12.3686 11.7788 12 12.4299 12 13.1324V14.5M12 16.5V16.51M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),v=c;export{v as default,c as IconCircleQuestionmark};
1
+ import o from"react";import{Svg as C,Mask as l,Rect as s,G as u}from"react-native-svg";var i=({children:e,size:r=24,mode:a="masked",maskId:t,...m})=>{let p=a!=="raw"&&!!t;return o.createElement(C,{...m,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?o.createElement(o.Fragment,null,o.createElement(l,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(s,{width:"24",height:"24",fill:"#000"}),o.createElement(u,{color:"#fff"},e)),o.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):e)};import n from"react";import{Path as d}from"react-native-svg";var c=n.memo((e)=>{return n.createElement(i,{...e,maskId:"round-outlined-radius-2-stroke-1-IconQuestionmarkCircle2"},n.createElement(d,{d:"M9.5 9.5C9.5 8.39543 10.3954 7.5 11.5 7.5H12.5845C13.6424 7.5 14.5 8.35759 14.5 9.41548C14.5 10.0883 14.147 10.7118 13.57 11.058L12.971 11.4174C12.3686 11.7788 12 12.4299 12 13.1324V14.5M12 16.5V16.51M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),v=c;export{v as default,c as IconQuestionmarkCircle2};
2
2
 
3
- //# debugId=108A79F20976509664756E2164756E21
3
+ //# debugId=3F747D97FFBF5FFE64756E2164756E21
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": ["src/CentralIconBase/index.tsx", "src/IconCircleQuestionmark/index.tsx"],
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconQuestionmarkCircle2/index.tsx"],
4
4
  "sourcesContent": [
5
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 { Path } from \"react-native-svg\";\n\nexport const IconCircleQuestionmark: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconCircleQuestionmark\"><Path d=\"M9.5 9.5C9.5 8.39543 10.3954 7.5 11.5 7.5H12.5845C13.6424 7.5 14.5 8.35759 14.5 9.41548C14.5 10.0883 14.147 10.7118 13.57 11.058L12.971 11.4174C12.3686 11.7788 12 12.4299 12 13.1324V14.5M12 16.5V16.51M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconCircleQuestionmark;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconQuestionmarkCircle2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconQuestionmarkCircle2\"><Path d=\"M9.5 9.5C9.5 8.39543 10.3954 7.5 11.5 7.5H12.5845C13.6424 7.5 14.5 8.35759 14.5 9.41548C14.5 10.0883 14.147 10.7118 13.57 11.058L12.971 11.4174C12.3686 11.7788 12 12.4299 12 13.1324V14.5M12 16.5V16.51M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconQuestionmarkCircle2;\n"
7
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,eAAS,yBAEF,IAAM,EAA2E,EAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,gBAAigB,EAAjgB,IAAqB,EAAO,OAAO,2DAA0D,gBAAC,EAAD,CAAM,EAAE,sVAAsV,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EACzgB,EAEc",
9
- "debugId": "108A79F20976509664756E2164756E21",
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,eAAS,yBAEF,IAAM,EAA4E,EAAM,KAAK,CAAC,IAAU,CAC7G,OAAO,gBAAkgB,EAAlgB,IAAqB,EAAO,OAAO,4DAA2D,gBAAC,EAAD,CAAM,EAAE,sVAAsV,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAC1gB,EAEc",
9
+ "debugId": "3F747D97FFBF5FFE64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -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
@@ -1198,7 +1198,7 @@ Below is a complete list of available icons:
1198
1198
  - IconSidebar
1199
1199
  - IconSquareInfo
1200
1200
  - IconCircleInfo
1201
- - IconCircleQuestionmark
1201
+ - IconQuestionmarkCircle2
1202
1202
  - IconCircleBanSign
1203
1203
  - IconExclamationTriangle
1204
1204
  - IconChainLink1
@@ -1334,6 +1334,7 @@ Below is a complete list of available icons:
1334
1334
  - IconBellActive
1335
1335
  - IconBell2Active
1336
1336
  - IconBell2Off
1337
+ - IconQuestionmarkCircle
1337
1338
 
1338
1339
  ### Keyboard
1339
1340
 
@@ -1447,6 +1448,7 @@ Below is a complete list of available icons:
1447
1448
  - IconPinFocus
1448
1449
  - IconCompassPointerSquare
1449
1450
  - IconEarth2
1451
+ - IconSaturn
1450
1452
 
1451
1453
  ### Nature & Energy
1452
1454