{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCherry/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 IconCherry: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCherry\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17 1C15.0081 1 13.3563 2.45589 13.0506 4.36158C12.31 3.5808 11.4913 2.86143 10.6102 2.20018L10.3422 1.99907L8.67975 2.00371L9.03754 3.27162C9.84675 6.13917 9.63687 8.49162 8.14217 10.986L8.07906 11.0913C6.93637 10.6052 5.81444 10.6108 4.81669 11.0743C3.51747 11.6778 2.66039 12.9542 2.2657 14.3082C1.86712 15.6756 1.89133 17.2705 2.51384 18.6772C3.15003 20.1147 4.39161 21.304 6.29654 21.8144C8.35613 22.3663 10.4763 21.8825 11.9445 20.5366C13.0227 21.4633 14.4558 22 16 22C19.2451 22 22 19.6299 22 16.25C22 14.0825 21.3052 12.4835 19.9563 11.6648C19.0139 11.0928 17.9154 11.0041 16.8486 11.2094C16.5701 10.0657 16.1661 8.99716 15.654 8H16C18.2091 8 20 6.20914 20 4V1H17ZM11.5702 12.0065C11.1044 11.8003 10.6007 11.6781 10.0821 11.6256C11.1876 9.63728 11.6146 7.67981 11.4795 5.61225C13.0116 7.19183 14.1468 9.02516 14.7628 11.1481C13.8208 11.0326 12.8719 11.162 12.0436 11.6648C11.8756 11.7667 11.7178 11.8808 11.5702 12.0065Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCherry;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAwjC,EAAxjC,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,m6BAAm6B,KAAK,eAAc,CAAI,EAChkC,EAEc",
  "debugId": "23C1F31F78624A1B64756E2164756E21",
  "names": []
}