@central-icons-react-native/round-filled-radius-0-stroke-1 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-0-stroke-1-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.75 8.875C9.40482 8.875 9.125 9.15482 9.125 9.5V12.5C9.125 12.8452 9.40482 13.125 9.75 13.125C10.0952 13.125 10.375 12.8452 10.375 12.5V9.5C10.375 9.15482 10.0952 8.875 9.75 8.875ZM14.25 8.875C13.9048 8.875 13.625 9.15482 13.625 9.5V12.5C13.625 12.8452 13.9048 13.125 14.25 13.125C14.5952 13.125 14.875 12.8452 14.875 12.5V9.5C14.875 9.15482 14.5952 8.875 14.25 8.875Z",fill:"currentColor"}))}),$=k;
2
+
3
+ //# debugId=D0A693D1C165172464756E2164756E21
@@ -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-0-stroke-1-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.75 8.875C9.40482 8.875 9.125 9.15482 9.125 9.5V12.5C9.125 12.8452 9.40482 13.125 9.75 13.125C10.0952 13.125 10.375 12.8452 10.375 12.5V9.5C10.375 9.15482 10.0952 8.875 9.75 8.875ZM14.25 8.875C13.9048 8.875 13.625 9.15482 13.625 9.5V12.5C13.625 12.8452 13.9048 13.125 14.25 13.125C14.5952 13.125 14.875 12.8452 14.875 12.5V9.5C14.875 9.15482 14.5952 8.875 14.25 8.875Z\" 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,wBAA4nB,EAA5nB,IAAqB,EAAO,OAAO,gDAA+C,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qeAAqe,KAAK,eAAc,CAAI,EACpoB,EAEc",
9
+ "debugId": "D0A693D1C165172464756E2164756E21",
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-0-stroke-1-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.75 8.875C9.40482 8.875 9.125 9.15482 9.125 9.5V12.5C9.125 12.8452 9.40482 13.125 9.75 13.125C10.0952 13.125 10.375 12.8452 10.375 12.5V9.5C10.375 9.15482 10.0952 8.875 9.75 8.875ZM14.25 8.875C13.9048 8.875 13.625 9.15482 13.625 9.5V12.5C13.625 12.8452 13.9048 13.125 14.25 13.125C14.5952 13.125 14.875 12.8452 14.875 12.5V9.5C14.875 9.15482 14.5952 8.875 14.25 8.875Z",fill:"currentColor"}))}),P=u;export{P as default,u as IconAiBotHead};
2
+
3
+ //# debugId=FAC3024C68DED5ED64756E2164756E21
@@ -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-0-stroke-1-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.75 8.875C9.40482 8.875 9.125 9.15482 9.125 9.5V12.5C9.125 12.8452 9.40482 13.125 9.75 13.125C10.0952 13.125 10.375 12.8452 10.375 12.5V9.5C10.375 9.15482 10.0952 8.875 9.75 8.875ZM14.25 8.875C13.9048 8.875 13.625 9.15482 13.625 9.5V12.5C13.625 12.8452 13.9048 13.125 14.25 13.125C14.5952 13.125 14.875 12.8452 14.875 12.5V9.5C14.875 9.15482 14.5952 8.875 14.25 8.875Z\" 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,gBAA4nB,EAA5nB,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qeAAqe,KAAK,eAAc,CAAI,EACpoB,EAEc",
9
+ "debugId": "FAC3024C68DED5ED64756E2164756E21",
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-0-stroke-1-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.25 8.875C10.9048 8.875 10.625 9.15482 10.625 9.5V12.5C10.625 12.8452 10.9048 13.125 11.25 13.125C11.5952 13.125 11.875 12.8452 11.875 12.5V9.5C11.875 9.15482 11.5952 8.875 11.25 8.875ZM15.75 8.875C15.4048 8.875 15.125 9.15482 15.125 9.5V12.5C15.125 12.8452 15.4048 13.125 15.75 13.125C16.0952 13.125 16.375 12.8452 16.375 12.5V9.5C16.375 9.15482 16.0952 8.875 15.75 8.875Z",fill:"currentColor"}))}),$=I;
2
+
3
+ //# debugId=9840E20FA3688CB564756E2164756E21
@@ -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-0-stroke-1-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.25 8.875C10.9048 8.875 10.625 9.15482 10.625 9.5V12.5C10.625 12.8452 10.9048 13.125 11.25 13.125C11.5952 13.125 11.875 12.8452 11.875 12.5V9.5C11.875 9.15482 11.5952 8.875 11.25 8.875ZM15.75 8.875C15.4048 8.875 15.125 9.15482 15.125 9.5V12.5C15.125 12.8452 15.4048 13.125 15.75 13.125C16.0952 13.125 16.375 12.8452 16.375 12.5V9.5C16.375 9.15482 16.0952 8.875 15.75 8.875Z\" 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,wBAAyoB,EAAzoB,IAAqB,EAAO,OAAO,uDAAsD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2eAA2e,KAAK,eAAc,CAAI,EACjpB,EAEc",
9
+ "debugId": "9840E20FA3688CB564756E2164756E21",
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-0-stroke-1-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.25 8.875C10.9048 8.875 10.625 9.15482 10.625 9.5V12.5C10.625 12.8452 10.9048 13.125 11.25 13.125C11.5952 13.125 11.875 12.8452 11.875 12.5V9.5C11.875 9.15482 11.5952 8.875 11.25 8.875ZM15.75 8.875C15.4048 8.875 15.125 9.15482 15.125 9.5V12.5C15.125 12.8452 15.4048 13.125 15.75 13.125C16.0952 13.125 16.375 12.8452 16.375 12.5V9.5C16.375 9.15482 16.0952 8.875 15.75 8.875Z",fill:"currentColor"}))}),P=u;export{P as default,u as IconAiBotHeadLooking};
2
+
3
+ //# debugId=FDF07B551B0CBDB064756E2164756E21
@@ -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-0-stroke-1-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.25 8.875C10.9048 8.875 10.625 9.15482 10.625 9.5V12.5C10.625 12.8452 10.9048 13.125 11.25 13.125C11.5952 13.125 11.875 12.8452 11.875 12.5V9.5C11.875 9.15482 11.5952 8.875 11.25 8.875ZM15.75 8.875C15.4048 8.875 15.125 9.15482 15.125 9.5V12.5C15.125 12.8452 15.4048 13.125 15.75 13.125C16.0952 13.125 16.375 12.8452 16.375 12.5V9.5C16.375 9.15482 16.0952 8.875 15.75 8.875Z\" 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,gBAAyoB,EAAzoB,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2eAA2e,KAAK,eAAc,CAAI,EACjpB,EAEc",
9
+ "debugId": "FDF07B551B0CBDB064756E2164756E21",
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-0-stroke-1-IconAiSlopSign"},m.default.createElement(S.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1.41699C12.1326 1.41699 12.2598 1.47079 12.3535 1.56445L22.4375 11.6475C22.532 11.7421 22.5849 11.8712 22.584 12.0049C22.5829 12.1383 22.5282 12.2662 22.4326 12.3594L21.4834 13.2832C21.1704 13.5877 20.9518 13.8007 20.7979 13.9697C20.6405 14.1426 20.5934 14.225 20.5791 14.2627C20.4823 14.5224 20.5554 14.8224 20.8321 15.2256C20.9659 15.4206 21.1305 15.6139 21.3047 15.8105C21.4704 15.9976 21.6596 16.2042 21.8067 16.3887C22.1673 16.8412 22.4494 17.4372 22.2901 18.1064C22.0755 19.0063 21.3086 19.4643 20.5459 19.6348C19.7804 19.8058 18.8989 19.725 18.1973 19.4551C17.9774 19.3705 17.7705 19.3421 17.5733 19.3711C16.9662 19.4604 16.5421 19.7087 16.0371 20.0059C15.535 20.3013 14.9542 20.6431 14.125 20.7471C13.191 20.8641 12.6443 20.658 12.1494 20.4424C11.6991 20.2461 11.3283 20.0635 10.625 20.0635C10.0163 20.0636 9.58512 20.4171 9.04788 20.8564C8.80367 21.0562 8.50644 21.2979 8.17581 21.4326C7.80804 21.5823 7.39764 21.6026 6.9639 21.3857C6.56972 21.1886 6.31202 20.9024 6.1641 20.5654C6.02288 20.2434 5.99494 19.9035 5.9971 19.6113C5.9992 19.3331 6.03289 19.0164 6.04593 18.8086C6.06127 18.5635 6.05254 18.4255 6.0264 18.3467C5.96089 18.1502 5.88149 18.0391 5.81156 17.9727C5.7432 17.9078 5.66024 17.8637 5.54984 17.8369C5.29937 17.7762 4.97086 17.812 4.51761 17.8818C4.11231 17.9443 3.58826 18.038 3.11429 17.9766C2.58778 17.9082 2.09617 17.647 1.79105 17.0371C1.58962 16.6343 1.60522 16.2168 1.71292 15.8525C1.81867 15.4952 2.01873 15.1635 2.22757 14.8848C2.47444 14.5554 2.59036 14.3133 2.63578 14.1309C2.67755 13.9624 2.66438 13.8257 2.61038 13.6846C2.55045 13.5282 2.43479 13.3522 2.24515 13.123C2.0512 12.8888 1.82531 12.6515 1.543 12.334C1.36719 12.1362 1.37656 11.8347 1.56351 11.6475L11.6465 1.56445C11.7402 1.47077 11.8676 1.41709 12 1.41699ZM12 14.25C11.5858 14.25 11.25 14.5858 11.25 15C11.25 15.4142 11.5858 15.75 12 15.75C12.4142 15.75 12.75 15.4142 12.75 15C12.75 14.5858 12.4142 14.25 12 14.25ZM12 8C11.569 8.00014 11.2293 8.36819 11.2637 8.79785L11.5684 12.6016C11.5865 12.8265 11.7743 12.9999 12 13C12.2258 13 12.4145 12.8266 12.4327 12.6016L12.7364 8.79785C12.7707 8.36811 12.4311 8 12 8Z",fill:"currentColor"}))}),$=k;
2
+
3
+ //# debugId=EE4361691E2FDD5064756E2164756E21
@@ -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-0-stroke-1-IconAiSlopSign\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1.41699C12.1326 1.41699 12.2598 1.47079 12.3535 1.56445L22.4375 11.6475C22.532 11.7421 22.5849 11.8712 22.584 12.0049C22.5829 12.1383 22.5282 12.2662 22.4326 12.3594L21.4834 13.2832C21.1704 13.5877 20.9518 13.8007 20.7979 13.9697C20.6405 14.1426 20.5934 14.225 20.5791 14.2627C20.4823 14.5224 20.5554 14.8224 20.8321 15.2256C20.9659 15.4206 21.1305 15.6139 21.3047 15.8105C21.4704 15.9976 21.6596 16.2042 21.8067 16.3887C22.1673 16.8412 22.4494 17.4372 22.2901 18.1064C22.0755 19.0063 21.3086 19.4643 20.5459 19.6348C19.7804 19.8058 18.8989 19.725 18.1973 19.4551C17.9774 19.3705 17.7705 19.3421 17.5733 19.3711C16.9662 19.4604 16.5421 19.7087 16.0371 20.0059C15.535 20.3013 14.9542 20.6431 14.125 20.7471C13.191 20.8641 12.6443 20.658 12.1494 20.4424C11.6991 20.2461 11.3283 20.0635 10.625 20.0635C10.0163 20.0636 9.58512 20.4171 9.04788 20.8564C8.80367 21.0562 8.50644 21.2979 8.17581 21.4326C7.80804 21.5823 7.39764 21.6026 6.9639 21.3857C6.56972 21.1886 6.31202 20.9024 6.1641 20.5654C6.02288 20.2434 5.99494 19.9035 5.9971 19.6113C5.9992 19.3331 6.03289 19.0164 6.04593 18.8086C6.06127 18.5635 6.05254 18.4255 6.0264 18.3467C5.96089 18.1502 5.88149 18.0391 5.81156 17.9727C5.7432 17.9078 5.66024 17.8637 5.54984 17.8369C5.29937 17.7762 4.97086 17.812 4.51761 17.8818C4.11231 17.9443 3.58826 18.038 3.11429 17.9766C2.58778 17.9082 2.09617 17.647 1.79105 17.0371C1.58962 16.6343 1.60522 16.2168 1.71292 15.8525C1.81867 15.4952 2.01873 15.1635 2.22757 14.8848C2.47444 14.5554 2.59036 14.3133 2.63578 14.1309C2.67755 13.9624 2.66438 13.8257 2.61038 13.6846C2.55045 13.5282 2.43479 13.3522 2.24515 13.123C2.0512 12.8888 1.82531 12.6515 1.543 12.334C1.36719 12.1362 1.37656 11.8347 1.56351 11.6475L11.6465 1.56445C11.7402 1.47077 11.8676 1.41709 12 1.41699ZM12 14.25C11.5858 14.25 11.25 14.5858 11.25 15C11.25 15.4142 11.5858 15.75 12 15.75C12.4142 15.75 12.75 15.4142 12.75 15C12.75 14.5858 12.4142 14.25 12 14.25ZM12 8C11.569 8.00014 11.2293 8.36819 11.2637 8.79785L11.5684 12.6016C11.5865 12.8265 11.7743 12.9999 12 13C12.2258 13 12.4145 12.8266 12.4327 12.6016L12.7364 8.79785C12.7707 8.36811 12.4311 8 12 8Z\" 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,wBAA8tE,EAA9tE,IAAqB,EAAO,OAAO,iDAAgD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,skEAAskE,KAAK,eAAc,CAAI,EACtuE,EAEc",
9
+ "debugId": "EE4361691E2FDD5064756E2164756E21",
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-0-stroke-1-IconAiSlopSign"},n.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1.41699C12.1326 1.41699 12.2598 1.47079 12.3535 1.56445L22.4375 11.6475C22.532 11.7421 22.5849 11.8712 22.584 12.0049C22.5829 12.1383 22.5282 12.2662 22.4326 12.3594L21.4834 13.2832C21.1704 13.5877 20.9518 13.8007 20.7979 13.9697C20.6405 14.1426 20.5934 14.225 20.5791 14.2627C20.4823 14.5224 20.5554 14.8224 20.8321 15.2256C20.9659 15.4206 21.1305 15.6139 21.3047 15.8105C21.4704 15.9976 21.6596 16.2042 21.8067 16.3887C22.1673 16.8412 22.4494 17.4372 22.2901 18.1064C22.0755 19.0063 21.3086 19.4643 20.5459 19.6348C19.7804 19.8058 18.8989 19.725 18.1973 19.4551C17.9774 19.3705 17.7705 19.3421 17.5733 19.3711C16.9662 19.4604 16.5421 19.7087 16.0371 20.0059C15.535 20.3013 14.9542 20.6431 14.125 20.7471C13.191 20.8641 12.6443 20.658 12.1494 20.4424C11.6991 20.2461 11.3283 20.0635 10.625 20.0635C10.0163 20.0636 9.58512 20.4171 9.04788 20.8564C8.80367 21.0562 8.50644 21.2979 8.17581 21.4326C7.80804 21.5823 7.39764 21.6026 6.9639 21.3857C6.56972 21.1886 6.31202 20.9024 6.1641 20.5654C6.02288 20.2434 5.99494 19.9035 5.9971 19.6113C5.9992 19.3331 6.03289 19.0164 6.04593 18.8086C6.06127 18.5635 6.05254 18.4255 6.0264 18.3467C5.96089 18.1502 5.88149 18.0391 5.81156 17.9727C5.7432 17.9078 5.66024 17.8637 5.54984 17.8369C5.29937 17.7762 4.97086 17.812 4.51761 17.8818C4.11231 17.9443 3.58826 18.038 3.11429 17.9766C2.58778 17.9082 2.09617 17.647 1.79105 17.0371C1.58962 16.6343 1.60522 16.2168 1.71292 15.8525C1.81867 15.4952 2.01873 15.1635 2.22757 14.8848C2.47444 14.5554 2.59036 14.3133 2.63578 14.1309C2.67755 13.9624 2.66438 13.8257 2.61038 13.6846C2.55045 13.5282 2.43479 13.3522 2.24515 13.123C2.0512 12.8888 1.82531 12.6515 1.543 12.334C1.36719 12.1362 1.37656 11.8347 1.56351 11.6475L11.6465 1.56445C11.7402 1.47077 11.8676 1.41709 12 1.41699ZM12 14.25C11.5858 14.25 11.25 14.5858 11.25 15C11.25 15.4142 11.5858 15.75 12 15.75C12.4142 15.75 12.75 15.4142 12.75 15C12.75 14.5858 12.4142 14.25 12 14.25ZM12 8C11.569 8.00014 11.2293 8.36819 11.2637 8.79785L11.5684 12.6016C11.5865 12.8265 11.7743 12.9999 12 13C12.2258 13 12.4145 12.8266 12.4327 12.6016L12.7364 8.79785C12.7707 8.36811 12.4311 8 12 8Z",fill:"currentColor"}))}),w=u;export{w as default,u as IconAiSlopSign};
2
+
3
+ //# debugId=BFD91D8FF50EC2CE64756E2164756E21
@@ -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-0-stroke-1-IconAiSlopSign\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1.41699C12.1326 1.41699 12.2598 1.47079 12.3535 1.56445L22.4375 11.6475C22.532 11.7421 22.5849 11.8712 22.584 12.0049C22.5829 12.1383 22.5282 12.2662 22.4326 12.3594L21.4834 13.2832C21.1704 13.5877 20.9518 13.8007 20.7979 13.9697C20.6405 14.1426 20.5934 14.225 20.5791 14.2627C20.4823 14.5224 20.5554 14.8224 20.8321 15.2256C20.9659 15.4206 21.1305 15.6139 21.3047 15.8105C21.4704 15.9976 21.6596 16.2042 21.8067 16.3887C22.1673 16.8412 22.4494 17.4372 22.2901 18.1064C22.0755 19.0063 21.3086 19.4643 20.5459 19.6348C19.7804 19.8058 18.8989 19.725 18.1973 19.4551C17.9774 19.3705 17.7705 19.3421 17.5733 19.3711C16.9662 19.4604 16.5421 19.7087 16.0371 20.0059C15.535 20.3013 14.9542 20.6431 14.125 20.7471C13.191 20.8641 12.6443 20.658 12.1494 20.4424C11.6991 20.2461 11.3283 20.0635 10.625 20.0635C10.0163 20.0636 9.58512 20.4171 9.04788 20.8564C8.80367 21.0562 8.50644 21.2979 8.17581 21.4326C7.80804 21.5823 7.39764 21.6026 6.9639 21.3857C6.56972 21.1886 6.31202 20.9024 6.1641 20.5654C6.02288 20.2434 5.99494 19.9035 5.9971 19.6113C5.9992 19.3331 6.03289 19.0164 6.04593 18.8086C6.06127 18.5635 6.05254 18.4255 6.0264 18.3467C5.96089 18.1502 5.88149 18.0391 5.81156 17.9727C5.7432 17.9078 5.66024 17.8637 5.54984 17.8369C5.29937 17.7762 4.97086 17.812 4.51761 17.8818C4.11231 17.9443 3.58826 18.038 3.11429 17.9766C2.58778 17.9082 2.09617 17.647 1.79105 17.0371C1.58962 16.6343 1.60522 16.2168 1.71292 15.8525C1.81867 15.4952 2.01873 15.1635 2.22757 14.8848C2.47444 14.5554 2.59036 14.3133 2.63578 14.1309C2.67755 13.9624 2.66438 13.8257 2.61038 13.6846C2.55045 13.5282 2.43479 13.3522 2.24515 13.123C2.0512 12.8888 1.82531 12.6515 1.543 12.334C1.36719 12.1362 1.37656 11.8347 1.56351 11.6475L11.6465 1.56445C11.7402 1.47077 11.8676 1.41709 12 1.41699ZM12 14.25C11.5858 14.25 11.25 14.5858 11.25 15C11.25 15.4142 11.5858 15.75 12 15.75C12.4142 15.75 12.75 15.4142 12.75 15C12.75 14.5858 12.4142 14.25 12 14.25ZM12 8C11.569 8.00014 11.2293 8.36819 11.2637 8.79785L11.5684 12.6016C11.5865 12.8265 11.7743 12.9999 12 13C12.2258 13 12.4145 12.8266 12.4327 12.6016L12.7364 8.79785C12.7707 8.36811 12.4311 8 12 8Z\" 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,gBAA8tE,EAA9tE,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,skEAAskE,KAAK,eAAc,CAAI,EACtuE,EAEc",
9
+ "debugId": "BFD91D8FF50EC2CE64756E2164756E21",
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