{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMedal/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 IconMedal: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"medal, trophy, badge, winner, win\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1C7.58172 1 4 4.58172 4 9C4 11.5264 5.17108 13.7793 7 15.2454V22.25C7 22.5068 7.13135 22.7457 7.34814 22.8832C7.56493 23.0208 7.83703 23.0379 8.06935 22.9286L12 21.0789L15.9307 22.9286C16.163 23.0379 16.4351 23.0208 16.6519 22.8832C16.8687 22.7457 17 22.5068 17 22.25V15.2454C18.8289 13.7793 20 11.5264 20 9C20 4.58172 16.4183 1 12 1ZM8.5 16.1958C9.5572 16.7109 10.7448 17 12 17C13.2552 17 14.4428 16.7109 15.5 16.1958V21.0682L12.3193 19.5714C12.1171 19.4762 11.8829 19.4762 11.6807 19.5714L8.5 21.0682V16.1958Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMedal;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAqpB,EAArpB,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sgBAAsgB,KAAK,eAAc,CAAI,GAG/oB",
  "debugId": "4B08B3537536E7B264756E2164756E21",
  "names": []
}