{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSilverMedal/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSilverMedal: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSilverMedal\"><Path d=\"M16.5 23.2812L12 22.0303L7.5 23.2812V18.1182C8.83945 18.84 10.3718 19.25 12 19.25C13.6282 19.25 15.1605 18.84 16.5 18.1182V23.2812Z\" 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.918 5.50879C11.3566 5.50885 10.8633 5.61223 10.4385 5.81836C10.0159 6.02219 9.68777 6.31358 9.4541 6.69141C9.22046 7.0692 9.10354 7.51765 9.10352 8.03711H10.8516C10.8516 7.80606 10.8955 7.60976 10.9824 7.44824C11.0719 7.28666 11.1964 7.16362 11.3555 7.0791C11.5146 6.9921 11.6998 6.94824 11.9111 6.94824C12.1199 6.94826 12.3053 6.98928 12.4668 7.07129C12.6283 7.15328 12.7547 7.27037 12.8467 7.42188C12.9387 7.57102 12.9844 7.7516 12.9844 7.96289C12.9844 8.1517 12.9461 8.32678 12.8691 8.48828C12.7921 8.64737 12.6799 8.80673 12.5332 8.96582C12.3866 9.12235 12.2087 9.29557 12 9.48438L9.21484 11.9229V13.25H14.8682V11.7627H11.7734V11.7139L12.6865 10.8711C13.2406 10.3891 13.668 9.97531 13.9688 9.62988C14.272 9.28441 14.4828 8.96845 14.5996 8.68262C14.7164 8.39678 14.7744 8.10819 14.7744 7.81738C14.7744 7.36001 14.6561 6.9588 14.4199 6.61328C14.1863 6.26528 13.8563 5.9937 13.4287 5.7998C13.0012 5.60591 12.4972 5.50879 11.918 5.50879Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSilverMedal;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAA23C,EAA33C,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,sIAAsI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8jCAA8jC,KAAK,eAAc,CAAI,EACn4C,EAEc",
  "debugId": "EEE2B2DA316367B864756E2164756E21",
  "names": []
}