{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBug/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 IconBug: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bug, issue\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17 7H18.25C18.6642 7 19 7.33579 19 7.75V8.88818L20.7584 8.28996C21.1506 8.15656 21.5766 8.36631 21.71 8.75845C21.8434 9.15059 21.6337 9.57663 21.2416 9.71004L19 10.4726V13H21.2504C21.6646 13 22.0004 13.3358 22.0004 13.75C22.0004 14.1642 21.6646 14.5 21.2504 14.5H19V15C19 15.5902 18.927 16.1633 18.7894 16.7108C18.8169 16.7168 18.8443 16.7244 18.8716 16.7337L21.2416 17.54C21.6337 17.6734 21.8434 18.0994 21.71 18.4916C21.5766 18.8837 21.1506 19.0934 20.7584 18.96L18.3884 18.1538C18.3489 18.1403 18.3112 18.1239 18.2755 18.1048C17.2367 20.2005 15.1789 21.7016 12.75 21.9603V13.75C12.75 13.3358 12.4142 13 12 13C11.5858 13 11.25 13.3358 11.25 13.75V21.9603C8.82112 21.7016 6.76343 20.2006 5.72457 18.1049C5.68896 18.124 5.65135 18.1404 5.61188 18.1538L3.24152 18.96C2.84937 19.0934 2.42334 18.8837 2.28995 18.4915C2.15656 18.0994 2.36633 17.6733 2.75848 17.54L5.12884 16.7337C5.15597 16.7245 5.18325 16.7169 5.21058 16.7109C5.07304 16.1633 5 15.5902 5 15V14.5H2.75C2.33579 14.5 2 14.1642 2 13.75C2 13.3358 2.33579 13 2.75 13H5V10.4725L2.75848 9.71005C2.36633 9.57666 2.15656 9.15063 2.28995 8.75848C2.42334 8.36633 2.84937 8.15656 3.24152 8.28995L5 8.88809V7.75C5 7.33579 5.33579 7 5.75 7H7C7 4.23858 9.23858 2 12 2C14.7614 2 17 4.23858 17 7ZM12 3.5C10.067 3.5 8.5 5.067 8.5 7H15.5C15.5 5.067 13.933 3.5 12 3.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBug;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAA25C,EAA35C,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,myCAAmyC,KAAK,eAAc,CAAI,GAGr5C",
  "debugId": "9594EF17926F927564756E2164756E21",
  "names": []
}