{
  "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.1644 6.05L19.4253 5.15C17.2522 3.98069 15.2435 3.10528 12.5071 2.58993C12.1898 2.53016 11.8645 2.63422 11.6397 2.86611C9.25617 5.32538 6.6194 8.80769 5.65995 12.2062C5.53073 12.6639 5.12505 13 4.64945 13H3C2.44772 13 1.98656 13.453 2.09103 13.9954C2.51693 16.2063 4.33419 17.0475 5.33398 17.3472C5.72957 17.4658 6.05407 17.7711 6.23621 18.1418C7.05717 19.8124 9.33067 21 12.0002 21C14.6696 21 16.9429 19.8124 17.7638 18.1418C17.9459 17.7711 18.2704 17.4658 18.666 17.3472C19.6658 17.0475 21.4831 16.2063 21.909 13.9954C22.0134 13.453 21.5523 13 21 13H19.3509C18.8753 13 18.4688 12.6643 18.3421 12.2059C17.7495 10.0629 16.4906 7.60251 15.1644 6.05Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><path d=\"M17.75 11C12.7715 10 11.2285 10 6.25 11\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"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,gBAAi6B,EAAj6B,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,8oBAA8oB,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,0CAA0C,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG35B",
  "debugId": "C7BD1D5049EABEEC64756E2164756E21",
  "names": []
}