{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconUfo/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 IconUfo: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"ufo, beam\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.00913 6.45887C5.44962 6.76556 4.08697 7.2177 3.06203 7.78852C1.94958 8.40807 1 9.30778 1 10.5C1 11.6833 1.93582 12.5783 3.03474 13.1962C3.94479 13.7079 5.12474 14.1249 6.47387 14.4284L3.11241 19.8551C2.89429 20.2072 3.00293 20.6695 3.35506 20.8876C3.70719 21.1057 4.16947 20.9971 4.38759 20.6449L9.89872 11.7479C10.2343 11.2062 10.7385 10.865 11.2698 10.8206C11.7583 10.7798 12.2417 10.7798 12.7302 10.8206C13.2615 10.865 13.7657 11.2062 14.1013 11.7479L19.6124 20.6449C19.8305 20.9971 20.2928 21.1057 20.6449 20.8876C20.9971 20.6695 21.1057 20.2072 20.8876 19.8551L17.5261 14.4284C18.8753 14.1249 20.0552 13.7079 20.9653 13.1962C22.0642 12.5783 23 11.6833 23 10.5C23 9.30778 22.0504 8.40807 20.938 7.78852C19.913 7.2177 18.5504 6.76556 16.9909 6.45887C16.8319 3.93423 14.6182 2 12 2C9.38184 2 7.16814 3.93423 7.00913 6.45887ZM8.54843 6.21173C9.63306 6.07423 10.7942 6 12 6C13.2058 6 14.3669 6.07423 15.4516 6.21173C15.1775 4.70144 13.7705 3.5 12 3.5C10.2295 3.5 8.82248 4.70144 8.54843 6.21173Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconUfo;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAgmC,EAAhmC,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,y+BAAy+B,KAAK,eAAc,CAAI,GAG1lC",
  "debugId": "E10D7BAA69AE600E64756E2164756E21",
  "names": []
}