{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGoblin/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 IconGoblin: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"goblin, troll, agent, helper\"><path d=\"M15.1937 5.89595L19.5611 4.97162C17.1984 3.69775 15.0252 2.76351 11.9504 2.25C9.22806 4.97738 6.04723 9.11691 5.25372 13.0338H1.7002C1.7002 17.1419 5.8002 17.6554 5.8002 17.6554C6.3127 19.7095 8.8752 21.25 11.9504 21.25C15.0255 21.25 17.5877 19.7095 18.1002 17.6554C18.1002 17.6554 22.2002 17.1419 22.2002 13.0338H18.647C18.1682 10.6703 16.7247 7.69173 15.1937 5.89595Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M18 11.2502C13 10.25 11 10.2499 6 11.2502\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconGoblin;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAA+lB,EAA/lB,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,oXAAoX,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,4CAA4C,OAAO,eAAe,YAAY,MAAM,cAAc,QAAO,CAAI,GAGzlB",
  "debugId": "4FBB19BAFC62F55B64756E2164756E21",
  "names": []
}