{
  "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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 14.6045 21.0033 16.9779 19.3719 18.7569C17.5449 20.7493 14.918 22 12 22C9.08204 22 6.45511 20.7493 4.62807 18.7569C2.99666 16.9779 2 14.6045 2 12ZM17.761 18.25C16.2457 16.8525 14.2229 16 12 16C9.77714 16 7.75426 16.8525 6.23905 18.25C7.75426 19.6475 9.77714 20.5 12 20.5C14.2229 20.5 16.2457 19.6475 17.761 18.25ZM10.6304 7.86314L9.28771 8.53447C8.9041 8.72628 8.9041 9.27372 9.28771 9.46553L10.6304 10.1369C10.7311 10.1872 10.8128 10.2689 10.8631 10.3696L11.5345 11.7123C11.7263 12.0959 12.2737 12.0959 12.4655 11.7123L13.1369 10.3696C13.1872 10.2689 13.2689 10.1872 13.3696 10.1369L14.7123 9.46553C15.0959 9.27372 15.0959 8.72628 14.7123 8.53447L13.3696 7.86314C13.2689 7.81278 13.1872 7.7311 13.1369 7.63037L12.4655 6.28771C12.2737 5.9041 11.7263 5.9041 11.5345 6.28771L10.8631 7.63037C10.8128 7.7311 10.7311 7.81278 10.6304 7.86314Z\" 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,gBAA6/B,EAA7/B,IAAqB,EAAO,UAAU,eAAc,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,o4BAAo4B,KAAK,eAAc,CAAI,GAGv/B",
  "debugId": "B4E49940EDF73D2364756E2164756E21",
  "names": []
}