{
  "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.55142 4 9.94444V21.25C4 21.5004 4.125 21.7344 4.33321 21.8735C4.54142 22.0127 4.80535 22.0388 5.03676 21.943L8.375 20.5617L11.7132 21.943C11.8969 22.019 12.1031 22.019 12.2868 21.943L15.625 20.5617L18.9632 21.943C19.1946 22.0388 19.4586 22.0127 19.6668 21.8735C19.875 21.7344 20 21.5004 20 21.25V9.94444C20 5.55142 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,gBAAouB,EAApuB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wlBAAwlB,KAAK,eAAc,CAAI,GAG9tB",
  "debugId": "D26FF3374B8C0EB164756E2164756E21",
  "names": []
}