{
  "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=\"M5.57444 20.9562C4.51461 22.1834 2.5 21.4339 2.5 19.8124V12.0002C2.5 6.75354 6.75329 2.50024 12 2.50024C14.0166 2.50024 15.8878 3.12932 17.4262 4.20144L18.4256 3.04424C19.4854 1.81707 21.5 2.5666 21.5 4.18808V12.0002C21.5 17.2469 17.2467 21.5002 12 21.5002C9.98341 21.5002 8.11216 20.8712 6.57384 19.799L5.57444 20.9562ZM12 15.5002C13.933 15.5002 15.5 13.9332 15.5 12.0002C15.5 10.0672 13.933 8.50024 12 8.50024C10.067 8.50024 8.5 10.0672 8.5 12.0002C8.5 13.9332 10.067 15.5002 12 15.5002Z\" 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,gBAAkoB,EAAloB,IAAqB,EAAO,UAAU,4CAA2C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4eAA4e,KAAK,eAAc,CAAI,GAG5nB",
  "debugId": "48C9A2B8CB81D0B364756E2164756E21",
  "names": []
}