{"version":3,"sources":["../src/IconGalaxy/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGalaxy: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"galaxy, dark-hole\">\n      <path\n        fillRule=\"evenodd\"\n        clipRule=\"evenodd\"\n        d=\"M10.9049 7.00532C7.40213 6.89758 3.97777 8.33171 2.94131 11.2733L2.60899 12.2165L0.722656 11.5518L1.05498 10.6087C2.51852 6.45494 7.09415 4.88716 10.9664 5.00627C12.9397 5.06697 14.8879 5.5587 16.3771 6.48307C17.8783 7.4149 18.9981 8.85518 18.9981 10.7569C18.9981 11.9252 18.4461 12.846 17.6809 13.4976C16.9351 14.1328 15.9751 14.5296 15.0347 14.7403C14.0895 14.952 13.0891 14.9929 12.2116 14.8526C11.3798 14.7195 10.4492 14.3878 9.90884 13.6556C9.50717 13.1113 9.57445 12.4898 9.82153 12.0519C10.0463 11.6536 10.4218 11.3729 10.8085 11.2309L11.7307 10.8921C11.6508 10.8732 11.5637 10.8558 11.4689 10.8407C10.8654 10.7441 10.1214 10.7677 9.39884 10.9296C8.67153 11.0925 8.04046 11.3785 7.61214 11.7433C7.20322 12.0915 6.99814 12.4877 6.99814 12.9613C6.99814 14.0265 7.61659 14.9633 8.81314 15.7032C10.0173 16.4478 11.7 16.9106 13.4793 16.9882C15.2562 17.0658 17.0307 16.7549 18.4145 16.056C19.7818 15.3654 20.7217 14.3274 21.0198 12.9174L21.2266 11.939L23.1833 12.3527L22.9765 13.3311C22.5246 15.4688 21.0895 16.9456 19.3162 17.8412C17.5593 18.7285 15.4275 19.0752 13.392 18.9863C11.3588 18.8976 9.32278 18.3698 7.76127 17.4042C6.1922 16.434 4.99814 14.941 4.99814 12.9613C4.99814 11.793 5.55023 10.8722 6.31543 10.2206C7.06121 9.58549 8.02119 9.18866 8.96163 8.97798C9.90681 8.76624 10.9073 8.72541 11.7848 8.86577C12.6165 8.99881 13.5471 9.33054 14.0875 10.0628C14.4891 10.6071 14.4218 11.2286 14.1748 11.6664C13.95 12.0647 13.5745 12.3454 13.1878 12.4875L12.2657 12.8262C12.3455 12.8451 12.4326 12.8625 12.5274 12.8777C13.1308 12.9742 13.8749 12.9506 14.5974 12.7887C15.3247 12.6257 15.9558 12.3397 16.3841 11.975C16.7931 11.6267 16.9981 11.2305 16.9981 10.7569C16.9981 9.74881 16.4305 8.87023 15.3223 8.18231C14.2021 7.48695 12.6191 7.05805 10.9049 7.00532Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconGalaxy;\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,qBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ouDACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGalaxy","props","React","CentralIconBase","IconGalaxy_default"]}