{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBlackHole/index.tsx"],
  "sourcesContent": [
    "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",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBlackHole: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"black-hole, galaxy, delete-forever, hide\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.9742 21.4475C2.68801 21.3343 2.5 21.0578 2.5 20.75V12C2.5 6.75331 6.75329 2.50002 12 2.50002C14.3166 2.50002 16.4406 3.33003 18.089 4.7077L20.2383 2.70172C20.4566 2.49795 20.775 2.44313 21.0489 2.56216C21.3228 2.68118 21.5 2.95137 21.5 3.25002V12C21.5 17.2467 17.2467 21.5 12 21.5C9.6133 21.5 7.43128 20.6191 5.76301 19.1661L3.79715 21.263C3.58667 21.4875 3.26039 21.5606 2.9742 21.4475ZM12 15.5C13.933 15.5 15.5 13.933 15.5 12C15.5 10.067 13.933 8.5 12 8.5C10.067 8.5 8.5 10.067 8.5 12C8.5 13.933 10.067 15.5 12 15.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBlackHole;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAkqB,EAAlqB,IAAqB,EAAO,UAAU,4CAA2C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4gBAA4gB,KAAK,eAAc,CAAI,GAG5pB",
  "debugId": "C1A598A9BF3CCF6964756E2164756E21",
  "names": []
}