@central-icons-react-native/round-outlined-radius-0-stroke-2 1.1.313 → 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.
- package/IconQuestionmark/index.d.ts +4 -0
- package/IconQuestionmark/index.js +3 -0
- package/IconQuestionmark/index.js.map +11 -0
- package/IconQuestionmark/index.mjs +3 -0
- package/IconQuestionmark/index.mjs.map +11 -0
- package/{IconCircleQuestionmark → IconQuestionmarkCircle}/index.d.ts +2 -2
- package/IconQuestionmarkCircle/index.js +3 -0
- package/IconQuestionmarkCircle/index.js.map +11 -0
- package/IconQuestionmarkCircle/index.mjs +3 -0
- package/IconQuestionmarkCircle/index.mjs.map +11 -0
- package/IconQuestionmarkCircle2/index.d.ts +4 -0
- package/{IconCircleQuestionmark → IconQuestionmarkCircle2}/index.js +2 -2
- package/{IconCircleQuestionmark → IconQuestionmarkCircle2}/index.js.map +4 -4
- package/{IconCircleQuestionmark → IconQuestionmarkCircle2}/index.mjs +2 -2
- package/{IconCircleQuestionmark → IconQuestionmarkCircle2}/index.mjs.map +4 -4
- package/README.md +3 -1
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +3 -1
- package/index.js +9 -3
- package/index.mjs +3 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +4 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var w=Object.create;var{getPrototypeOf:P,defineProperty:i,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,k=Object.prototype.hasOwnProperty;function h(r){return this[r]}var v,S,g=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var a=o?v??=new WeakMap:S??=new WeakMap,p=a.get(r);if(p)return p}e=r!=null?w(P(r)):{};let l=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let d of f(r))if(!k.call(l,d))i(l,d,{get:h.bind(r,d),enumerable:!0});if(t)a.set(r,l);return l},x=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of f(r))if(!k.call(o,t))i(o,t,{get:h.bind(r,t),enumerable:!(e=y(r,t))||e.enumerable})}return c.set(r,o),o},c;var b=(r)=>r;function M(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var $={};I($,{CentralIconBase:()=>C});module.exports=x($);var s=g(require("react")),n=require("react-native-svg"),C=({children:r,size:o=24,mode:e="masked",maskId:t,...a})=>{let p=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...a,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?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,IconQuestionmark:()=>B});module.exports=x(F);var m=g(require("react"));var u=require("react-native-svg"),B=m.default.memo((r)=>{return m.default.createElement(C,{...r,maskId:"round-outlined-radius-0-stroke-2-IconQuestionmark"},m.default.createElement(u.Path,{d:"M12 14.9993C12 11.4995 16 12.3481 16 8.84808C16 4.11714 9.00008 3.49951 8.12996 7.99952",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),m.default.createElement(u.Circle,{cx:"12",cy:"18.7996",r:"1.2",fill:"currentColor"}))}),G=B;
|
|
2
|
+
|
|
3
|
+
//# debugId=D894434D3488DDBA64756E2164756E21
|
|
@@ -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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconQuestionmark: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-0-stroke-2-IconQuestionmark\"><Path d=\"M12 14.9993C12 11.4995 16 12.3481 16 8.84808C16 4.11714 9.00008 3.49951 8.12996 7.99952\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"18.7996\" r=\"1.2\" 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,sBAE6B,IAA7B,8BAEa,EAAqE,UAAM,KAAK,CAAC,IAAU,CACtG,OAAO,wBAAyU,EAAzU,IAAqB,EAAO,OAAO,qDAAoD,wBAAC,OAAD,CAAM,EAAE,0FAA0F,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,EACjV,EAEc",
|
|
9
|
+
"debugId": "D894434D3488DDBA64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import r from"react";import{Svg as l,Mask as u,Rect as s,G as d}from"react-native-svg";var i=({children:e,size:o=24,mode:m="masked",maskId:n,...a})=>{let p=m!=="raw"&&!!n;return r.createElement(l,{...a,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?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(d,{color:"#fff"},e)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Circle as C,Path as c}from"react-native-svg";var f=t.memo((e)=>{return t.createElement(i,{...e,maskId:"round-outlined-radius-0-stroke-2-IconQuestionmark"},t.createElement(c,{d:"M12 14.9993C12 11.4995 16 12.3481 16 8.84808C16 4.11714 9.00008 3.49951 8.12996 7.99952",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(C,{cx:"12",cy:"18.7996",r:"1.2",fill:"currentColor"}))}),v=f;export{v as default,f as IconQuestionmark};
|
|
2
|
+
|
|
3
|
+
//# debugId=D87F310249E92F4664756E2164756E21
|
|
@@ -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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconQuestionmark: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-0-stroke-2-IconQuestionmark\"><Path d=\"M12 14.9993C12 11.4995 16 12.3481 16 8.84808C16 4.11714 9.00008 3.49951 8.12996 7.99952\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"18.7996\" r=\"1.2\" 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,iBAAS,UAAQ,yBAEV,IAAM,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAyU,EAAzU,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,0FAA0F,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,EACjV,EAEc",
|
|
9
|
+
"debugId": "D87F310249E92F4664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
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:k,getOwnPropertyDescriptor:P}=Object,f=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 k(r))if(!f.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 k(r))if(!f.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-0-stroke-2-IconQuestionmarkCircle"},i.default.createElement(m.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),i.default.createElement(m.Path,{d:"M12 13C12 11 14 11.244 14.0001 9.39365C14.0002 6.94403 10.4302 6.94377 10 8.97273",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(m.Circle,{cx:"11.9998",cy:"16.2996",r:"1.2",fill:"currentColor"}))}),G=B;
|
|
2
|
+
|
|
3
|
+
//# debugId=0B675E96C546BA2564756E2164756E21
|
|
@@ -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-0-stroke-2-IconQuestionmarkCircle\"><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 13C12 11 14 11.244 14.0001 9.39365C14.0002 6.94403 10.4302 6.94377 10 8.97273\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"11.9998\" cy=\"16.2996\" r=\"1.2\" 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,sBAE6B,IAA7B,8BAEa,EAA2E,UAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,wBAAmZ,EAAnZ,IAAqB,EAAO,OAAO,2DAA0D,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,oFAAoF,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,EAC3Z,EAEc",
|
|
9
|
+
"debugId": "0B675E96C546BA2564756E2164756E21",
|
|
10
|
+
"names": []
|
|
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 k=e.memo((t)=>{return e.createElement(i,{...t,maskId:"round-outlined-radius-0-stroke-2-IconQuestionmarkCircle"},e.createElement(l,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),e.createElement(d,{d:"M12 13C12 11 14 11.244 14.0001 9.39365C14.0002 6.94403 10.4302 6.94377 10 8.97273",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(l,{cx:"11.9998",cy:"16.2996",r:"1.2",fill:"currentColor"}))}),v=k;export{v as default,k as IconQuestionmarkCircle};
|
|
2
|
+
|
|
3
|
+
//# debugId=0D39682A791312FC64756E2164756E21
|
|
@@ -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-0-stroke-2-IconQuestionmarkCircle\"><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 13C12 11 14 11.244 14.0001 9.39365C14.0002 6.94403 10.4302 6.94377 10 8.97273\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"11.9998\" cy=\"16.2996\" r=\"1.2\" 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,gBAAmZ,EAAnZ,IAAqB,EAAO,OAAO,2DAA0D,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,oFAAoF,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,EAC3Z,EAEc",
|
|
9
|
+
"debugId": "0D39682A791312FC64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var w=Object.create;var{getPrototypeOf:L,defineProperty:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:P}=Object,h=Object.prototype.hasOwnProperty;function f(o){return this[o]}var v,y,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var a=r?v??=new WeakMap:y??=new WeakMap,d=a.get(o);if(d)return d}e=o!=null?w(L(o)):{};let m=r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e;for(let k of c(o))if(!h.call(m,k))p(m,k,{get:f.bind(o,k),enumerable:!0});if(t)a.set(o,m);return m},x=(o)=>{var r=(C??=new WeakMap).get(o),e;if(r)return r;if(r=p({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of c(o))if(!h.call(r,t))p(r,t,{get:f.bind(o,t),enumerable:!(e=P(o,t))||e.enumerable})}return C.set(o,r),r},C;var M=(o)=>o;function S(o,r){this[o]=M.bind(null,r)}var I=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var V={};I(V,{CentralIconBase:()=>l});module.exports=x(V);var s=g(require("react")),n=require("react-native-svg"),l=({children:o,size:r=24,mode:e="masked",maskId:t,...a})=>{let d=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"},d?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 b={};I(b,{default:()=>j,
|
|
1
|
+
var w=Object.create;var{getPrototypeOf:L,defineProperty:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:P}=Object,h=Object.prototype.hasOwnProperty;function f(o){return this[o]}var v,y,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var a=r?v??=new WeakMap:y??=new WeakMap,d=a.get(o);if(d)return d}e=o!=null?w(L(o)):{};let m=r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e;for(let k of c(o))if(!h.call(m,k))p(m,k,{get:f.bind(o,k),enumerable:!0});if(t)a.set(o,m);return m},x=(o)=>{var r=(C??=new WeakMap).get(o),e;if(r)return r;if(r=p({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of c(o))if(!h.call(r,t))p(r,t,{get:f.bind(o,t),enumerable:!(e=P(o,t))||e.enumerable})}return C.set(o,r),r},C;var M=(o)=>o;function S(o,r){this[o]=M.bind(null,r)}var I=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var V={};I(V,{CentralIconBase:()=>l});module.exports=x(V);var s=g(require("react")),n=require("react-native-svg"),l=({children:o,size:r=24,mode:e="masked",maskId:t,...a})=>{let d=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"},d?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 b={};I(b,{default:()=>j,IconQuestionmarkCircle2:()=>B});module.exports=x(b);var i=g(require("react"));var u=require("react-native-svg"),B=i.default.memo((o)=>{return i.default.createElement(l,{...o,maskId:"round-outlined-radius-0-stroke-2-IconQuestionmarkCircle2"},i.default.createElement(u.Path,{d:"M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(u.Path,{d:"M10 9V8H14V10.5L12 12V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(u.Path,{d:"M12 16V16.01",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))}),j=B;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=A76A377A4A20397964756E2164756E21
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["src/CentralIconBase/index.tsx", "src/
|
|
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
|
|
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-0-stroke-2-IconQuestionmarkCircle2\"><Path d=\"M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10 9V8H14V10.5L12 12V13\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 16V16.01\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,
|
|
9
|
-
"debugId": "
|
|
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,wBAAkhB,EAAlhB,IAAqB,EAAO,OAAO,4DAA2D,wBAAC,OAAD,CAAM,EAAE,oHAAoH,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2BAA2B,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,EAC1hB,EAEc",
|
|
9
|
+
"debugId": "A76A377A4A20397964756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import o from"react";import{Svg as u,Mask as k,Rect as i,G as l}from"react-native-svg";var p=({children:t,size:r=24,mode:a="masked",maskId:n,...d})=>{let m=a!=="raw"&&!!n;return o.createElement(u,{...d,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(k,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(l,{color:"#fff"},t)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Path as s}from"react-native-svg";var C=e.memo((t)=>{return e.createElement(p,{...t,maskId:"round-outlined-radius-0-stroke-2-
|
|
1
|
+
import o from"react";import{Svg as u,Mask as k,Rect as i,G as l}from"react-native-svg";var p=({children:t,size:r=24,mode:a="masked",maskId:n,...d})=>{let m=a!=="raw"&&!!n;return o.createElement(u,{...d,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(k,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(l,{color:"#fff"},t)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Path as s}from"react-native-svg";var C=e.memo((t)=>{return e.createElement(p,{...t,maskId:"round-outlined-radius-0-stroke-2-IconQuestionmarkCircle2"},e.createElement(s,{d:"M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(s,{d:"M10 9V8H14V10.5L12 12V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(s,{d:"M12 16V16.01",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))}),P=C;export{P as default,C as IconQuestionmarkCircle2};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=99A9F9E0E52C223064756E2164756E21
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["src/CentralIconBase/index.tsx", "src/
|
|
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
|
|
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-0-stroke-2-IconQuestionmarkCircle2\"><Path d=\"M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10 9V8H14V10.5L12 12V13\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 16V16.01\" stroke=\"currentColor\" strokeWidth=\"2\" 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,
|
|
9
|
-
"debugId": "
|
|
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,gBAAkhB,EAAlhB,IAAqB,EAAO,OAAO,4DAA2D,gBAAC,EAAD,CAAM,EAAE,oHAAoH,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,2BAA2B,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,EAC1hB,EAEc",
|
|
9
|
+
"debugId": "99A9F9E0E52C223064756E2164756E21",
|
|
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
|
-
-
|
|
1201
|
+
- IconQuestionmarkCircle2
|
|
1202
1202
|
- IconCircleBanSign
|
|
1203
1203
|
- IconExclamationTriangle
|
|
1204
1204
|
- IconChainLink1
|
|
@@ -1334,6 +1334,8 @@ Below is a complete list of available icons:
|
|
|
1334
1334
|
- IconBellActive
|
|
1335
1335
|
- IconBell2Active
|
|
1336
1336
|
- IconBell2Off
|
|
1337
|
+
- IconQuestionmarkCircle
|
|
1338
|
+
- IconQuestionmark
|
|
1337
1339
|
|
|
1338
1340
|
### Keyboard
|
|
1339
1341
|
|