@central-icons-react-native/square-filled-radius-0-stroke-2 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 v=Object.create;var{getPrototypeOf:w,defineProperty:s,getOwnPropertyNames:u,getOwnPropertyDescriptor:P}=Object,c=Object.prototype.hasOwnProperty;function h(r){return this[r]}var y,M,g=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var l=o?y??=new WeakMap:M??=new WeakMap,i=l.get(r);if(i)return i}e=r!=null?v(w(r)):{};let a=o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e;for(let p of u(r))if(!c.call(a,p))s(a,p,{get:h.bind(r,p),enumerable:!0});if(t)l.set(r,a);return a},k=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!c.call(o,t))s(o,t,{get:h.bind(r,t),enumerable:!(e=P(r,t))||e.enumerable})}return f.set(r,o),o},f;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var x=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var Z={};x(Z,{CentralIconBase:()=>d});module.exports=k(Z);var n=g(require("react")),C=require("react-native-svg"),d=({children:r,size:o=24,mode:e="masked",maskId:t,...l})=>{let i=e!=="raw"&&!!t;return n.default.createElement(C.Svg,{...l,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},i?n.default.createElement(n.default.Fragment,null,n.default.createElement(C.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},n.default.createElement(C.Rect,{width:"24",height:"24",fill:"#000"}),n.default.createElement(C.G,{color:"#fff"},r)),n.default.createElement(C.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var $={};x($,{default:()=>F,IconQuestionmarkCircle:()=>B});module.exports=k($);var m=g(require("react"));var I=require("react-native-svg"),B=m.default.memo((r)=>{return m.default.createElement(d,{...r,maskId:"square-filled-radius-0-stroke-2-IconQuestionmarkCircle"},m.default.createElement(I.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 15.1006C11.3374 15.1006 10.8 15.6372 10.7998 16.2998C10.7998 16.9625 11.3373 17.5 12 17.5C12.6627 17.4999 13.2002 16.9625 13.2002 16.2998C13.2 15.6373 12.6626 15.1007 12 15.1006ZM11.9775 6.50098C11.2011 6.51823 10.3908 6.79377 9.76562 7.38574C9.12506 7.99235 8.75 8.86441 8.75 9.92383H10.75C10.75 9.35832 10.9374 9.0303 11.1406 8.83789C11.359 8.63109 11.6741 8.5077 12.0225 8.5C12.3741 8.49231 12.6949 8.6043 12.9102 8.78223C13.1047 8.94316 13.25 9.18505 13.25 9.56738C13.25 9.89944 13.1714 10.0427 13.0986 10.1396C12.9795 10.2985 12.834 10.4021 12.4873 10.6895C12.1771 10.9466 11.7762 11.3059 11.4727 11.8662C11.1665 12.4314 11 13.1211 11 14H13C13 13.379 13.1149 13.0317 13.2305 12.8184C13.3487 12.6001 13.5106 12.4385 13.7627 12.2295C13.9781 12.0509 14.3956 11.7425 14.6982 11.3389C15.0473 10.8733 15.25 10.3031 15.25 9.56738C15.25 8.58181 14.8327 7.77776 14.1836 7.24121C13.5552 6.72174 12.7508 6.48388 11.9775 6.50098Z",fill:"currentColor"}))}),F=B;
2
+
3
+ //# debugId=ED46137FD22AA7C364756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconQuestionmarkCircle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconQuestionmarkCircle\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 15.1006C11.3374 15.1006 10.8 15.6372 10.7998 16.2998C10.7998 16.9625 11.3373 17.5 12 17.5C12.6627 17.4999 13.2002 16.9625 13.2002 16.2998C13.2 15.6373 12.6626 15.1007 12 15.1006ZM11.9775 6.50098C11.2011 6.51823 10.3908 6.79377 9.76562 7.38574C9.12506 7.99235 8.75 8.86441 8.75 9.92383H10.75C10.75 9.35832 10.9374 9.0303 11.1406 8.83789C11.359 8.63109 11.6741 8.5077 12.0225 8.5C12.3741 8.49231 12.6949 8.6043 12.9102 8.78223C13.1047 8.94316 13.25 9.18505 13.25 9.56738C13.25 9.89944 13.1714 10.0427 13.0986 10.1396C12.9795 10.2985 12.834 10.4021 12.4873 10.6895C12.1771 10.9466 11.7762 11.3059 11.4727 11.8662C11.1665 12.4314 11 13.1211 11 14H13C13 13.379 13.1149 13.0317 13.2305 12.8184C13.3487 12.6001 13.5106 12.4385 13.7627 12.2295C13.9781 12.0509 14.3956 11.7425 14.6982 11.3389C15.0473 10.8733 15.25 10.3031 15.25 9.56738C15.25 8.58181 14.8327 7.77776 14.1836 7.24121C13.5552 6.72174 12.7508 6.48388 11.9775 6.50098Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconQuestionmarkCircle;\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,kFChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAA2E,UAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,wBAAkrC,EAAlrC,IAAqB,EAAO,OAAO,0DAAyD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ihCAAihC,KAAK,eAAc,CAAI,EAC1rC,EAEc",
9
+ "debugId": "ED46137FD22AA7C364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as m,Mask as p,Rect as n,G as d}from"react-native-svg";var s=({children:e,size:o=24,mode:l="masked",maskId:t,...i})=>{let a=l!=="raw"&&!!t;return r.createElement(m,{...i,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(p,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(n,{width:"24",height:"24",fill:"#000"}),r.createElement(d,{color:"#fff"},e)),r.createElement(n,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):e)};import C from"react";import{Path as f}from"react-native-svg";var u=C.memo((e)=>{return C.createElement(s,{...e,maskId:"square-filled-radius-0-stroke-2-IconQuestionmarkCircle"},C.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 15.1006C11.3374 15.1006 10.8 15.6372 10.7998 16.2998C10.7998 16.9625 11.3373 17.5 12 17.5C12.6627 17.4999 13.2002 16.9625 13.2002 16.2998C13.2 15.6373 12.6626 15.1007 12 15.1006ZM11.9775 6.50098C11.2011 6.51823 10.3908 6.79377 9.76562 7.38574C9.12506 7.99235 8.75 8.86441 8.75 9.92383H10.75C10.75 9.35832 10.9374 9.0303 11.1406 8.83789C11.359 8.63109 11.6741 8.5077 12.0225 8.5C12.3741 8.49231 12.6949 8.6043 12.9102 8.78223C13.1047 8.94316 13.25 9.18505 13.25 9.56738C13.25 9.89944 13.1714 10.0427 13.0986 10.1396C12.9795 10.2985 12.834 10.4021 12.4873 10.6895C12.1771 10.9466 11.7762 11.3059 11.4727 11.8662C11.1665 12.4314 11 13.1211 11 14H13C13 13.379 13.1149 13.0317 13.2305 12.8184C13.3487 12.6001 13.5106 12.4385 13.7627 12.2295C13.9781 12.0509 14.3956 11.7425 14.6982 11.3389C15.0473 10.8733 15.25 10.3031 15.25 9.56738C15.25 8.58181 14.8327 7.77776 14.1836 7.24121C13.5552 6.72174 12.7508 6.48388 11.9775 6.50098Z",fill:"currentColor"}))}),P=u;export{P as default,u as IconQuestionmarkCircle};
2
+
3
+ //# debugId=DFDC8E28AB76631464756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconQuestionmarkCircle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconQuestionmarkCircle\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 15.1006C11.3374 15.1006 10.8 15.6372 10.7998 16.2998C10.7998 16.9625 11.3373 17.5 12 17.5C12.6627 17.4999 13.2002 16.9625 13.2002 16.2998C13.2 15.6373 12.6626 15.1007 12 15.1006ZM11.9775 6.50098C11.2011 6.51823 10.3908 6.79377 9.76562 7.38574C9.12506 7.99235 8.75 8.86441 8.75 9.92383H10.75C10.75 9.35832 10.9374 9.0303 11.1406 8.83789C11.359 8.63109 11.6741 8.5077 12.0225 8.5C12.3741 8.49231 12.6949 8.6043 12.9102 8.78223C13.1047 8.94316 13.25 9.18505 13.25 9.56738C13.25 9.89944 13.1714 10.0427 13.0986 10.1396C12.9795 10.2985 12.834 10.4021 12.4873 10.6895C12.1771 10.9466 11.7762 11.3059 11.4727 11.8662C11.1665 12.4314 11 13.1211 11 14H13C13 13.379 13.1149 13.0317 13.2305 12.8184C13.3487 12.6001 13.5106 12.4385 13.7627 12.2295C13.9781 12.0509 14.3956 11.7425 14.6982 11.3389C15.0473 10.8733 15.25 10.3031 15.25 9.56738C15.25 8.58181 14.8327 7.77776 14.1836 7.24121C13.5552 6.72174 12.7508 6.48388 11.9775 6.50098Z\" 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,eAAS,yBAEF,IAAM,EAA2E,EAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,gBAAkrC,EAAlrC,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ihCAAihC,KAAK,eAAc,CAAI,EAC1rC,EAEc",
9
+ "debugId": "DFDC8E28AB76631464756E2164756E21",
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 V=Object.create;var{getPrototypeOf:v,defineProperty:l,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,c=Object.prototype.hasOwnProperty;function h(r){return this[r]}var P,H,g=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var i=o?P??=new WeakMap:H??=new WeakMap,a=i.get(r);if(a)return a}e=r!=null?V(v(r)):{};let m=o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e;for(let C of u(r))if(!c.call(m,C))l(m,C,{get:h.bind(r,C),enumerable:!0});if(t)i.set(r,m);return m},k=(r)=>{var o=(f??=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 u(r))if(!c.call(o,t))l(o,t,{get:h.bind(r,t),enumerable:!(e=w(r,t))||e.enumerable})}return f.set(r,o),o},f;var y=(r)=>r;function M(r,o){this[r]=y.bind(null,o)}var x=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var S={};x(S,{CentralIconBase:()=>d});module.exports=k(S);var s=g(require("react")),n=require("react-native-svg"),d=({children:r,size:o=24,mode:e="masked",maskId:t,...i})=>{let a=e!=="raw"&&!!t;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"},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 b={};x(b,{default:()=>Z,IconCircleQuestionmark:()=>B});module.exports=k(b);var p=g(require("react"));var I=require("react-native-svg"),B=p.default.memo((r)=>{return p.default.createElement(d,{...r,maskId:"square-filled-radius-0-stroke-2-IconCircleQuestionmark"},p.default.createElement(I.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM9 7H15V11L13 12.5V14H11V11.5L13 10V9H11V10H9V7ZM13 17V15H11V17H13Z",fill:"currentColor"}))}),Z=B;
1
+ var V=Object.create;var{getPrototypeOf:v,defineProperty:l,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,c=Object.prototype.hasOwnProperty;function h(r){return this[r]}var P,H,g=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var i=o?P??=new WeakMap:H??=new WeakMap,a=i.get(r);if(a)return a}e=r!=null?V(v(r)):{};let m=o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e;for(let C of u(r))if(!c.call(m,C))l(m,C,{get:h.bind(r,C),enumerable:!0});if(t)i.set(r,m);return m},k=(r)=>{var o=(f??=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 u(r))if(!c.call(o,t))l(o,t,{get:h.bind(r,t),enumerable:!(e=w(r,t))||e.enumerable})}return f.set(r,o),o},f;var y=(r)=>r;function M(r,o){this[r]=y.bind(null,o)}var x=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var S={};x(S,{CentralIconBase:()=>d});module.exports=k(S);var s=g(require("react")),n=require("react-native-svg"),d=({children:r,size:o=24,mode:e="masked",maskId:t,...i})=>{let a=e!=="raw"&&!!t;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"},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 b={};x(b,{default:()=>Z,IconQuestionmarkCircle2:()=>B});module.exports=k(b);var p=g(require("react"));var I=require("react-native-svg"),B=p.default.memo((r)=>{return p.default.createElement(d,{...r,maskId:"square-filled-radius-0-stroke-2-IconQuestionmarkCircle2"},p.default.createElement(I.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM9 7H15V11L13 12.5V14H11V11.5L13 10V9H11V10H9V7ZM13 17V15H11V17H13Z",fill:"currentColor"}))}),Z=B;
2
2
 
3
- //# debugId=D8F583351FAA4E7364756E2164756E21
3
+ //# debugId=4B72CD26734F154D64756E2164756E21
@@ -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=\"square-filled-radius-0-stroke-2-IconCircleQuestionmark\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM9 7H15V11L13 12.5V14H11V11.5L13 10V9H11V10H9V7ZM13 17V15H11V17H13Z\" fill=\"currentColor\"/></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=\"square-filled-radius-0-stroke-2-IconQuestionmarkCircle2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM9 7H15V11L13 12.5V14H11V11.5L13 10V9H11V10H9V7ZM13 17V15H11V17H13Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconQuestionmarkCircle2;\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,wBAAuV,EAAvV,IAAqB,EAAO,OAAO,0DAAyD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sLAAsL,KAAK,eAAc,CAAI,EAC/V,EAEc",
9
- "debugId": "D8F583351FAA4E7364756E2164756E21",
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,wBAAwV,EAAxV,IAAqB,EAAO,OAAO,2DAA0D,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sLAAsL,KAAK,eAAc,CAAI,EAChW,EAEc",
9
+ "debugId": "4B72CD26734F154D64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import r from"react";import{Svg as p,Mask as C,Rect as s,G as d}from"react-native-svg";var l=({children:e,size:o=24,mode:i="masked",maskId:t,...a})=>{let m=i!=="raw"&&!!t;return r.createElement(p,{...a,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:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(d,{color:"#fff"},e)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):e)};import n from"react";import{Path as f}from"react-native-svg";var u=n.memo((e)=>{return n.createElement(l,{...e,maskId:"square-filled-radius-0-stroke-2-IconCircleQuestionmark"},n.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM9 7H15V11L13 12.5V14H11V11.5L13 10V9H11V10H9V7ZM13 17V15H11V17H13Z",fill:"currentColor"}))}),w=u;export{w as default,u as IconCircleQuestionmark};
1
+ import r from"react";import{Svg as p,Mask as C,Rect as s,G as d}from"react-native-svg";var l=({children:e,size:o=24,mode:i="masked",maskId:t,...a})=>{let m=i!=="raw"&&!!t;return r.createElement(p,{...a,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:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(d,{color:"#fff"},e)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):e)};import n from"react";import{Path as f}from"react-native-svg";var u=n.memo((e)=>{return n.createElement(l,{...e,maskId:"square-filled-radius-0-stroke-2-IconQuestionmarkCircle2"},n.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM9 7H15V11L13 12.5V14H11V11.5L13 10V9H11V10H9V7ZM13 17V15H11V17H13Z",fill:"currentColor"}))}),w=u;export{w as default,u as IconQuestionmarkCircle2};
2
2
 
3
- //# debugId=A41BDAE6C13D5F4364756E2164756E21
3
+ //# debugId=C918F291FEBA69D964756E2164756E21
@@ -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=\"square-filled-radius-0-stroke-2-IconCircleQuestionmark\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM9 7H15V11L13 12.5V14H11V11.5L13 10V9H11V10H9V7ZM13 17V15H11V17H13Z\" fill=\"currentColor\"/></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=\"square-filled-radius-0-stroke-2-IconQuestionmarkCircle2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM9 7H15V11L13 12.5V14H11V11.5L13 10V9H11V10H9V7ZM13 17V15H11V17H13Z\" fill=\"currentColor\"/></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,gBAAuV,EAAvV,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sLAAsL,KAAK,eAAc,CAAI,EAC/V,EAEc",
9
- "debugId": "A41BDAE6C13D5F4364756E2164756E21",
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,gBAAwV,EAAxV,IAAqB,EAAO,OAAO,2DAA0D,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sLAAsL,KAAK,eAAc,CAAI,EAChW,EAEc",
9
+ "debugId": "C918F291FEBA69D964756E2164756E21",
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 v=Object.create;var{getPrototypeOf:w,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:P}=Object,h=Object.prototype.hasOwnProperty;function g(r){return this[r]}var S,M,x=(r,o,C)=>{var e=r!=null&&typeof r==="object";if(e){var a=o?S??=new WeakMap:M??=new WeakMap,p=a.get(r);if(p)return p}C=r!=null?v(w(r)):{};let i=o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C;for(let m of c(r))if(!h.call(i,m))l(i,m,{get:g.bind(r,m),enumerable:!0});if(e)a.set(r,i);return i},I=(r)=>{var o=(u??=new WeakMap).get(r),C;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!h.call(o,e))l(o,e,{get:g.bind(r,e),enumerable:!(C=P(r,e))||C.enumerable})}return u.set(r,o),o},u;var y=(r)=>r;function Z(r,o){this[r]=y.bind(null,o)}var k=(r,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0,configurable:!0,set:Z.bind(o,C)})};var b={};k(b,{CentralIconBase:()=>d});module.exports=I(b);var n=x(require("react")),t=require("react-native-svg"),d=({children:r,size:o=24,mode:C="masked",maskId:e,...a})=>{let p=C!=="raw"&&!!e;return n.default.createElement(t.Svg,{...a,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?n.default.createElement(n.default.Fragment,null,n.default.createElement(t.Mask,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},n.default.createElement(t.Rect,{width:"24",height:"24",fill:"#000"}),n.default.createElement(t.G,{color:"#fff"},r)),n.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):r)};var $={};k($,{default:()=>F,IconSaturn:()=>B});module.exports=I($);var s=x(require("react"));var f=require("react-native-svg"),B=s.default.memo((r)=>{return s.default.createElement(d,{...r,maskId:"square-filled-radius-0-stroke-2-IconSaturn"},s.default.createElement(f.Path,{d:"M20.1083 14.5566C19.023 18.0015 15.8043 20.5 12.0009 20.5C10.1079 20.5 8.35989 19.8804 6.94719 18.834C8.97448 18.5528 11.3014 18.0102 13.7011 17.2305C16.1014 16.4505 18.3028 15.5212 20.1083 14.5566Z",fill:"currentColor"}),s.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.0009 3.5C14.6021 3.50001 16.9278 4.67001 18.4863 6.51074C19.6615 6.40913 20.7169 6.41749 21.5654 6.56348C22.0539 6.6476 22.5272 6.78578 22.9257 7.01367C23.2806 7.21667 23.6195 7.51808 23.8144 7.94629L23.8886 8.13672L23.9413 8.33594C24.0352 8.79673 23.9372 9.23962 23.7695 9.6123C23.5809 10.031 23.2794 10.4211 22.9335 10.7764C22.2402 11.4884 21.2167 12.2141 19.995 12.9092C18.1877 13.9374 15.8449 14.9561 13.2363 15.8037C10.6274 16.6514 8.13297 17.2042 6.06633 17.4346C4.66964 17.5902 3.41474 17.6051 2.43547 17.4365C1.94699 17.3524 1.47362 17.2142 1.07512 16.9863C0.669737 16.7544 0.284852 16.3936 0.112228 15.8623C-0.0602645 15.331 0.039714 14.8136 0.231369 14.3877C0.419876 13.9689 0.721401 13.5789 1.06731 13.2236C1.66782 12.6069 2.51613 11.9796 3.52629 11.3711C3.84823 6.97044 7.51807 3.5 12.0009 3.5ZM3.66399 13.6631C3.17469 14.0045 2.78424 14.3262 2.49992 14.6182C2.24578 14.8792 2.11298 15.0793 2.05461 15.209C2.0508 15.2175 2.04878 15.2261 2.04582 15.2334C2.05284 15.2378 2.05967 15.245 2.06828 15.25C2.19171 15.3206 2.4165 15.404 2.77531 15.4658C3.17683 15.5349 3.68182 15.5649 4.27824 15.5537C4.00338 14.9574 3.79517 14.3242 3.66399 13.6631ZM19.7197 8.44531C19.9946 9.04187 20.2017 9.67542 20.3329 10.3369C20.8237 9.99444 21.2159 9.6735 21.5009 9.38086C21.7549 9.11993 21.8878 8.9207 21.9462 8.79102C21.9501 8.7823 21.951 8.77304 21.954 8.76562C21.9473 8.76137 21.9408 8.75471 21.9325 8.75C21.809 8.67942 21.5844 8.59595 21.2255 8.53418C20.8232 8.46499 20.3175 8.43391 19.7197 8.44531Z",fill:"currentColor"}))}),F=B;
2
+
3
+ //# debugId=8A8EFE0B3BD45EB364756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconSaturn: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSaturn\"><Path d=\"M20.1083 14.5566C19.023 18.0015 15.8043 20.5 12.0009 20.5C10.1079 20.5 8.35989 19.8804 6.94719 18.834C8.97448 18.5528 11.3014 18.0102 13.7011 17.2305C16.1014 16.4505 18.3028 15.5212 20.1083 14.5566Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.0009 3.5C14.6021 3.50001 16.9278 4.67001 18.4863 6.51074C19.6615 6.40913 20.7169 6.41749 21.5654 6.56348C22.0539 6.6476 22.5272 6.78578 22.9257 7.01367C23.2806 7.21667 23.6195 7.51808 23.8144 7.94629L23.8886 8.13672L23.9413 8.33594C24.0352 8.79673 23.9372 9.23962 23.7695 9.6123C23.5809 10.031 23.2794 10.4211 22.9335 10.7764C22.2402 11.4884 21.2167 12.2141 19.995 12.9092C18.1877 13.9374 15.8449 14.9561 13.2363 15.8037C10.6274 16.6514 8.13297 17.2042 6.06633 17.4346C4.66964 17.5902 3.41474 17.6051 2.43547 17.4365C1.94699 17.3524 1.47362 17.2142 1.07512 16.9863C0.669737 16.7544 0.284852 16.3936 0.112228 15.8623C-0.0602645 15.331 0.039714 14.8136 0.231369 14.3877C0.419876 13.9689 0.721401 13.5789 1.06731 13.2236C1.66782 12.6069 2.51613 11.9796 3.52629 11.3711C3.84823 6.97044 7.51807 3.5 12.0009 3.5ZM3.66399 13.6631C3.17469 14.0045 2.78424 14.3262 2.49992 14.6182C2.24578 14.8792 2.11298 15.0793 2.05461 15.209C2.0508 15.2175 2.04878 15.2261 2.04582 15.2334C2.05284 15.2378 2.05967 15.245 2.06828 15.25C2.19171 15.3206 2.4165 15.404 2.77531 15.4658C3.17683 15.5349 3.68182 15.5649 4.27824 15.5537C4.00338 14.9574 3.79517 14.3242 3.66399 13.6631ZM19.7197 8.44531C19.9946 9.04187 20.2017 9.67542 20.3329 10.3369C20.8237 9.99444 21.2159 9.6735 21.5009 9.38086C21.7549 9.11993 21.8878 8.9207 21.9462 8.79102C21.9501 8.7823 21.951 8.77304 21.954 8.76562C21.9473 8.76137 21.9408 8.75471 21.9325 8.75C21.809 8.67942 21.5844 8.59595 21.2255 8.53418C20.8232 8.46499 20.3175 8.43391 19.7197 8.44531Z\" fill=\"currentColor\"/></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,sBAEqB,IAArB,8BAEa,EAA+D,UAAM,KAAK,CAAC,IAAU,CAChG,OAAO,wBAA01D,EAA11D,IAAqB,EAAO,OAAO,8CAA6C,wBAAC,OAAD,CAAM,EAAE,yMAAyM,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+9CAA+9C,KAAK,eAAc,CAAI,EACl2D,EAEc",
9
+ "debugId": "8A8EFE0B3BD45EB364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as m,Mask as d,Rect as n,G as f}from"react-native-svg";var l=({children:C,size:o=24,mode:a="masked",maskId:t,...p})=>{let i=a!=="raw"&&!!t;return r.createElement(m,{...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(d,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(n,{width:"24",height:"24",fill:"#000"}),r.createElement(f,{color:"#fff"},C)),r.createElement(n,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):C)};import e from"react";import{Path as s}from"react-native-svg";var u=e.memo((C)=>{return e.createElement(l,{...C,maskId:"square-filled-radius-0-stroke-2-IconSaturn"},e.createElement(s,{d:"M20.1083 14.5566C19.023 18.0015 15.8043 20.5 12.0009 20.5C10.1079 20.5 8.35989 19.8804 6.94719 18.834C8.97448 18.5528 11.3014 18.0102 13.7011 17.2305C16.1014 16.4505 18.3028 15.5212 20.1083 14.5566Z",fill:"currentColor"}),e.createElement(s,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.0009 3.5C14.6021 3.50001 16.9278 4.67001 18.4863 6.51074C19.6615 6.40913 20.7169 6.41749 21.5654 6.56348C22.0539 6.6476 22.5272 6.78578 22.9257 7.01367C23.2806 7.21667 23.6195 7.51808 23.8144 7.94629L23.8886 8.13672L23.9413 8.33594C24.0352 8.79673 23.9372 9.23962 23.7695 9.6123C23.5809 10.031 23.2794 10.4211 22.9335 10.7764C22.2402 11.4884 21.2167 12.2141 19.995 12.9092C18.1877 13.9374 15.8449 14.9561 13.2363 15.8037C10.6274 16.6514 8.13297 17.2042 6.06633 17.4346C4.66964 17.5902 3.41474 17.6051 2.43547 17.4365C1.94699 17.3524 1.47362 17.2142 1.07512 16.9863C0.669737 16.7544 0.284852 16.3936 0.112228 15.8623C-0.0602645 15.331 0.039714 14.8136 0.231369 14.3877C0.419876 13.9689 0.721401 13.5789 1.06731 13.2236C1.66782 12.6069 2.51613 11.9796 3.52629 11.3711C3.84823 6.97044 7.51807 3.5 12.0009 3.5ZM3.66399 13.6631C3.17469 14.0045 2.78424 14.3262 2.49992 14.6182C2.24578 14.8792 2.11298 15.0793 2.05461 15.209C2.0508 15.2175 2.04878 15.2261 2.04582 15.2334C2.05284 15.2378 2.05967 15.245 2.06828 15.25C2.19171 15.3206 2.4165 15.404 2.77531 15.4658C3.17683 15.5349 3.68182 15.5649 4.27824 15.5537C4.00338 14.9574 3.79517 14.3242 3.66399 13.6631ZM19.7197 8.44531C19.9946 9.04187 20.2017 9.67542 20.3329 10.3369C20.8237 9.99444 21.2159 9.6735 21.5009 9.38086C21.7549 9.11993 21.8878 8.9207 21.9462 8.79102C21.9501 8.7823 21.951 8.77304 21.954 8.76562C21.9473 8.76137 21.9408 8.75471 21.9325 8.75C21.809 8.67942 21.5844 8.59595 21.2255 8.53418C20.8232 8.46499 20.3175 8.43391 19.7197 8.44531Z",fill:"currentColor"}))}),P=u;export{P as default,u as IconSaturn};
2
+
3
+ //# debugId=010675FEEC3A9D5E64756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconSaturn: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSaturn\"><Path d=\"M20.1083 14.5566C19.023 18.0015 15.8043 20.5 12.0009 20.5C10.1079 20.5 8.35989 19.8804 6.94719 18.834C8.97448 18.5528 11.3014 18.0102 13.7011 17.2305C16.1014 16.4505 18.3028 15.5212 20.1083 14.5566Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.0009 3.5C14.6021 3.50001 16.9278 4.67001 18.4863 6.51074C19.6615 6.40913 20.7169 6.41749 21.5654 6.56348C22.0539 6.6476 22.5272 6.78578 22.9257 7.01367C23.2806 7.21667 23.6195 7.51808 23.8144 7.94629L23.8886 8.13672L23.9413 8.33594C24.0352 8.79673 23.9372 9.23962 23.7695 9.6123C23.5809 10.031 23.2794 10.4211 22.9335 10.7764C22.2402 11.4884 21.2167 12.2141 19.995 12.9092C18.1877 13.9374 15.8449 14.9561 13.2363 15.8037C10.6274 16.6514 8.13297 17.2042 6.06633 17.4346C4.66964 17.5902 3.41474 17.6051 2.43547 17.4365C1.94699 17.3524 1.47362 17.2142 1.07512 16.9863C0.669737 16.7544 0.284852 16.3936 0.112228 15.8623C-0.0602645 15.331 0.039714 14.8136 0.231369 14.3877C0.419876 13.9689 0.721401 13.5789 1.06731 13.2236C1.66782 12.6069 2.51613 11.9796 3.52629 11.3711C3.84823 6.97044 7.51807 3.5 12.0009 3.5ZM3.66399 13.6631C3.17469 14.0045 2.78424 14.3262 2.49992 14.6182C2.24578 14.8792 2.11298 15.0793 2.05461 15.209C2.0508 15.2175 2.04878 15.2261 2.04582 15.2334C2.05284 15.2378 2.05967 15.245 2.06828 15.25C2.19171 15.3206 2.4165 15.404 2.77531 15.4658C3.17683 15.5349 3.68182 15.5649 4.27824 15.5537C4.00338 14.9574 3.79517 14.3242 3.66399 13.6631ZM19.7197 8.44531C19.9946 9.04187 20.2017 9.67542 20.3329 10.3369C20.8237 9.99444 21.2159 9.6735 21.5009 9.38086C21.7549 9.11993 21.8878 8.9207 21.9462 8.79102C21.9501 8.7823 21.951 8.77304 21.954 8.76562C21.9473 8.76137 21.9408 8.75471 21.9325 8.75C21.809 8.67942 21.5844 8.59595 21.2255 8.53418C20.8232 8.46499 20.3175 8.43391 19.7197 8.44531Z\" fill=\"currentColor\"/></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,eAAS,yBAEF,IAAM,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA01D,EAA11D,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,yMAAyM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+9CAA+9C,KAAK,eAAc,CAAI,EACl2D,EAEc",
9
+ "debugId": "010675FEEC3A9D5E64756E2164756E21",
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