@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.305 → 1.1.307
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/IconAiBotHead/index.d.ts +4 -0
- package/IconAiBotHead/index.js +3 -0
- package/IconAiBotHead/index.js.map +11 -0
- package/IconAiBotHead/index.mjs +3 -0
- package/IconAiBotHead/index.mjs.map +11 -0
- package/IconAiBotHeadLooking/index.d.ts +4 -0
- package/IconAiBotHeadLooking/index.js +3 -0
- package/IconAiBotHeadLooking/index.js.map +11 -0
- package/IconAiBotHeadLooking/index.mjs +3 -0
- package/IconAiBotHeadLooking/index.mjs.map +11 -0
- package/README.md +2 -0
- 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 +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var w=Object.create;var{getPrototypeOf:P,defineProperty:a,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,f=Object.prototype.hasOwnProperty;function k(r){return this[r]}var v,S,g=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var p=o?v??=new WeakMap:S??=new WeakMap,l=p.get(r);if(l)return l}t=r!=null?w(P(r)):{};let d=o||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t;for(let h of c(r))if(!f.call(d,h))a(d,h,{get:k.bind(r,h),enumerable:!0});if(e)p.set(r,d);return d},x=(r)=>{var o=(C??=new WeakMap).get(r),t;if(o)return o;if(o=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!f.call(o,e))a(o,e,{get:k.bind(r,e),enumerable:!(t=y(r,e))||t.enumerable})}return C.set(r,o),o},C;var M=(r)=>r;function b(r,o){this[r]=M.bind(null,o)}var B=(r,o)=>{for(var t in o)a(r,t,{get:o[t],enumerable:!0,configurable:!0,set:b.bind(o,t)})};var W={};B(W,{CentralIconBase:()=>u});module.exports=x(W);var s=g(require("react")),n=require("react-native-svg"),u=({children:r,size:o=24,mode:t="masked",maskId:e,...p})=>{let l=t!=="raw"&&!!e;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"},l?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:e,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(#${e})`})):r)};var $={};B($,{default:()=>A,IconAiBotHead:()=>I});module.exports=x($);var i=g(require("react"));var m=require("react-native-svg"),I=i.default.memo((r)=>{return i.default.createElement(u,{...r,maskId:"square-outlined-radius-0-stroke-2-IconAiBotHead"},i.default.createElement(m.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),i.default.createElement(m.Path,{d:"M9.5 9V13",stroke:"currentColor",strokeWidth:"2"}),i.default.createElement(m.Path,{d:"M14.5 9V13",stroke:"currentColor",strokeWidth:"2"}))}),A=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=ED5EF241BD323F6464756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAiBotHead/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 IconAiBotHead: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconAiBotHead\"><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M9.5 9V13\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M14.5 9V13\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n});\n\nexport default IconAiBotHead;\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,yEChDY,IAAlB,sBAE6B,IAA7B,8BAEa,EAAkE,UAAM,KAAK,CAAC,IAAU,CACnG,OAAO,wBAAmR,EAAnR,IAAqB,EAAO,OAAO,mDAAkD,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,CAAI,EAC3R,EAEc",
|
|
9
|
+
"debugId": "ED5EF241BD323F6464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import r from"react";import{Svg as d,Mask as h,Rect as s,G as u}from"react-native-svg";var i=({children:e,size:o=24,mode:m="masked",maskId:n,...p})=>{let l=m!=="raw"&&!!n;return r.createElement(d,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},l?r.createElement(r.Fragment,null,r.createElement(h,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(u,{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 a}from"react-native-svg";var c=t.memo((e)=>{return t.createElement(i,{...e,maskId:"square-outlined-radius-0-stroke-2-IconAiBotHead"},t.createElement(C,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),t.createElement(a,{d:"M9.5 9V13",stroke:"currentColor",strokeWidth:"2"}),t.createElement(a,{d:"M14.5 9V13",stroke:"currentColor",strokeWidth:"2"}))}),v=c;export{v as default,c as IconAiBotHead};
|
|
2
|
+
|
|
3
|
+
//# debugId=7A7F98A4570CF5EB64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAiBotHead/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 IconAiBotHead: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconAiBotHead\"><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M9.5 9V13\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M14.5 9V13\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n});\n\nexport default IconAiBotHead;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAmR,EAAnR,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,CAAI,EAC3R,EAEc",
|
|
9
|
+
"debugId": "7A7F98A4570CF5EB64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var w=Object.create;var{getPrototypeOf:P,defineProperty:a,getOwnPropertyNames:C,getOwnPropertyDescriptor:y}=Object,c=Object.prototype.hasOwnProperty;function f(o){return this[o]}var v,S,g=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var p=r?v??=new WeakMap:S??=new WeakMap,l=p.get(o);if(l)return l}t=o!=null?w(P(o)):{};let d=r||!o||!o.__esModule?a(t,"default",{value:o,enumerable:!0}):t;for(let k of C(o))if(!c.call(d,k))a(d,k,{get:f.bind(o,k),enumerable:!0});if(e)p.set(o,d);return d},x=(o)=>{var r=(u??=new WeakMap).get(o),t;if(r)return r;if(r=a({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of C(o))if(!c.call(r,e))a(r,e,{get:f.bind(o,e),enumerable:!(t=y(o,e))||t.enumerable})}return u.set(o,r),r},u;var M=(o)=>o;function b(o,r){this[o]=M.bind(null,r)}var B=(o,r)=>{for(var t in r)a(o,t,{get:r[t],enumerable:!0,configurable:!0,set:b.bind(r,t)})};var W={};B(W,{CentralIconBase:()=>h});module.exports=x(W);var s=g(require("react")),n=require("react-native-svg"),h=({children:o,size:r=24,mode:t="masked",maskId:e,...p})=>{let l=t!=="raw"&&!!e;return s.default.createElement(n.Svg,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},l?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:e,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(#${e})`})):o)};var $={};B($,{default:()=>A,IconAiBotHeadLooking:()=>I});module.exports=x($);var i=g(require("react"));var m=require("react-native-svg"),I=i.default.memo((o)=>{return i.default.createElement(h,{...o,maskId:"square-outlined-radius-0-stroke-2-IconAiBotHeadLooking"},i.default.createElement(m.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),i.default.createElement(m.Path,{d:"M11 9V13",stroke:"currentColor",strokeWidth:"2"}),i.default.createElement(m.Path,{d:"M16 9V13",stroke:"currentColor",strokeWidth:"2"}))}),A=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=9F3AC3E0A5AA939464756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAiBotHeadLooking/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 IconAiBotHeadLooking: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconAiBotHeadLooking\"><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M11 9V13\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M16 9V13\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n});\n\nexport default IconAiBotHeadLooking;\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,gFChDY,IAAlB,sBAE6B,IAA7B,8BAEa,EAAyE,UAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,wBAAuR,EAAvR,IAAqB,EAAO,OAAO,0DAAyD,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,EAC/R,EAEc",
|
|
9
|
+
"debugId": "9F3AC3E0A5AA939464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import o from"react";import{Svg as d,Mask as k,Rect as s,G as h}from"react-native-svg";var i=({children:e,size:r=24,mode:m="masked",maskId:n,...p})=>{let l=m!=="raw"&&!!n;return o.createElement(d,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},l?o.createElement(o.Fragment,null,o.createElement(k,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(s,{width:"24",height:"24",fill:"#000"}),o.createElement(h,{color:"#fff"},e)),o.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Circle as u,Path as a}from"react-native-svg";var C=t.memo((e)=>{return t.createElement(i,{...e,maskId:"square-outlined-radius-0-stroke-2-IconAiBotHeadLooking"},t.createElement(u,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),t.createElement(a,{d:"M11 9V13",stroke:"currentColor",strokeWidth:"2"}),t.createElement(a,{d:"M16 9V13",stroke:"currentColor",strokeWidth:"2"}))}),v=C;export{v as default,C as IconAiBotHeadLooking};
|
|
2
|
+
|
|
3
|
+
//# debugId=CD5D8D1F67E32D5C64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAiBotHeadLooking/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 IconAiBotHeadLooking: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconAiBotHeadLooking\"><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M11 9V13\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M16 9V13\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n});\n\nexport default IconAiBotHeadLooking;\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,EAAyE,EAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,gBAAuR,EAAvR,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,EAC/R,EAEc",
|
|
9
|
+
"debugId": "CD5D8D1F67E32D5C64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|