@central-icons-react-native/round-filled-radius-3-stroke-2 1.1.306 → 1.1.308

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 IconAiBotHead: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconAiBotHead;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:w,defineProperty:s,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 a=r?y??=new WeakMap:M??=new WeakMap,i=a.get(o);if(i)return i}e=o!=null?v(w(o)):{};let p=r||!o||!o.__esModule?s(e,"default",{value:o,enumerable:!0}):e;for(let m of u(o))if(!c.call(p,m))s(p,m,{get:h.bind(o,m),enumerable:!0});if(t)a.set(o,p);return p},B=(o)=>{var r=(f??=new WeakMap).get(o),e;if(r)return r;if(r=s({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of u(o))if(!c.call(r,t))s(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 V(o,r){this[o]=S.bind(null,r)}var x=(o,r)=>{for(var e in r)s(o,e,{get:r[e],enumerable:!0,configurable:!0,set:V.bind(r,e)})};var b={};x(b,{CentralIconBase:()=>d});module.exports=B(b);var l=g(require("react")),n=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:t,...a})=>{let i=e!=="raw"&&!!t;return l.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"},i?l.default.createElement(l.default.Fragment,null,l.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},l.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),l.default.createElement(n.G,{color:"#fff"},o)),l.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):o)};var Z={};x(Z,{default:()=>$,IconAiBotHead:()=>k});module.exports=B(Z);var C=g(require("react"));var I=require("react-native-svg"),k=C.default.memo((o)=>{return C.default.createElement(d,{...o,maskId:"round-filled-radius-3-stroke-2-IconAiBotHead"},C.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 2ZM9.5 8.75C8.94772 8.75 8.5 9.19772 8.5 9.75V12.25C8.5 12.8023 8.94772 13.25 9.5 13.25C10.0523 13.25 10.5 12.8023 10.5 12.25V9.75C10.5 9.19772 10.0523 8.75 9.5 8.75ZM14.5 8.75C13.9477 8.75 13.5 9.19772 13.5 9.75V12.25C13.5 12.8023 13.9477 13.25 14.5 13.25C15.0523 13.25 15.5 12.8023 15.5 12.25V9.75C15.5 9.19772 15.0523 8.75 14.5 8.75Z",fill:"currentColor"}))}),$=k;
2
+
3
+ //# debugId=A589DA76FC91EB5864756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconAiBotHead: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-3-stroke-2-IconAiBotHead\"><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 2ZM9.5 8.75C8.94772 8.75 8.5 9.19772 8.5 9.75V12.25C8.5 12.8023 8.94772 13.25 9.5 13.25C10.0523 13.25 10.5 12.8023 10.5 12.25V9.75C10.5 9.19772 10.0523 8.75 9.5 8.75ZM14.5 8.75C13.9477 8.75 13.5 9.19772 13.5 9.75V12.25C13.5 12.8023 13.9477 13.25 14.5 13.25C15.0523 13.25 15.5 12.8023 15.5 12.25V9.75C15.5 9.19772 15.0523 8.75 14.5 8.75Z\" fill=\"currentColor\"/></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,sBAEqB,IAArB,8BAEa,EAAkE,UAAM,KAAK,CAAC,IAAU,CACnG,OAAO,wBAAwlB,EAAxlB,IAAqB,EAAO,OAAO,gDAA+C,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,icAAic,KAAK,eAAc,CAAI,EAChmB,EAEc",
9
+ "debugId": "A589DA76FC91EB5864756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as C,Mask as m,Rect as l,G as d}from"react-native-svg";var s=({children:e,size:r=24,mode:a="masked",maskId:t,...i})=>{let p=a!=="raw"&&!!t;return o.createElement(C,{...i,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?o.createElement(o.Fragment,null,o.createElement(m,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(l,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},e)),o.createElement(l,{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(s,{...e,maskId:"round-filled-radius-3-stroke-2-IconAiBotHead"},n.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 2ZM9.5 8.75C8.94772 8.75 8.5 9.19772 8.5 9.75V12.25C8.5 12.8023 8.94772 13.25 9.5 13.25C10.0523 13.25 10.5 12.8023 10.5 12.25V9.75C10.5 9.19772 10.0523 8.75 9.5 8.75ZM14.5 8.75C13.9477 8.75 13.5 9.19772 13.5 9.75V12.25C13.5 12.8023 13.9477 13.25 14.5 13.25C15.0523 13.25 15.5 12.8023 15.5 12.25V9.75C15.5 9.19772 15.0523 8.75 14.5 8.75Z",fill:"currentColor"}))}),P=u;export{P as default,u as IconAiBotHead};
2
+
3
+ //# debugId=DDE6CC0D8862255C64756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconAiBotHead: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-3-stroke-2-IconAiBotHead\"><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 2ZM9.5 8.75C8.94772 8.75 8.5 9.19772 8.5 9.75V12.25C8.5 12.8023 8.94772 13.25 9.5 13.25C10.0523 13.25 10.5 12.8023 10.5 12.25V9.75C10.5 9.19772 10.0523 8.75 9.5 8.75ZM14.5 8.75C13.9477 8.75 13.5 9.19772 13.5 9.75V12.25C13.5 12.8023 13.9477 13.25 14.5 13.25C15.0523 13.25 15.5 12.8023 15.5 12.25V9.75C15.5 9.19772 15.0523 8.75 14.5 8.75Z\" fill=\"currentColor\"/></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,eAAS,yBAEF,IAAM,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAwlB,EAAxlB,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,icAAic,KAAK,eAAc,CAAI,EAChmB,EAEc",
9
+ "debugId": "DDE6CC0D8862255C64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAiBotHeadLooking: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconAiBotHeadLooking;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:w,defineProperty:l,getOwnPropertyNames:u,getOwnPropertyDescriptor:P}=Object,c=Object.prototype.hasOwnProperty;function g(o){return this[o]}var y,M,h=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var s=r?y??=new WeakMap:M??=new WeakMap,a=s.get(o);if(a)return a}e=o!=null?v(w(o)):{};let p=r||!o||!o.__esModule?l(e,"default",{value:o,enumerable:!0}):e;for(let m of u(o))if(!c.call(p,m))l(p,m,{get:g.bind(o,m),enumerable:!0});if(t)s.set(o,p);return p},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:g.bind(o,t),enumerable:!(e=P(o,t))||e.enumerable})}return f.set(o,r),r},f;var S=(o)=>o;function V(o,r){this[o]=S.bind(null,r)}var B=(o,r)=>{for(var e in r)l(o,e,{get:r[e],enumerable:!0,configurable:!0,set:V.bind(r,e)})};var b={};B(b,{CentralIconBase:()=>d});module.exports=k(b);var i=h(require("react")),n=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:t,...s})=>{let a=e!=="raw"&&!!t;return i.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"},a?i.default.createElement(i.default.Fragment,null,i.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},i.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),i.default.createElement(n.G,{color:"#fff"},o)),i.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):o)};var Z={};B(Z,{default:()=>$,IconAiBotHeadLooking:()=>I});module.exports=k(Z);var C=h(require("react"));var x=require("react-native-svg"),I=C.default.memo((o)=>{return C.default.createElement(d,{...o,maskId:"round-filled-radius-3-stroke-2-IconAiBotHeadLooking"},C.default.createElement(x.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 2ZM11 8.75C10.4477 8.75 10 9.19772 10 9.75V12.25C10 12.8023 10.4477 13.25 11 13.25C11.5523 13.25 12 12.8023 12 12.25V9.75C12 9.19772 11.5523 8.75 11 8.75ZM16 8.75C15.4477 8.75 15 9.19772 15 9.75V12.25C15 12.8023 15.4477 13.25 16 13.25C16.5523 13.25 17 12.8023 17 12.25V9.75C17 9.19772 16.5523 8.75 16 8.75Z",fill:"currentColor"}))}),$=I;
2
+
3
+ //# debugId=44CDFC20E789B39264756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconAiBotHeadLooking: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-3-stroke-2-IconAiBotHeadLooking\"><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 2ZM11 8.75C10.4477 8.75 10 9.19772 10 9.75V12.25C10 12.8023 10.4477 13.25 11 13.25C11.5523 13.25 12 12.8023 12 12.25V9.75C12 9.19772 11.5523 8.75 11 8.75ZM16 8.75C15.4477 8.75 15 9.19772 15 9.75V12.25C15 12.8023 15.4477 13.25 16 13.25C16.5523 13.25 17 12.8023 17 12.25V9.75C17 9.19772 16.5523 8.75 16 8.75Z\" fill=\"currentColor\"/></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,sBAEqB,IAArB,8BAEa,EAAyE,UAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,wBAAikB,EAAjkB,IAAqB,EAAO,OAAO,uDAAsD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,maAAma,KAAK,eAAc,CAAI,EACzkB,EAEc",
9
+ "debugId": "44CDFC20E789B39264756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as C,Mask as m,Rect as i,G as d}from"react-native-svg";var l=({children:e,size:r=24,mode:s="masked",maskId:t,...a})=>{let p=s!=="raw"&&!!t;return o.createElement(C,{...a,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?o.createElement(o.Fragment,null,o.createElement(m,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},e)),o.createElement(i,{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-3-stroke-2-IconAiBotHeadLooking"},n.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 2ZM11 8.75C10.4477 8.75 10 9.19772 10 9.75V12.25C10 12.8023 10.4477 13.25 11 13.25C11.5523 13.25 12 12.8023 12 12.25V9.75C12 9.19772 11.5523 8.75 11 8.75ZM16 8.75C15.4477 8.75 15 9.19772 15 9.75V12.25C15 12.8023 15.4477 13.25 16 13.25C16.5523 13.25 17 12.8023 17 12.25V9.75C17 9.19772 16.5523 8.75 16 8.75Z",fill:"currentColor"}))}),P=u;export{P as default,u as IconAiBotHeadLooking};
2
+
3
+ //# debugId=222CB932F4C4C7B864756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconAiBotHeadLooking: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-3-stroke-2-IconAiBotHeadLooking\"><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 2ZM11 8.75C10.4477 8.75 10 9.19772 10 9.75V12.25C10 12.8023 10.4477 13.25 11 13.25C11.5523 13.25 12 12.8023 12 12.25V9.75C12 9.19772 11.5523 8.75 11 8.75ZM16 8.75C15.4477 8.75 15 9.19772 15 9.75V12.25C15 12.8023 15.4477 13.25 16 13.25C16.5523 13.25 17 12.8023 17 12.25V9.75C17 9.19772 16.5523 8.75 16 8.75Z\" fill=\"currentColor\"/></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,eAAS,yBAEF,IAAM,EAAyE,EAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,gBAAikB,EAAjkB,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,maAAma,KAAK,eAAc,CAAI,EACzkB,EAEc",
9
+ "debugId": "222CB932F4C4C7B864756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAiSlopSign: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconAiSlopSign;
@@ -0,0 +1,3 @@
1
+ var B=Object.create;var{getPrototypeOf:v,defineProperty:l,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,c=Object.prototype.hasOwnProperty;function g(C){return this[C]}var P,y,h=(C,o,r)=>{var e=C!=null&&typeof C==="object";if(e){var i=o?P??=new WeakMap:y??=new WeakMap,p=i.get(C);if(p)return p}r=C!=null?B(v(C)):{};let s=o||!C||!C.__esModule?l(r,"default",{value:C,enumerable:!0}):r;for(let a of u(C))if(!c.call(s,a))l(s,a,{get:g.bind(C,a),enumerable:!0});if(e)i.set(C,s);return s},x=(C)=>{var o=(f??=new WeakMap).get(C),r;if(o)return o;if(o=l({},"__esModule",{value:!0}),C&&typeof C==="object"||typeof C==="function"){for(var e of u(C))if(!c.call(o,e))l(o,e,{get:g.bind(C,e),enumerable:!(r=w(C,e))||r.enumerable})}return f.set(C,o),o},f;var L=(C)=>C;function M(C,o){this[C]=L.bind(null,o)}var I=(C,o)=>{for(var r in o)l(C,r,{get:o[r],enumerable:!0,configurable:!0,set:M.bind(o,r)})};var b={};I(b,{CentralIconBase:()=>d});module.exports=x(b);var t=h(require("react")),n=require("react-native-svg"),d=({children:C,size:o=24,mode:r="masked",maskId:e,...i})=>{let p=r!=="raw"&&!!e;return t.default.createElement(n.Svg,{...i,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?t.default.createElement(t.default.Fragment,null,t.default.createElement(n.Mask,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},t.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),t.default.createElement(n.G,{color:"#fff"},C)),t.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):C)};var Z={};I(Z,{default:()=>$,IconAiSlopSign:()=>k});module.exports=x(Z);var m=h(require("react"));var S=require("react-native-svg"),k=m.default.memo((C)=>{return m.default.createElement(d,{...C,maskId:"round-filled-radius-3-stroke-2-IconAiSlopSign"},m.default.createElement(S.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M10.7622 2.37078C11.5671 2.10627 12.4355 2.10426 13.2417 2.36492C13.7615 2.5331 14.1989 2.82983 14.6303 3.19597C15.0528 3.55462 15.5341 4.03625 16.1186 4.62078L20.8588 9.36101C22.3157 10.8184 22.3018 13.1858 20.8276 14.6257C20.577 14.8704 20.45 14.9963 20.3647 15.1022C20.302 15.1801 20.2883 15.216 20.2768 15.2565C20.2761 15.2596 20.2723 15.2757 20.27 15.3053C20.2674 15.3399 20.2677 15.3828 20.271 15.4284C20.2743 15.4738 20.28 15.5159 20.2876 15.5495C20.294 15.5779 20.3001 15.5933 20.3012 15.5964C20.3229 15.6448 20.3428 15.6754 20.4008 15.7302C20.4869 15.8113 20.6113 15.9047 20.8735 16.0954C21.2418 16.3633 21.6631 16.6882 21.9741 17.0505C22.2724 17.3982 22.6491 17.9931 22.4731 18.7321C22.3404 19.2886 21.9269 19.6226 21.6059 19.8024C21.2678 19.9919 20.8748 20.1037 20.4956 20.1637C19.7404 20.2833 18.8183 20.2294 18.018 19.9216C17.862 19.8616 17.742 19.8508 17.646 19.8649C17.1469 19.9384 16.7994 20.1377 16.2905 20.4372C15.7876 20.7331 15.1286 21.1248 14.1879 21.2428C13.1296 21.3755 12.487 21.1342 11.9497 20.9001C11.5017 20.7049 11.2151 20.5632 10.6254 20.5632C10.2243 20.5633 9.92988 20.7816 9.3647 21.2438C9.13092 21.435 8.77659 21.7284 8.3647 21.8962C7.87852 22.0941 7.31656 22.1205 6.74068 21.8327C6.24339 21.584 5.90198 21.2108 5.7065 20.7653C5.5245 20.3501 5.49513 19.9293 5.49752 19.6071C5.49974 19.3127 5.53667 18.9467 5.54732 18.777C5.56266 18.5317 5.54471 18.4821 5.5522 18.5046C5.52956 18.4366 5.50753 18.3937 5.49263 18.3688C5.47938 18.3468 5.47031 18.3368 5.46822 18.3346L5.46724 18.3337C5.46528 18.3327 5.45425 18.3283 5.43209 18.3229C5.29413 18.2895 5.0656 18.3031 4.5942 18.3757C4.21838 18.4335 3.61114 18.545 3.05025 18.4723C2.38428 18.3859 1.73452 18.0406 1.3442 17.2604C1.1781 16.9283 1.13023 16.5603 1.22994 16.196C1.31845 15.8729 1.50092 15.6359 1.6274 15.4919C1.75006 15.3522 1.90627 15.2085 1.98873 15.1286C2.0919 15.0286 2.15553 14.9602 2.20064 14.9001C2.38901 14.6486 2.43133 14.4929 2.44088 14.4147C2.44928 14.3451 2.4414 14.2608 2.3774 14.1266C1.79903 12.9164 1.44554 11.0945 2.78951 9.79656L7.89595 4.64129C8.47788 4.0537 8.95652 3.56941 9.3774 3.20867C9.80722 2.84031 10.2429 2.54144 10.7622 2.37078ZM12.0004 13.9997C11.4482 13.9997 11.0005 14.4474 11.0004 14.9997C11.0004 15.552 11.4482 15.9997 12.0004 15.9997C12.5526 15.9995 13.0004 15.5518 13.0004 14.9997C13.0004 14.4475 12.5525 13.9999 12.0004 13.9997ZM11.9721 7.99968C11.3925 7.99987 10.9346 8.49174 10.9751 9.07L11.1977 12.2516C11.2272 12.673 11.578 12.9997 12.0004 12.9997C12.4227 12.9995 12.7727 12.6729 12.8022 12.2516L13.0249 9.07C13.0653 8.49168 12.6075 7.99977 12.0278 7.99968H11.9721Z",fill:"currentColor"}))}),$=k;
2
+
3
+ //# debugId=621BE75A978D777464756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAiSlopSign/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 IconAiSlopSign: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-3-stroke-2-IconAiSlopSign\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.7622 2.37078C11.5671 2.10627 12.4355 2.10426 13.2417 2.36492C13.7615 2.5331 14.1989 2.82983 14.6303 3.19597C15.0528 3.55462 15.5341 4.03625 16.1186 4.62078L20.8588 9.36101C22.3157 10.8184 22.3018 13.1858 20.8276 14.6257C20.577 14.8704 20.45 14.9963 20.3647 15.1022C20.302 15.1801 20.2883 15.216 20.2768 15.2565C20.2761 15.2596 20.2723 15.2757 20.27 15.3053C20.2674 15.3399 20.2677 15.3828 20.271 15.4284C20.2743 15.4738 20.28 15.5159 20.2876 15.5495C20.294 15.5779 20.3001 15.5933 20.3012 15.5964C20.3229 15.6448 20.3428 15.6754 20.4008 15.7302C20.4869 15.8113 20.6113 15.9047 20.8735 16.0954C21.2418 16.3633 21.6631 16.6882 21.9741 17.0505C22.2724 17.3982 22.6491 17.9931 22.4731 18.7321C22.3404 19.2886 21.9269 19.6226 21.6059 19.8024C21.2678 19.9919 20.8748 20.1037 20.4956 20.1637C19.7404 20.2833 18.8183 20.2294 18.018 19.9216C17.862 19.8616 17.742 19.8508 17.646 19.8649C17.1469 19.9384 16.7994 20.1377 16.2905 20.4372C15.7876 20.7331 15.1286 21.1248 14.1879 21.2428C13.1296 21.3755 12.487 21.1342 11.9497 20.9001C11.5017 20.7049 11.2151 20.5632 10.6254 20.5632C10.2243 20.5633 9.92988 20.7816 9.3647 21.2438C9.13092 21.435 8.77659 21.7284 8.3647 21.8962C7.87852 22.0941 7.31656 22.1205 6.74068 21.8327C6.24339 21.584 5.90198 21.2108 5.7065 20.7653C5.5245 20.3501 5.49513 19.9293 5.49752 19.6071C5.49974 19.3127 5.53667 18.9467 5.54732 18.777C5.56266 18.5317 5.54471 18.4821 5.5522 18.5046C5.52956 18.4366 5.50753 18.3937 5.49263 18.3688C5.47938 18.3468 5.47031 18.3368 5.46822 18.3346L5.46724 18.3337C5.46528 18.3327 5.45425 18.3283 5.43209 18.3229C5.29413 18.2895 5.0656 18.3031 4.5942 18.3757C4.21838 18.4335 3.61114 18.545 3.05025 18.4723C2.38428 18.3859 1.73452 18.0406 1.3442 17.2604C1.1781 16.9283 1.13023 16.5603 1.22994 16.196C1.31845 15.8729 1.50092 15.6359 1.6274 15.4919C1.75006 15.3522 1.90627 15.2085 1.98873 15.1286C2.0919 15.0286 2.15553 14.9602 2.20064 14.9001C2.38901 14.6486 2.43133 14.4929 2.44088 14.4147C2.44928 14.3451 2.4414 14.2608 2.3774 14.1266C1.79903 12.9164 1.44554 11.0945 2.78951 9.79656L7.89595 4.64129C8.47788 4.0537 8.95652 3.56941 9.3774 3.20867C9.80722 2.84031 10.2429 2.54144 10.7622 2.37078ZM12.0004 13.9997C11.4482 13.9997 11.0005 14.4474 11.0004 14.9997C11.0004 15.552 11.4482 15.9997 12.0004 15.9997C12.5526 15.9995 13.0004 15.5518 13.0004 14.9997C13.0004 14.4475 12.5525 13.9999 12.0004 13.9997ZM11.9721 7.99968C11.3925 7.99987 10.9346 8.49174 10.9751 9.07L11.1977 12.2516C11.2272 12.673 11.578 12.9997 12.0004 12.9997C12.4227 12.9995 12.7727 12.6729 12.8022 12.2516L13.0249 9.07C13.0653 8.49168 12.6075 7.99977 12.0278 7.99968H11.9721Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAiSlopSign;\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,0EChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAmE,UAAM,KAAK,CAAC,IAAU,CACpG,OAAO,wBAAwrF,EAAxrF,IAAqB,EAAO,OAAO,iDAAgD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,giFAAgiF,KAAK,eAAc,CAAI,EAChsF,EAEc",
9
+ "debugId": "621BE75A978D777464756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import C from"react";import{Svg as m,Mask as a,Rect as t,G as d}from"react-native-svg";var l=({children:r,size:o=24,mode:i="masked",maskId:e,...p})=>{let s=i!=="raw"&&!!e;return C.createElement(m,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},s?C.createElement(C.Fragment,null,C.createElement(a,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},C.createElement(t,{width:"24",height:"24",fill:"#000"}),C.createElement(d,{color:"#fff"},r)),C.createElement(t,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):r)};import n from"react";import{Path as f}from"react-native-svg";var u=n.memo((r)=>{return n.createElement(l,{...r,maskId:"round-filled-radius-3-stroke-2-IconAiSlopSign"},n.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M10.7622 2.37078C11.5671 2.10627 12.4355 2.10426 13.2417 2.36492C13.7615 2.5331 14.1989 2.82983 14.6303 3.19597C15.0528 3.55462 15.5341 4.03625 16.1186 4.62078L20.8588 9.36101C22.3157 10.8184 22.3018 13.1858 20.8276 14.6257C20.577 14.8704 20.45 14.9963 20.3647 15.1022C20.302 15.1801 20.2883 15.216 20.2768 15.2565C20.2761 15.2596 20.2723 15.2757 20.27 15.3053C20.2674 15.3399 20.2677 15.3828 20.271 15.4284C20.2743 15.4738 20.28 15.5159 20.2876 15.5495C20.294 15.5779 20.3001 15.5933 20.3012 15.5964C20.3229 15.6448 20.3428 15.6754 20.4008 15.7302C20.4869 15.8113 20.6113 15.9047 20.8735 16.0954C21.2418 16.3633 21.6631 16.6882 21.9741 17.0505C22.2724 17.3982 22.6491 17.9931 22.4731 18.7321C22.3404 19.2886 21.9269 19.6226 21.6059 19.8024C21.2678 19.9919 20.8748 20.1037 20.4956 20.1637C19.7404 20.2833 18.8183 20.2294 18.018 19.9216C17.862 19.8616 17.742 19.8508 17.646 19.8649C17.1469 19.9384 16.7994 20.1377 16.2905 20.4372C15.7876 20.7331 15.1286 21.1248 14.1879 21.2428C13.1296 21.3755 12.487 21.1342 11.9497 20.9001C11.5017 20.7049 11.2151 20.5632 10.6254 20.5632C10.2243 20.5633 9.92988 20.7816 9.3647 21.2438C9.13092 21.435 8.77659 21.7284 8.3647 21.8962C7.87852 22.0941 7.31656 22.1205 6.74068 21.8327C6.24339 21.584 5.90198 21.2108 5.7065 20.7653C5.5245 20.3501 5.49513 19.9293 5.49752 19.6071C5.49974 19.3127 5.53667 18.9467 5.54732 18.777C5.56266 18.5317 5.54471 18.4821 5.5522 18.5046C5.52956 18.4366 5.50753 18.3937 5.49263 18.3688C5.47938 18.3468 5.47031 18.3368 5.46822 18.3346L5.46724 18.3337C5.46528 18.3327 5.45425 18.3283 5.43209 18.3229C5.29413 18.2895 5.0656 18.3031 4.5942 18.3757C4.21838 18.4335 3.61114 18.545 3.05025 18.4723C2.38428 18.3859 1.73452 18.0406 1.3442 17.2604C1.1781 16.9283 1.13023 16.5603 1.22994 16.196C1.31845 15.8729 1.50092 15.6359 1.6274 15.4919C1.75006 15.3522 1.90627 15.2085 1.98873 15.1286C2.0919 15.0286 2.15553 14.9602 2.20064 14.9001C2.38901 14.6486 2.43133 14.4929 2.44088 14.4147C2.44928 14.3451 2.4414 14.2608 2.3774 14.1266C1.79903 12.9164 1.44554 11.0945 2.78951 9.79656L7.89595 4.64129C8.47788 4.0537 8.95652 3.56941 9.3774 3.20867C9.80722 2.84031 10.2429 2.54144 10.7622 2.37078ZM12.0004 13.9997C11.4482 13.9997 11.0005 14.4474 11.0004 14.9997C11.0004 15.552 11.4482 15.9997 12.0004 15.9997C12.5526 15.9995 13.0004 15.5518 13.0004 14.9997C13.0004 14.4475 12.5525 13.9999 12.0004 13.9997ZM11.9721 7.99968C11.3925 7.99987 10.9346 8.49174 10.9751 9.07L11.1977 12.2516C11.2272 12.673 11.578 12.9997 12.0004 12.9997C12.4227 12.9995 12.7727 12.6729 12.8022 12.2516L13.0249 9.07C13.0653 8.49168 12.6075 7.99977 12.0278 7.99968H11.9721Z",fill:"currentColor"}))}),w=u;export{w as default,u as IconAiSlopSign};
2
+
3
+ //# debugId=CBCB96307937E79864756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAiSlopSign/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 IconAiSlopSign: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-3-stroke-2-IconAiSlopSign\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.7622 2.37078C11.5671 2.10627 12.4355 2.10426 13.2417 2.36492C13.7615 2.5331 14.1989 2.82983 14.6303 3.19597C15.0528 3.55462 15.5341 4.03625 16.1186 4.62078L20.8588 9.36101C22.3157 10.8184 22.3018 13.1858 20.8276 14.6257C20.577 14.8704 20.45 14.9963 20.3647 15.1022C20.302 15.1801 20.2883 15.216 20.2768 15.2565C20.2761 15.2596 20.2723 15.2757 20.27 15.3053C20.2674 15.3399 20.2677 15.3828 20.271 15.4284C20.2743 15.4738 20.28 15.5159 20.2876 15.5495C20.294 15.5779 20.3001 15.5933 20.3012 15.5964C20.3229 15.6448 20.3428 15.6754 20.4008 15.7302C20.4869 15.8113 20.6113 15.9047 20.8735 16.0954C21.2418 16.3633 21.6631 16.6882 21.9741 17.0505C22.2724 17.3982 22.6491 17.9931 22.4731 18.7321C22.3404 19.2886 21.9269 19.6226 21.6059 19.8024C21.2678 19.9919 20.8748 20.1037 20.4956 20.1637C19.7404 20.2833 18.8183 20.2294 18.018 19.9216C17.862 19.8616 17.742 19.8508 17.646 19.8649C17.1469 19.9384 16.7994 20.1377 16.2905 20.4372C15.7876 20.7331 15.1286 21.1248 14.1879 21.2428C13.1296 21.3755 12.487 21.1342 11.9497 20.9001C11.5017 20.7049 11.2151 20.5632 10.6254 20.5632C10.2243 20.5633 9.92988 20.7816 9.3647 21.2438C9.13092 21.435 8.77659 21.7284 8.3647 21.8962C7.87852 22.0941 7.31656 22.1205 6.74068 21.8327C6.24339 21.584 5.90198 21.2108 5.7065 20.7653C5.5245 20.3501 5.49513 19.9293 5.49752 19.6071C5.49974 19.3127 5.53667 18.9467 5.54732 18.777C5.56266 18.5317 5.54471 18.4821 5.5522 18.5046C5.52956 18.4366 5.50753 18.3937 5.49263 18.3688C5.47938 18.3468 5.47031 18.3368 5.46822 18.3346L5.46724 18.3337C5.46528 18.3327 5.45425 18.3283 5.43209 18.3229C5.29413 18.2895 5.0656 18.3031 4.5942 18.3757C4.21838 18.4335 3.61114 18.545 3.05025 18.4723C2.38428 18.3859 1.73452 18.0406 1.3442 17.2604C1.1781 16.9283 1.13023 16.5603 1.22994 16.196C1.31845 15.8729 1.50092 15.6359 1.6274 15.4919C1.75006 15.3522 1.90627 15.2085 1.98873 15.1286C2.0919 15.0286 2.15553 14.9602 2.20064 14.9001C2.38901 14.6486 2.43133 14.4929 2.44088 14.4147C2.44928 14.3451 2.4414 14.2608 2.3774 14.1266C1.79903 12.9164 1.44554 11.0945 2.78951 9.79656L7.89595 4.64129C8.47788 4.0537 8.95652 3.56941 9.3774 3.20867C9.80722 2.84031 10.2429 2.54144 10.7622 2.37078ZM12.0004 13.9997C11.4482 13.9997 11.0005 14.4474 11.0004 14.9997C11.0004 15.552 11.4482 15.9997 12.0004 15.9997C12.5526 15.9995 13.0004 15.5518 13.0004 14.9997C13.0004 14.4475 12.5525 13.9999 12.0004 13.9997ZM11.9721 7.99968C11.3925 7.99987 10.9346 8.49174 10.9751 9.07L11.1977 12.2516C11.2272 12.673 11.578 12.9997 12.0004 12.9997C12.4227 12.9995 12.7727 12.6729 12.8022 12.2516L13.0249 9.07C13.0653 8.49168 12.6075 7.99977 12.0278 7.99968H11.9721Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAiSlopSign;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAwrF,EAAxrF,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,giFAAgiF,KAAK,eAAc,CAAI,EAChsF,EAEc",
9
+ "debugId": "CBCB96307937E79864756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -253,6 +253,9 @@ Below is a complete list of available icons:
253
253
  - IconGoblin2
254
254
  - IconShieldAi
255
255
  - IconGoblin
256
+ - IconAiBotHeadLooking
257
+ - IconAiBotHead
258
+ - IconAiSlopSign
256
259
 
257
260
  ### Accessibility
258
261