{
  "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 d=\"M4.75 9.94444V21.25L8.375 19.75L12 21.25L15.625 19.75L19.25 21.25V9.94444C19.25 5.97106 16.0041 2.75 12 2.75C7.99594 2.75 4.75 5.97106 4.75 9.94444Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M10.25 10.5C10.25 10.9142 9.91421 11.25 9.5 11.25C9.08579 11.25 8.75 10.9142 8.75 10.5C8.75 10.0858 9.08579 9.75 9.5 9.75C9.91421 9.75 10.25 10.0858 10.25 10.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M15.25 10.5C15.25 10.9142 14.9142 11.25 14.5 11.25C14.0858 11.25 13.75 10.9142 13.75 10.5C13.75 10.0858 14.0858 9.75 14.5 9.75C14.9142 9.75 15.25 10.0858 15.25 10.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></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,gBAA8rB,EAA9rB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,uJAAuJ,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,mKAAmK,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,wKAAwK,OAAO,eAAe,YAAY,MAAK,CAAI,GAGxrB",
  "debugId": "CC9369BF5BEF154164756E2164756E21",
  "names": []
}