{"version":3,"sources":["../src/IconCosmos/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCosmos: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"cosmos\">\n      <path\n        d=\"M14.2511 4.25C14.2511 5.49264 13.2438 6.5 12.0011 6.5C10.7585 6.5 9.75114 5.49264 9.75114 4.25C9.75114 3.00736 10.7585 2 12.0011 2C13.2438 2 14.2511 3.00736 14.2511 4.25Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M14.2511 19.75C14.2511 20.9926 13.2438 22 12.0011 22C10.7585 22 9.75114 20.9926 9.75114 19.75C9.75114 18.5074 10.7585 17.5 12.0011 17.5C13.2438 17.5 14.2511 18.5074 14.2511 19.75Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M6.41444 6.17644C7.4906 6.79776 7.85932 8.17384 7.238 9.25C6.61668 10.3262 5.2406 10.6949 4.16444 10.0736C3.08828 9.45224 2.71956 8.07616 3.34088 7C3.9622 5.92384 5.33828 5.55512 6.41444 6.17644Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M19.8378 13.9264C20.914 14.5478 21.2827 15.9238 20.6614 17C20.0401 18.0762 18.664 18.4449 17.5878 17.8236C16.5117 17.2022 16.143 15.8262 16.7643 14.75C17.3856 13.6738 18.7617 13.3051 19.8378 13.9264Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M4.16444 13.9264C5.2406 13.3051 6.61667 13.6738 7.238 14.75C7.85932 15.8262 7.4906 17.2022 6.41444 17.8236C5.33828 18.4449 3.9622 18.0762 3.34088 17C2.71956 15.9238 3.08828 14.5478 4.16444 13.9264Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M17.5878 6.17645C18.664 5.55513 20.0401 5.92385 20.6614 7.00001C21.2827 8.07616 20.914 9.45224 19.8378 10.0736C18.7617 10.6949 17.3856 10.3262 16.7643 9.25001C16.143 8.17385 16.5117 6.79777 17.5878 6.17645Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconCosmos;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,UACpCC,EAAA,cAAC,QACC,EAAE,6KACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sLACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCosmos","props","React","CentralIconBase","IconCosmos_default"]}