{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSpace/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 IconSpace: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"space, star\"><path d=\"M21.25 12C21.25 14.4095 20.3287 16.6039 18.8192 18.25C17.1282 20.094 14.6991 21.25 12 21.25C9.30089 21.25 6.8718 20.094 5.18084 18.25C3.67129 16.6039 2.75 14.4095 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M5.17969 18.25C6.87065 16.406 9.29975 15.25 11.9989 15.25C14.698 15.25 17.1271 16.406 18.818 18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M8.5 9L10.8333 7.83333L12 5.5L13.1667 7.83333L15.5 9L13.1667 10.1667L12 12.5L10.8333 10.1667L8.5 9Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSpace;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAonB,EAApnB,IAAqB,EAAO,UAAU,eAAc,gBAAC,OAAD,CAAM,EAAE,oPAAoP,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,qGAAqG,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAG9mB",
  "debugId": "36F8049E1233222764756E2164756E21",
  "names": []
}