{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGoldMedal/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 IconGoldMedal: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"gold-medal, first-place, win\"><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\"/><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.7314 5.75C11.54 5.75007 11.3525 5.8048 11.1914 5.9082L9.70703 6.8623C9.54691 6.96533 9.45026 7.1426 9.4502 7.33301C9.4502 7.77535 9.93876 8.04282 10.3115 7.80469L11.3125 7.16602C11.3183 7.16236 11.3252 7.16016 11.332 7.16016C11.3519 7.16034 11.3681 7.17643 11.3682 7.19629V13.0254C11.3682 13.4256 11.6926 13.75 12.0928 13.75C12.4929 13.7499 12.8174 13.4255 12.8174 13.0254V6.75C12.8174 6.19778 12.3696 5.75011 11.8174 5.75H11.7314Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconGoldMedal;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA4/B,EAA5/B,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,iRAAiR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,okBAAokB,KAAK,eAAc,CAAI,GAGt/B",
  "debugId": "BE7E926B016DAFAA64756E2164756E21",
  "names": []
}