{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGhost/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 IconGhost: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"ghost, hidden, unknown, horror\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C7.58717 2 4 5.55941 4 9.96231V20.2433C4 21.6184 5.50712 22.4587 6.67289 21.7335L7.36933 21.3002C8.02375 20.8931 8.84046 20.8498 9.53409 21.1854L10.3697 21.5897C11.3997 22.0881 12.6003 22.0881 13.6303 21.5897L14.4659 21.1854C15.1595 20.8498 15.9763 20.8931 16.6307 21.3002L17.3271 21.7335C18.4929 22.4587 20 21.6184 20 20.2433V9.96231C20 5.55941 16.4128 2 12 2ZM11 10.5C11 11.3284 10.3284 12 9.5 12C8.67157 12 8 11.3284 8 10.5C8 9.67157 8.67157 9 9.5 9C10.3284 9 11 9.67157 11 10.5ZM14.5 12C15.3284 12 16 11.3284 16 10.5C16 9.67157 15.3284 9 14.5 9C13.6716 9 13 9.67157 13 10.5C13 11.3284 13.6716 12 14.5 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconGhost;\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,gBAAovB,EAApvB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wmBAAwmB,KAAK,eAAc,CAAI,GAG9uB",
  "debugId": "1957E5F823CF6AA964756E2164756E21",
  "names": []
}