@central-icons-react-native/round-filled-radius-1-stroke-2 1.1.314 → 1.1.315

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.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconQuestionmark: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconQuestionmark;
@@ -0,0 +1,3 @@
1
+ var w=Object.create;var{getPrototypeOf:P,defineProperty:s,getOwnPropertyNames:h,getOwnPropertyDescriptor:v}=Object,c=Object.prototype.hasOwnProperty;function g(r){return this[r]}var y,S,k=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var l=o?y??=new WeakMap:S??=new WeakMap,a=l.get(r);if(a)return a}e=r!=null?w(P(r)):{};let i=o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e;for(let p of h(r))if(!c.call(i,p))s(i,p,{get:g.bind(r,p),enumerable:!0});if(t)l.set(r,i);return i},x=(r)=>{var o=(u??=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 h(r))if(!c.call(o,t))s(o,t,{get:g.bind(r,t),enumerable:!(e=v(r,t))||e.enumerable})}return u.set(r,o),o},u;var M=(r)=>r;function b(r,o){this[r]=M.bind(null,o)}var I=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var $={};I($,{CentralIconBase:()=>f});module.exports=x($);var C=k(require("react")),n=require("react-native-svg"),f=({children:r,size:o=24,mode:e="masked",maskId:t,...l})=>{let a=e!=="raw"&&!!t;return C.default.createElement(n.Svg,{...l,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},a?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"},r)),C.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var F={};I(F,{default:()=>G,IconQuestionmark:()=>B});module.exports=x(F);var m=k(require("react"));var d=require("react-native-svg"),B=m.default.memo((r)=>{return m.default.createElement(f,{...r,maskId:"round-filled-radius-1-stroke-2-IconQuestionmark"},m.default.createElement(d.Path,{d:"M12.0001 17.2004C12.7733 17.2004 13.4005 17.8276 13.4005 18.6008C13.4003 19.3739 12.7732 20.0002 12.0001 20.0002C11.2269 20.0002 10.5998 19.3739 10.5997 18.6008C10.5997 17.8276 11.2269 17.2004 12.0001 17.2004Z",fill:"currentColor"}),m.default.createElement(d.Path,{d:"M7.0235 7.8996C7.59178 4.98855 10.1895 3.80736 12.4327 4.02655C14.691 4.24728 16.9999 5.92049 17.0001 8.94061C17.0001 10.0358 16.678 10.8834 16.1417 11.5568C15.6485 12.176 15.0094 12.5911 14.5694 12.885C14.072 13.2171 13.7733 13.4283 13.5635 13.6916C13.3969 13.9008 13.2501 14.1929 13.2501 14.7502C13.2501 15.4405 12.6904 16.0002 12.0001 16.0002C11.3097 16.0002 10.7501 15.4405 10.7501 14.7502C10.7501 13.655 11.0721 12.8073 11.6085 12.134C12.1017 11.5149 12.7408 11.0996 13.1807 10.8058C13.6781 10.4737 13.9768 10.2626 14.1866 9.99921C14.3532 9.78994 14.5001 9.49784 14.5001 8.94061C14.4999 7.49312 13.4736 6.64036 12.1895 6.51483C10.8902 6.38787 9.73785 7.04072 9.47662 8.37909C9.34423 9.05636 8.68817 9.49846 8.0108 9.3664C7.33322 9.23419 6.8913 8.57718 7.0235 7.8996Z",fill:"currentColor"}))}),G=B;
2
+
3
+ //# debugId=E1B3A9E10D7D948664756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconQuestionmark/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 IconQuestionmark: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-1-stroke-2-IconQuestionmark\"><Path d=\"M12.0001 17.2004C12.7733 17.2004 13.4005 17.8276 13.4005 18.6008C13.4003 19.3739 12.7732 20.0002 12.0001 20.0002C11.2269 20.0002 10.5998 19.3739 10.5997 18.6008C10.5997 17.8276 11.2269 17.2004 12.0001 17.2004Z\" fill=\"currentColor\"/><Path d=\"M7.0235 7.8996C7.59178 4.98855 10.1895 3.80736 12.4327 4.02655C14.691 4.24728 16.9999 5.92049 17.0001 8.94061C17.0001 10.0358 16.678 10.8834 16.1417 11.5568C15.6485 12.176 15.0094 12.5911 14.5694 12.885C14.072 13.2171 13.7733 13.4283 13.5635 13.6916C13.3969 13.9008 13.2501 14.1929 13.2501 14.7502C13.2501 15.4405 12.6904 16.0002 12.0001 16.0002C11.3097 16.0002 10.7501 15.4405 10.7501 14.7502C10.7501 13.655 11.0721 12.8073 11.6085 12.134C12.1017 11.5149 12.7408 11.0996 13.1807 10.8058C13.6781 10.4737 13.9768 10.2626 14.1866 9.99921C14.3532 9.78994 14.5001 9.49784 14.5001 8.94061C14.4999 7.49312 13.4736 6.64036 12.1895 6.51483C10.8902 6.38787 9.73785 7.04072 9.47662 8.37909C9.34423 9.05636 8.68817 9.49846 8.0108 9.3664C7.33322 9.23419 6.8913 8.57718 7.0235 7.8996Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconQuestionmark;\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,4EChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAqE,UAAM,KAAK,CAAC,IAAU,CACtG,OAAO,wBAA2mC,EAA3mC,IAAqB,EAAO,OAAO,mDAAkD,wBAAC,OAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,swBAAswB,KAAK,eAAc,CAAI,EACnnC,EAEc",
9
+ "debugId": "E1B3A9E10D7D948664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as p,Mask as f,Rect as C,G as d}from"react-native-svg";var s=({children:e,size:o=24,mode:l="masked",maskId:n,...a})=>{let i=l!=="raw"&&!!n;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"},i?r.createElement(r.Fragment,null,r.createElement(f,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(C,{width:"24",height:"24",fill:"#000"}),r.createElement(d,{color:"#fff"},e)),r.createElement(C,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Path as m}from"react-native-svg";var u=t.memo((e)=>{return t.createElement(s,{...e,maskId:"round-filled-radius-1-stroke-2-IconQuestionmark"},t.createElement(m,{d:"M12.0001 17.2004C12.7733 17.2004 13.4005 17.8276 13.4005 18.6008C13.4003 19.3739 12.7732 20.0002 12.0001 20.0002C11.2269 20.0002 10.5998 19.3739 10.5997 18.6008C10.5997 17.8276 11.2269 17.2004 12.0001 17.2004Z",fill:"currentColor"}),t.createElement(m,{d:"M7.0235 7.8996C7.59178 4.98855 10.1895 3.80736 12.4327 4.02655C14.691 4.24728 16.9999 5.92049 17.0001 8.94061C17.0001 10.0358 16.678 10.8834 16.1417 11.5568C15.6485 12.176 15.0094 12.5911 14.5694 12.885C14.072 13.2171 13.7733 13.4283 13.5635 13.6916C13.3969 13.9008 13.2501 14.1929 13.2501 14.7502C13.2501 15.4405 12.6904 16.0002 12.0001 16.0002C11.3097 16.0002 10.7501 15.4405 10.7501 14.7502C10.7501 13.655 11.0721 12.8073 11.6085 12.134C12.1017 11.5149 12.7408 11.0996 13.1807 10.8058C13.6781 10.4737 13.9768 10.2626 14.1866 9.99921C14.3532 9.78994 14.5001 9.49784 14.5001 8.94061C14.4999 7.49312 13.4736 6.64036 12.1895 6.51483C10.8902 6.38787 9.73785 7.04072 9.47662 8.37909C9.34423 9.05636 8.68817 9.49846 8.0108 9.3664C7.33322 9.23419 6.8913 8.57718 7.0235 7.8996Z",fill:"currentColor"}))}),v=u;export{v as default,u as IconQuestionmark};
2
+
3
+ //# debugId=40887CE9C16207FD64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconQuestionmark/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 IconQuestionmark: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-1-stroke-2-IconQuestionmark\"><Path d=\"M12.0001 17.2004C12.7733 17.2004 13.4005 17.8276 13.4005 18.6008C13.4003 19.3739 12.7732 20.0002 12.0001 20.0002C11.2269 20.0002 10.5998 19.3739 10.5997 18.6008C10.5997 17.8276 11.2269 17.2004 12.0001 17.2004Z\" fill=\"currentColor\"/><Path d=\"M7.0235 7.8996C7.59178 4.98855 10.1895 3.80736 12.4327 4.02655C14.691 4.24728 16.9999 5.92049 17.0001 8.94061C17.0001 10.0358 16.678 10.8834 16.1417 11.5568C15.6485 12.176 15.0094 12.5911 14.5694 12.885C14.072 13.2171 13.7733 13.4283 13.5635 13.6916C13.3969 13.9008 13.2501 14.1929 13.2501 14.7502C13.2501 15.4405 12.6904 16.0002 12.0001 16.0002C11.3097 16.0002 10.7501 15.4405 10.7501 14.7502C10.7501 13.655 11.0721 12.8073 11.6085 12.134C12.1017 11.5149 12.7408 11.0996 13.1807 10.8058C13.6781 10.4737 13.9768 10.2626 14.1866 9.99921C14.3532 9.78994 14.5001 9.49784 14.5001 8.94061C14.4999 7.49312 13.4736 6.64036 12.1895 6.51483C10.8902 6.38787 9.73785 7.04072 9.47662 8.37909C9.34423 9.05636 8.68817 9.49846 8.0108 9.3664C7.33322 9.23419 6.8913 8.57718 7.0235 7.8996Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconQuestionmark;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAA2mC,EAA3mC,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,swBAAswB,KAAK,eAAc,CAAI,EACnnC,EAEc",
9
+ "debugId": "40887CE9C16207FD64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1335,6 +1335,7 @@ Below is a complete list of available icons:
1335
1335
  - IconBell2Active
1336
1336
  - IconBell2Off
1337
1337
  - IconQuestionmarkCircle
1338
+ - IconQuestionmark
1338
1339
 
1339
1340
  ### Keyboard
1340
1341