{"version":3,"sources":["../src/IconSparklesTwo2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSparklesTwo2: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase\n      {...props}\n      ariaLabel=\"sparkles-two-2, ai 2 stars, sparkles, ✨\"\n    >\n      <path\n        d=\"M23 16.75C21.1818 16.75 20.0439 16.3478 19.348 15.652C18.6522 14.9561 18.25 13.8182 18.25 12H16.75C16.75 13.8182 16.3478 14.9561 15.652 15.652C14.9561 16.3478 13.8182 16.75 12 16.75V18.25C13.8182 18.25 14.9561 18.6522 15.652 19.348C16.3478 20.0439 16.75 21.1818 16.75 23H18.25C18.25 21.1818 18.6522 20.0439 19.348 19.348C20.0439 18.6522 21.1818 18.25 23 18.25V16.75Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M17 8.25C14.3138 8.25 12.5508 7.65682 11.447 6.553C10.3432 5.44918 9.75 3.68622 9.75 1H8.25C8.25 3.68622 7.65682 5.44918 6.553 6.553C5.44918 7.65682 3.68622 8.25 1 8.25V9.75C3.68622 9.75 5.44918 10.3432 6.553 11.447C7.65682 12.5508 8.25 14.3138 8.25 17H9.75C9.75 14.3138 10.3432 12.5508 11.447 11.447C12.5508 10.3432 14.3138 9.75 17 9.75V8.25Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconSparklesTwo2;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,gDAEVC,EAAA,cAAC,QACC,EAAE,iXACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0VACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSparklesTwo2","props","React","CentralIconBase","IconSparklesTwo2_default"]}