{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAlien/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 IconAlien: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"alien\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 10.9605C3 6.00838 7.03283 2 12 2C16.9672 2 21 6.00838 21 10.9605C21 14.2861 19.3361 17.2778 17.4617 19.4097C16.5195 20.4814 15.5035 21.3601 14.5738 21.9769C14.1091 22.2853 13.6556 22.5351 13.2345 22.71C12.8235 22.8809 12.397 23 12 23C11.603 23 11.1765 22.8809 10.7655 22.71C10.3444 22.5351 9.8909 22.2853 9.42618 21.9769C8.4965 21.3601 7.48053 20.4814 6.53831 19.4097C4.6639 17.2778 3 14.2861 3 10.9605ZM7.38195 9.92737C10.156 9.83264 10.8406 11.2375 10.9727 13.1176C11.008 13.6207 10.622 14.0554 10.118 14.0726C7.34396 14.1673 6.65931 12.7624 6.52727 10.8824C6.49194 10.3793 6.87792 9.94458 7.38195 9.92737ZM16.618 9.92737C13.844 9.83264 13.1593 11.2376 13.0273 13.1176C12.9919 13.6207 13.3779 14.0554 13.882 14.0726C16.656 14.1673 17.3406 12.7624 17.4727 10.8824C17.508 10.3793 17.122 9.94458 16.618 9.92737Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAlien;\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,gBAAm6B,EAAn6B,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gzBAAgzB,KAAK,eAAc,CAAI,GAG75B",
  "debugId": "1633396CBDBF56E064756E2164756E21",
  "names": []
}