@central-icons-react-native/round-outlined-radius-2-stroke-1 1.1.306 → 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:p,getOwnPropertyNames:C,getOwnPropertyDescriptor:y}=Object,f=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 m=o?v??=new WeakMap:S??=new WeakMap,d=m.get(r);if(d)return d}e=r!=null?w(P(r)):{};let l=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let u of C(r))if(!f.call(l,u))p(l,u,{get:h.bind(r,u),enumerable:!0});if(t)m.set(r,l);return l},x=(r)=>{var o=(k??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of C(r))if(!f.call(o,t))p(o,t,{get:h.bind(r,t),enumerable:!(e=y(r,t))||e.enumerable})}return k.set(r,o),o},k;var M=(r)=>r;function b(r,o){this[r]=M.bind(null,o)}var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var $={};B($,{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,...m})=>{let d=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...m,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,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"},r)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var A={};B(A,{default:()=>F,IconAiBotHead:()=>I});module.exports=x(A);var i=g(require("react"));var a=require("react-native-svg"),I=i.default.memo((r)=>{return i.default.createElement(c,{...r,maskId:"round-outlined-radius-2-stroke-1-IconAiBotHead"},i.default.createElement(a.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),i.default.createElement(a.Path,{d:"M9.75 9.5V12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),i.default.createElement(a.Path,{d:"M14.25 9.5V12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}))}),F=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=791359C5A900775364756E2164756E21
|
|
@@ -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=\"round-outlined-radius-2-stroke-1-IconAiBotHead\"><Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><Path d=\"M9.75 9.5V12.5\" stroke=\"currentColor\" strokeWidth=\"1.25\" strokeLinecap=\"round\"/><Path d=\"M14.25 9.5V12.5\" stroke=\"currentColor\" strokeWidth=\"1.25\" strokeLinecap=\"round\"/></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,wBAAgU,EAAhU,IAAqB,EAAO,OAAO,kDAAiD,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,OAAO,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,OAAO,cAAc,QAAO,CAAI,EACxU,EAEc",
|
|
9
|
+
"debugId": "791359C5A900775364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import r from"react";import{Svg as l,Mask as u,Rect as s,G as c}from"react-native-svg";var i=({children:t,size:o=24,mode:a="masked",maskId:n,...m})=>{let d=a!=="raw"&&!!n;return r.createElement(l,{...m,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},d?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 k,Path as p}from"react-native-svg";var C=e.memo((t)=>{return e.createElement(i,{...t,maskId:"round-outlined-radius-2-stroke-1-IconAiBotHead"},e.createElement(k,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),e.createElement(p,{d:"M9.75 9.5V12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),e.createElement(p,{d:"M14.25 9.5V12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}))}),v=C;export{v as default,C as IconAiBotHead};
|
|
2
|
+
|
|
3
|
+
//# debugId=0DA4B4DBB26BC00264756E2164756E21
|
|
@@ -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=\"round-outlined-radius-2-stroke-1-IconAiBotHead\"><Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><Path d=\"M9.75 9.5V12.5\" stroke=\"currentColor\" strokeWidth=\"1.25\" strokeLinecap=\"round\"/><Path d=\"M14.25 9.5V12.5\" stroke=\"currentColor\" strokeWidth=\"1.25\" strokeLinecap=\"round\"/></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,gBAAgU,EAAhU,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,OAAO,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,OAAO,cAAc,QAAO,CAAI,EACxU,EAEc",
|
|
9
|
+
"debugId": "0DA4B4DBB26BC00264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var w=Object.create;var{getPrototypeOf:P,defineProperty:p,getOwnPropertyNames:C,getOwnPropertyDescriptor:y}=Object,f=Object.prototype.hasOwnProperty;function h(o){return this[o]}var v,S,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var m=r?v??=new WeakMap:S??=new WeakMap,d=m.get(o);if(d)return d}e=o!=null?w(P(o)):{};let l=r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e;for(let k of C(o))if(!f.call(l,k))p(l,k,{get:h.bind(o,k),enumerable:!0});if(t)m.set(o,l);return l},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(!f.call(r,t))p(r,t,{get:h.bind(o,t),enumerable:!(e=y(o,t))||e.enumerable})}return c.set(o,r),r},c;var L=(o)=>o;function M(o,r){this[o]=L.bind(null,r)}var B=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0,configurable:!0,set:M.bind(r,e)})};var b={};B(b,{CentralIconBase:()=>u});module.exports=x(b);var s=g(require("react")),n=require("react-native-svg"),u=({children:o,size:r=24,mode:e="masked",maskId:t,...m})=>{let d=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...m,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($,{default:()=>A,IconAiBotHeadLooking:()=>I});module.exports=x($);var i=g(require("react"));var a=require("react-native-svg"),I=i.default.memo((o)=>{return i.default.createElement(u,{...o,maskId:"round-outlined-radius-2-stroke-1-IconAiBotHeadLooking"},i.default.createElement(a.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),i.default.createElement(a.Path,{d:"M11.25 9.5V12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),i.default.createElement(a.Path,{d:"M15.75 9.5V12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}))}),A=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=642501D397C4FDFD64756E2164756E21
|
|
@@ -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=\"round-outlined-radius-2-stroke-1-IconAiBotHeadLooking\"><Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><Path d=\"M11.25 9.5V12.5\" stroke=\"currentColor\" strokeWidth=\"1.25\" strokeLinecap=\"round\"/><Path d=\"M15.75 9.5V12.5\" stroke=\"currentColor\" strokeWidth=\"1.25\" strokeLinecap=\"round\"/></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,wBAAwU,EAAxU,IAAqB,EAAO,OAAO,yDAAwD,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,OAAO,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,OAAO,cAAc,QAAO,CAAI,EAChV,EAEc",
|
|
9
|
+
"debugId": "642501D397C4FDFD64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import o from"react";import{Svg as l,Mask as k,Rect as s,G as u}from"react-native-svg";var i=({children:t,size:r=24,mode:a="masked",maskId:n,...m})=>{let d=a!=="raw"&&!!n;return o.createElement(l,{...m,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},d?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(u,{color:"#fff"},t)),o.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Circle as c,Path as p}from"react-native-svg";var C=e.memo((t)=>{return e.createElement(i,{...t,maskId:"round-outlined-radius-2-stroke-1-IconAiBotHeadLooking"},e.createElement(c,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),e.createElement(p,{d:"M11.25 9.5V12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),e.createElement(p,{d:"M15.75 9.5V12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}))}),v=C;export{v as default,C as IconAiBotHeadLooking};
|
|
2
|
+
|
|
3
|
+
//# debugId=BBFEE57584DAAE8964756E2164756E21
|
|
@@ -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=\"round-outlined-radius-2-stroke-1-IconAiBotHeadLooking\"><Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><Path d=\"M11.25 9.5V12.5\" stroke=\"currentColor\" strokeWidth=\"1.25\" strokeLinecap=\"round\"/><Path d=\"M15.75 9.5V12.5\" stroke=\"currentColor\" strokeWidth=\"1.25\" strokeLinecap=\"round\"/></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,gBAAwU,EAAxU,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,OAAO,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,OAAO,cAAc,QAAO,CAAI,EAChV,EAEc",
|
|
9
|
+
"debugId": "BBFEE57584DAAE8964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|