{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStrawberry/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 IconStrawberry: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconStrawberry\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13 2.58468C13.5821 2.30247 14.218 2.1234 14.8019 2.00539C16.3023 1.70215 17.7999 1.74655 19.3191 1.8092C19.2892 1.91101 19.2596 2.01257 19.23 2.11388C19.0114 2.8625 18.7968 3.59761 18.4964 4.3235C18.3314 4.72216 18.1001 5.22923 17.8064 5.69277C18.8496 6.27071 19.6227 7.04974 20.1462 7.99923C20.7695 9.12995 21 10.4312 21 11.7839C21 14.1329 19.737 16.6608 18.0896 18.5648C16.4618 20.4461 14.2094 22 12 22C9.79062 22 7.53823 20.4461 5.91044 18.5648C4.26301 16.6608 3 14.1329 3 11.7839C3 10.4312 3.2305 9.12995 3.85385 7.99923C4.37728 7.04974 5.15039 6.2707 6.19355 5.69277C5.89988 5.22923 5.66864 4.72216 5.50362 4.3235C5.20331 3.59798 4.98811 2.86086 4.76947 2.11198C4.74008 2.0113 4.7106 1.91031 4.68086 1.8092C6.20937 1.7399 7.66952 1.69645 9.19811 2.00539C9.78199 2.1234 10.4179 2.30245 11 2.58465V1H13V2.58468ZM13 11C13 11.8284 12.5523 12.5 12 12.5C11.4477 12.5 11 11.8284 11 11C11 10.1716 11.4477 9.5 12 9.5C12.5523 9.5 13 10.1716 13 11ZM8 12.5C8.55228 12.5 9 11.8284 9 11C9 10.1716 8.55228 9.5 8 9.5C7.44772 9.5 7 10.1716 7 11C7 11.8284 7.44772 12.5 8 12.5ZM17 11C17 11.8284 16.5523 12.5 16 12.5C15.4477 12.5 15 11.8284 15 11C15 10.1716 15.4477 9.5 16 9.5C16.5523 9.5 17 10.1716 17 11ZM14 17C14.5523 17 15 16.3284 15 15.5C15 14.6716 14.5523 14 14 14C13.4477 14 13 14.6716 13 15.5C13 16.3284 13.4477 17 14 17ZM11 15.5C11 16.3284 10.5523 17 10 17C9.44772 17 9 16.3284 9 15.5C9 14.6716 9.44772 14 10 14C10.5523 14 11 14.6716 11 15.5ZM8.18854 5.01882C7.95878 4.80066 7.69166 4.33493 7.44824 3.78467C7.86869 3.81671 8.33839 3.87218 8.80189 3.96586C9.49621 4.10619 10.0915 4.31586 10.4907 4.59408C10.852 4.8459 10.9975 5.10519 11 5.43922C10.6525 5.39945 10.3139 5.34476 9.97004 5.28921C9.80828 5.26308 9.64537 5.23677 9.47983 5.21173C9.10933 5.15569 8.6984 5.10053 8.27394 5.0999L8.18854 5.01882ZM14.0299 5.28921C13.6861 5.34475 13.3475 5.39945 13.0001 5.43921C13.0025 5.10518 13.1481 4.84589 13.5094 4.59408C13.9085 4.31586 14.5038 4.10618 15.1981 3.96586C15.6616 3.87219 16.1313 3.81671 16.5517 3.78467C16.3083 4.33493 16.0412 4.80066 15.8114 5.01882L15.726 5.0999C15.3016 5.10053 14.8906 5.15569 14.5201 5.21173C14.3546 5.23677 14.1917 5.26308 14.0299 5.28921Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconStrawberry;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAgxE,EAAhxE,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,unEAAunE,KAAK,eAAc,CAAI,EACxxE,EAEc",
  "debugId": "62E0FB4681C26D2864756E2164756E21",
  "names": []
}