{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBronceMedal/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 IconBronceMedal: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bronce-medal, third-place\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1.5C16.5563 1.5 20.25 5.19365 20.25 9.75C20.25 14.3063 16.5563 18 12 18C7.44365 18 3.75 14.3063 3.75 9.75C3.75 5.19365 7.44365 1.5 12 1.5ZM11.7939 5.75C11.2719 5.75 10.8028 5.8457 10.3877 6.03711C9.97509 6.22603 9.64691 6.48866 9.40332 6.82422C9.31439 6.94677 9.24104 7.07642 9.18359 7.21289C9.0143 7.61553 9.3854 7.9873 9.82227 7.9873H10.0293C10.3334 7.98711 10.5651 7.72283 10.749 7.48047C10.8584 7.33635 11.0042 7.22549 11.1855 7.14844C11.367 7.06889 11.5674 7.0293 11.7861 7.0293C12.0023 7.02931 12.191 7.07035 12.3525 7.15234C12.5166 7.23438 12.6439 7.34846 12.7334 7.49512C12.8252 7.63916 12.871 7.80687 12.8711 7.99805C12.8711 8.1994 12.8192 8.37669 12.7148 8.52832C12.6105 8.67738 12.4632 8.79344 12.2744 8.87793C12.0881 8.9624 11.8733 9.00483 11.6299 9.00488H11.5098C11.1826 9.00507 10.9172 9.27051 10.917 9.59766C10.917 9.92497 11.1825 10.1902 11.5098 10.1904H11.6299C11.918 10.1905 12.1663 10.2358 12.375 10.3252C12.5863 10.4147 12.7485 10.5392 12.8604 10.6982C12.9744 10.8547 13.0312 11.0348 13.0312 11.2383C13.0312 11.4395 12.9779 11.6174 12.8711 11.7715C12.7642 11.9256 12.6166 12.0468 12.4277 12.1338C12.2388 12.2208 12.0205 12.2637 11.7744 12.2637C11.5386 12.2636 11.3264 12.2253 11.1377 12.1484C10.9489 12.0714 10.7969 11.9633 10.6826 11.8242C10.4972 11.5894 10.2651 11.332 9.96582 11.332H9.71484C9.25267 11.3323 8.85958 11.7273 9.04785 12.1494C9.1041 12.2755 9.17441 12.3955 9.25781 12.5098C9.50882 12.8478 9.85082 13.1137 10.2832 13.3076C10.7182 13.499 11.2147 13.5947 11.7715 13.5947C12.3429 13.5947 12.8497 13.4984 13.292 13.3047C13.7344 13.1108 14.082 12.8448 14.333 12.5068C14.5866 12.1688 14.7115 11.7817 14.709 11.3467C14.7115 10.872 14.5652 10.4768 14.2695 10.1611C13.9816 9.84882 13.5641 9.65529 13.0176 9.58008C13.0002 9.5777 12.9863 9.56241 12.9863 9.54492C12.9864 9.52815 12.9991 9.51392 13.0156 9.51074C13.4299 9.43081 13.7674 9.25107 14.0273 8.97168C14.2957 8.68584 14.4283 8.32886 14.4258 7.90137C14.4283 7.4987 14.3189 7.13563 14.0977 6.8125C13.8789 6.48696 13.5719 6.22848 13.1768 6.03711C12.7816 5.84578 12.3207 5.75005 11.7939 5.75Z\" fill=\"currentColor\"/><path d=\"M16.5 22.2939C16.5 22.79 16.0268 23.1495 15.5488 23.0166L12.2012 22.0859C12.0697 22.0494 11.9303 22.0494 11.7988 22.0859L8.45117 23.0166C7.97324 23.1495 7.5 22.79 7.5 22.2939V18.3984C8.84659 19.1005 10.3763 19.5 12 19.5C13.6237 19.5 15.1534 19.1005 16.5 18.3984V22.2939Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBronceMedal;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAi9E,EAAj9E,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4hEAA4hE,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iRAAiR,KAAK,eAAc,CAAI,GAG38E",
  "debugId": "671791009333F54564756E2164756E21",
  "names": []
}