@central-icons-react-native/round-filled-radius-1-stroke-2 1.1.313 → 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:l,getOwnPropertyNames:u,getOwnPropertyDescriptor:P}=Object,c=Object.prototype.hasOwnProperty;function h(o){return this[o]}var y,M,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var s=r?y??=new WeakMap:M??=new WeakMap,i=s.get(o);if(i)return i}e=o!=null?v(w(o)):{};let m=r||!o||!o.__esModule?l(e,"default",{value:o,enumerable:!0}):e;for(let p of u(o))if(!c.call(m,p))l(m,p,{get:h.bind(o,p),enumerable:!0});if(t)s.set(o,m);return m},k=(o)=>{var r=(f??=new WeakMap).get(o),e;if(r)return r;if(r=l({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of u(o))if(!c.call(r,t))l(r,t,{get:h.bind(o,t),enumerable:!(e=P(o,t))||e.enumerable})}return f.set(o,r),r},f;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var x=(o,r)=>{for(var e in r)l(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var Z={};x(Z,{CentralIconBase:()=>d});module.exports=k(Z);var n=g(require("react")),C=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:t,...s})=>{let i=e!=="raw"&&!!t;return n.default.createElement(C.Svg,{...s,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,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"},o)),n.default.createElement(C.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):o)};var $={};x($,{default:()=>F,IconQuestionmarkCircle:()=>B});module.exports=k($);var a=g(require("react"));var I=require("react-native-svg"),B=a.default.memo((o)=>{return a.default.createElement(d,{...o,maskId:"round-filled-radius-1-stroke-2-IconQuestionmarkCircle"},a.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.1006ZM12.2168 6.50488C10.9526 6.43462 9.37134 7.11549 9.02148 8.76562C8.90715 9.30578 9.25281 9.83665 9.79297 9.95117C10.3331 10.0655 10.864 9.71983 10.9785 9.17969C11.0591 8.80121 11.4777 8.46717 12.1055 8.50195C12.3905 8.51781 12.6178 8.61615 12.7598 8.74609C12.8829 8.85893 13 9.0456 13 9.39355C13 9.65244 12.9369 9.78391 12.8672 9.88379C12.7697 10.0234 12.632 10.1434 12.3564 10.375C12.1146 10.5783 11.7534 10.8795 11.4746 11.3066C11.1763 11.7639 11 12.3153 11 13C11 13.5523 11.4477 14 12 14C12.5523 14 13 13.5523 13 13C13 12.6849 13.0739 12.5166 13.1504 12.3994C13.2466 12.2521 13.3856 12.1231 13.6436 11.9062C13.868 11.7176 14.2303 11.4268 14.5078 11.0293C14.8131 10.592 15 10.0599 15 9.39355C15 8.51679 14.6709 7.78422 14.1113 7.27148C13.5705 6.77602 12.8778 6.54166 12.2168 6.50488Z",fill:"currentColor"}))}),F=B;
2
+
3
+ //# debugId=1E26E405A31AF88B64756E2164756E21
@@ -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=\"round-filled-radius-1-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.1006ZM12.2168 6.50488C10.9526 6.43462 9.37134 7.11549 9.02148 8.76562C8.90715 9.30578 9.25281 9.83665 9.79297 9.95117C10.3331 10.0655 10.864 9.71983 10.9785 9.17969C11.0591 8.80121 11.4777 8.46717 12.1055 8.50195C12.3905 8.51781 12.6178 8.61615 12.7598 8.74609C12.8829 8.85893 13 9.0456 13 9.39355C13 9.65244 12.9369 9.78391 12.8672 9.88379C12.7697 10.0234 12.632 10.1434 12.3564 10.375C12.1146 10.5783 11.7534 10.8795 11.4746 11.3066C11.1763 11.7639 11 12.3153 11 13C11 13.5523 11.4477 14 12 14C12.5523 14 13 13.5523 13 13C13 12.6849 13.0739 12.5166 13.1504 12.3994C13.2466 12.2521 13.3856 12.1231 13.6436 11.9062C13.868 11.7176 14.2303 11.4268 14.5078 11.0293C14.8131 10.592 15 10.0599 15 9.39355C15 8.51679 14.6709 7.78422 14.1113 7.27148C13.5705 6.77602 12.8778 6.54166 12.2168 6.50488Z\" 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,wBAA0tC,EAA1tC,IAAqB,EAAO,OAAO,yDAAwD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0jCAA0jC,KAAK,eAAc,CAAI,EACluC,EAEc",
9
+ "debugId": "1E26E405A31AF88B64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as p,Rect as n,G as d}from"react-native-svg";var l=({children:e,size:r=24,mode:s="masked",maskId:t,...i})=>{let m=s!=="raw"&&!!t;return o.createElement(a,{...i,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?o.createElement(o.Fragment,null,o.createElement(p,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(n,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},e)),o.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(l,{...e,maskId:"round-filled-radius-1-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.1006ZM12.2168 6.50488C10.9526 6.43462 9.37134 7.11549 9.02148 8.76562C8.90715 9.30578 9.25281 9.83665 9.79297 9.95117C10.3331 10.0655 10.864 9.71983 10.9785 9.17969C11.0591 8.80121 11.4777 8.46717 12.1055 8.50195C12.3905 8.51781 12.6178 8.61615 12.7598 8.74609C12.8829 8.85893 13 9.0456 13 9.39355C13 9.65244 12.9369 9.78391 12.8672 9.88379C12.7697 10.0234 12.632 10.1434 12.3564 10.375C12.1146 10.5783 11.7534 10.8795 11.4746 11.3066C11.1763 11.7639 11 12.3153 11 13C11 13.5523 11.4477 14 12 14C12.5523 14 13 13.5523 13 13C13 12.6849 13.0739 12.5166 13.1504 12.3994C13.2466 12.2521 13.3856 12.1231 13.6436 11.9062C13.868 11.7176 14.2303 11.4268 14.5078 11.0293C14.8131 10.592 15 10.0599 15 9.39355C15 8.51679 14.6709 7.78422 14.1113 7.27148C13.5705 6.77602 12.8778 6.54166 12.2168 6.50488Z",fill:"currentColor"}))}),P=u;export{P as default,u as IconQuestionmarkCircle};
2
+
3
+ //# debugId=070F093000E4929164756E2164756E21
@@ -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=\"round-filled-radius-1-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.1006ZM12.2168 6.50488C10.9526 6.43462 9.37134 7.11549 9.02148 8.76562C8.90715 9.30578 9.25281 9.83665 9.79297 9.95117C10.3331 10.0655 10.864 9.71983 10.9785 9.17969C11.0591 8.80121 11.4777 8.46717 12.1055 8.50195C12.3905 8.51781 12.6178 8.61615 12.7598 8.74609C12.8829 8.85893 13 9.0456 13 9.39355C13 9.65244 12.9369 9.78391 12.8672 9.88379C12.7697 10.0234 12.632 10.1434 12.3564 10.375C12.1146 10.5783 11.7534 10.8795 11.4746 11.3066C11.1763 11.7639 11 12.3153 11 13C11 13.5523 11.4477 14 12 14C12.5523 14 13 13.5523 13 13C13 12.6849 13.0739 12.5166 13.1504 12.3994C13.2466 12.2521 13.3856 12.1231 13.6436 11.9062C13.868 11.7176 14.2303 11.4268 14.5078 11.0293C14.8131 10.592 15 10.0599 15 9.39355C15 8.51679 14.6709 7.78422 14.1113 7.27148C13.5705 6.77602 12.8778 6.54166 12.2168 6.50488Z\" 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,gBAA0tC,EAA1tC,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0jCAA0jC,KAAK,eAAc,CAAI,EACluC,EAEc",
9
+ "debugId": "070F093000E4929164756E2164756E21",
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(o){return this[o]}var P,y,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var s=r?P??=new WeakMap:y??=new WeakMap,i=s.get(o);if(i)return i}e=o!=null?V(v(o)):{};let m=r||!o||!o.__esModule?l(e,"default",{value:o,enumerable:!0}):e;for(let p of u(o))if(!c.call(m,p))l(m,p,{get:h.bind(o,p),enumerable:!0});if(t)s.set(o,m);return m},k=(o)=>{var r=(f??=new WeakMap).get(o),e;if(r)return r;if(r=l({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of u(o))if(!c.call(r,t))l(r,t,{get:h.bind(o,t),enumerable:!(e=w(o,t))||e.enumerable})}return f.set(o,r),r},f;var M=(o)=>o;function S(o,r){this[o]=M.bind(null,r)}var x=(o,r)=>{for(var e in r)l(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var b={};x(b,{CentralIconBase:()=>d});module.exports=k(b);var C=g(require("react")),n=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:t,...s})=>{let i=e!=="raw"&&!!t;return C.default.createElement(n.Svg,{...s,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},i?C.default.createElement(C.default.Fragment,null,C.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},C.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),C.default.createElement(n.G,{color:"#fff"},o)),C.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):o)};var Z={};x(Z,{default:()=>$,IconCircleQuestionmark:()=>B});module.exports=k(Z);var a=g(require("react"));var I=require("react-native-svg"),B=a.default.memo((o)=>{return a.default.createElement(d,{...o,maskId:"round-filled-radius-1-stroke-2-IconCircleQuestionmark"},a.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 2ZM11 7C9.89543 7 9 7.89543 9 9V9.5C9 10.0523 9.44772 10.5 10 10.5C10.5523 10.5 11 10.0523 11 9.5V9H13V10L11.8 10.9C11.2964 11.2777 11 11.8705 11 12.5V13C11 13.5523 11.4477 14 12 14C12.5523 14 13 13.5523 13 13V12.5L14.2 11.6C14.7036 11.2223 15 10.6295 15 10V9C15 7.89543 14.1046 7 13 7H11ZM13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16V16.01C11 16.5623 11.4477 17.01 12 17.01C12.5523 17.01 13 16.5623 13 16.01V16Z",fill:"currentColor"}))}),$=B;
1
+ var V=Object.create;var{getPrototypeOf:v,defineProperty:l,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,c=Object.prototype.hasOwnProperty;function h(o){return this[o]}var P,y,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var s=r?P??=new WeakMap:y??=new WeakMap,i=s.get(o);if(i)return i}e=o!=null?V(v(o)):{};let m=r||!o||!o.__esModule?l(e,"default",{value:o,enumerable:!0}):e;for(let p of u(o))if(!c.call(m,p))l(m,p,{get:h.bind(o,p),enumerable:!0});if(t)s.set(o,m);return m},k=(o)=>{var r=(f??=new WeakMap).get(o),e;if(r)return r;if(r=l({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of u(o))if(!c.call(r,t))l(r,t,{get:h.bind(o,t),enumerable:!(e=w(o,t))||e.enumerable})}return f.set(o,r),r},f;var M=(o)=>o;function S(o,r){this[o]=M.bind(null,r)}var x=(o,r)=>{for(var e in r)l(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var b={};x(b,{CentralIconBase:()=>d});module.exports=k(b);var C=g(require("react")),n=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:t,...s})=>{let i=e!=="raw"&&!!t;return C.default.createElement(n.Svg,{...s,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},i?C.default.createElement(C.default.Fragment,null,C.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},C.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),C.default.createElement(n.G,{color:"#fff"},o)),C.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):o)};var Z={};x(Z,{default:()=>$,IconQuestionmarkCircle2:()=>B});module.exports=k(Z);var a=g(require("react"));var I=require("react-native-svg"),B=a.default.memo((o)=>{return a.default.createElement(d,{...o,maskId:"round-filled-radius-1-stroke-2-IconQuestionmarkCircle2"},a.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 2ZM11 7C9.89543 7 9 7.89543 9 9V9.5C9 10.0523 9.44772 10.5 10 10.5C10.5523 10.5 11 10.0523 11 9.5V9H13V10L11.8 10.9C11.2964 11.2777 11 11.8705 11 12.5V13C11 13.5523 11.4477 14 12 14C12.5523 14 13 13.5523 13 13V12.5L14.2 11.6C14.7036 11.2223 15 10.6295 15 10V9C15 7.89543 14.1046 7 13 7H11ZM13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16V16.01C11 16.5623 11.4477 17.01 12 17.01C12.5523 17.01 13 16.5623 13 16.01V16Z",fill:"currentColor"}))}),$=B;
2
2
 
3
- //# debugId=65043D38012E1E0564756E2164756E21
3
+ //# debugId=A58370690D30700664756E2164756E21
@@ -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-filled-radius-1-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 2ZM11 7C9.89543 7 9 7.89543 9 9V9.5C9 10.0523 9.44772 10.5 10 10.5C10.5523 10.5 11 10.0523 11 9.5V9H13V10L11.8 10.9C11.2964 11.2777 11 11.8705 11 12.5V13C11 13.5523 11.4477 14 12 14C12.5523 14 13 13.5523 13 13V12.5L14.2 11.6C14.7036 11.2223 15 10.6295 15 10V9C15 7.89543 14.1046 7 13 7H11ZM13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16V16.01C11 16.5623 11.4477 17.01 12 17.01C12.5523 17.01 13 16.5623 13 16.01V16Z\" 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=\"round-filled-radius-1-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 2ZM11 7C9.89543 7 9 7.89543 9 9V9.5C9 10.0523 9.44772 10.5 10 10.5C10.5523 10.5 11 10.0523 11 9.5V9H13V10L11.8 10.9C11.2964 11.2777 11 11.8705 11 12.5V13C11 13.5523 11.4477 14 12 14C12.5523 14 13 13.5523 13 13V12.5L14.2 11.6C14.7036 11.2223 15 10.6295 15 10V9C15 7.89543 14.1046 7 13 7H11ZM13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16V16.01C11 16.5623 11.4477 17.01 12 17.01C12.5523 17.01 13 16.5623 13 16.01V16Z\" 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,wBAA8rB,EAA9rB,IAAqB,EAAO,OAAO,yDAAwD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8hBAA8hB,KAAK,eAAc,CAAI,EACtsB,EAEc",
9
- "debugId": "65043D38012E1E0564756E2164756E21",
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,wBAA+rB,EAA/rB,IAAqB,EAAO,OAAO,0DAAyD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8hBAA8hB,KAAK,eAAc,CAAI,EACvsB,EAEc",
9
+ "debugId": "A58370690D30700664756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as p,Rect as C,G as d}from"react-native-svg";var l=({children:e,size:r=24,mode:s="masked",maskId:t,...i})=>{let m=s!=="raw"&&!!t;return o.createElement(a,{...i,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?o.createElement(o.Fragment,null,o.createElement(p,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(C,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},e)),o.createElement(C,{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:"round-filled-radius-1-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 2ZM11 7C9.89543 7 9 7.89543 9 9V9.5C9 10.0523 9.44772 10.5 10 10.5C10.5523 10.5 11 10.0523 11 9.5V9H13V10L11.8 10.9C11.2964 11.2777 11 11.8705 11 12.5V13C11 13.5523 11.4477 14 12 14C12.5523 14 13 13.5523 13 13V12.5L14.2 11.6C14.7036 11.2223 15 10.6295 15 10V9C15 7.89543 14.1046 7 13 7H11ZM13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16V16.01C11 16.5623 11.4477 17.01 12 17.01C12.5523 17.01 13 16.5623 13 16.01V16Z",fill:"currentColor"}))}),w=u;export{w as default,u as IconQuestionmarkCircle2};
2
+
3
+ //# debugId=03DA8D5B87A0537064756E2164756E21
@@ -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-filled-radius-1-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 2ZM11 7C9.89543 7 9 7.89543 9 9V9.5C9 10.0523 9.44772 10.5 10 10.5C10.5523 10.5 11 10.0523 11 9.5V9H13V10L11.8 10.9C11.2964 11.2777 11 11.8705 11 12.5V13C11 13.5523 11.4477 14 12 14C12.5523 14 13 13.5523 13 13V12.5L14.2 11.6C14.7036 11.2223 15 10.6295 15 10V9C15 7.89543 14.1046 7 13 7H11ZM13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16V16.01C11 16.5623 11.4477 17.01 12 17.01C12.5523 17.01 13 16.5623 13 16.01V16Z\" 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=\"round-filled-radius-1-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 2ZM11 7C9.89543 7 9 7.89543 9 9V9.5C9 10.0523 9.44772 10.5 10 10.5C10.5523 10.5 11 10.0523 11 9.5V9H13V10L11.8 10.9C11.2964 11.2777 11 11.8705 11 12.5V13C11 13.5523 11.4477 14 12 14C12.5523 14 13 13.5523 13 13V12.5L14.2 11.6C14.7036 11.2223 15 10.6295 15 10V9C15 7.89543 14.1046 7 13 7H11ZM13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16V16.01C11 16.5623 11.4477 17.01 12 17.01C12.5523 17.01 13 16.5623 13 16.01V16Z\" 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,gBAA8rB,EAA9rB,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8hBAA8hB,KAAK,eAAc,CAAI,EACtsB,EAEc",
9
- "debugId": "3A1A900DDDE9766664756E2164756E21",
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,gBAA+rB,EAA/rB,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8hBAA8hB,KAAK,eAAc,CAAI,EACvsB,EAEc",
9
+ "debugId": "03DA8D5B87A0537064756E2164756E21",
10
10
  "names": []
11
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