{
  "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 7.43252V7C17 4.23858 14.7614 2 12 2C9.23858 2 7 4.23858 7 7V7.43252C6.32304 7.79037 5.76881 8.34935 5.41689 9.02989L3.24152 8.28995C2.84937 8.15656 2.42334 8.36633 2.28995 8.75848C2.15656 9.15063 2.36633 9.57666 2.75848 9.71005L5.00987 10.4758C5.00333 10.5664 5 10.6578 5 10.75V13H2.75C2.33579 13 2 13.3358 2 13.75C2 14.1642 2.33579 14.5 2.75 14.5H5V15C5 15.5902 5.07304 16.1633 5.21058 16.7109C5.18325 16.7169 5.15596 16.7245 5.12884 16.7337L2.75848 17.54C2.36633 17.6733 2.15656 18.0994 2.28995 18.4915C2.42334 18.8837 2.84937 19.0934 3.24152 18.96L5.61188 18.1538C5.65135 18.1404 5.68896 18.124 5.72457 18.1049C6.76343 20.2006 8.82112 21.7016 11.25 21.9603V13.75C11.25 13.3358 11.5858 13 12 13C12.4142 13 12.75 13.3358 12.75 13.75V21.9603C15.1789 21.7016 17.2367 20.2005 18.2755 18.1048C18.3112 18.1239 18.3489 18.1403 18.3884 18.1538L20.7584 18.96C21.1506 19.0934 21.5766 18.8837 21.71 18.4916C21.8434 18.0994 21.6337 17.6734 21.2416 17.54L18.8716 16.7337C18.8443 16.7244 18.8169 16.7168 18.7894 16.7108C18.927 16.1633 19 15.5902 19 15V14.5H21.2504C21.6646 14.5 22.0004 14.1642 22.0004 13.75C22.0004 13.3358 21.6646 13 21.2504 13H19V10.75C19 10.6578 18.9967 10.5665 18.9901 10.476L21.2416 9.71004C21.6337 9.57663 21.8434 9.15059 21.71 8.75845C21.5766 8.36631 21.1506 8.15656 20.7584 8.28996L18.5832 9.02999C18.2312 8.3494 17.677 7.79038 17 7.43252ZM12 3.5C10.067 3.5 8.5 5.067 8.5 7V7.0082C8.58263 7.00276 8.66599 7 8.75 7H15.25C15.334 7 15.4174 7.00276 15.5 7.0082V7C15.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,gBAA4lD,EAA5lD,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,o+CAAo+C,KAAK,eAAc,CAAI,GAGtlD",
  "debugId": "95CAFDA84B0D130E64756E2164756E21",
  "names": []
}