{
  "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-outlined-radius-0-stroke-1-IconCherry\"><Path d=\"M15.9994 11.75C15.2415 7.76824 13.0431 4.90324 10.0094 2.5L9.99936 2.50003C10.874 5.77156 10.7253 8.83793 9.07218 11.75\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M21.5 16.1576C21.5 19.2634 19.0376 21.5 16 21.5C12.9624 21.5 10.5 19.2634 10.5 16.1576C10.5 11.7177 13.25 10.8152 16 11.9399C18.75 10.8152 21.5 11.7177 21.5 16.1576Z\" stroke=\"currentColor\"/><Path d=\"M11.6687 12.2859C10.9137 11.9682 9.99597 11.8943 9.02469 12.0351C6.62846 10.2768 3.74182 10.4873 2.66771 14.7998C1.91635 17.8164 3.76456 20.5852 6.7119 21.3208C8.70534 21.8183 10.691 21.2583 12 19.9104\" stroke=\"currentColor\"/><Path d=\"M14.4524 6.5H15.5C17.1569 6.5 18.5 5.15685 18.5 3.5V1.5H16.5C14.8431 1.5 13.5 2.84315 13.5 4.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,gBAAi1B,EAAj1B,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,0HAA0H,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,wKAAwK,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4MAA4M,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qGAAqG,OAAO,eAAe,cAAc,SAAQ,CAAI,EACz1B,EAEc",
  "debugId": "44966B03B210C8CB64756E2164756E21",
  "names": []
}