{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBean/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 IconBean: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBean\"><Path d=\"M19.6354 4.1678C15.9861 0.647322 9.74973 1.59127 5.6705 5.6705C2.15256 9.18844 0.966453 14.3107 2.96468 17.9944C3.89164 15.9103 5.08208 14.4894 6.44719 13.4654C8.10079 12.2251 9.95207 11.6188 11.632 11.0687L11.691 11.0494C13.4306 10.4797 14.9906 9.96042 16.3616 8.9337C17.6175 7.9932 18.7687 6.58014 19.6354 4.1678Z\" fill=\"currentColor\"/><Path d=\"M4.37837 19.8454C8.02964 23.3495 14.255 22.4027 18.3288 18.3288C21.8411 14.8165 23.0291 9.70493 21.0442 6.02256C20.1145 8.09769 18.9238 9.51358 17.5604 10.5346C15.9055 11.7739 14.0544 12.38 12.3752 12.9299L12.3135 12.9501C10.574 13.5198 9.01558 14.039 7.6473 15.0653C6.39143 16.0074 5.24129 17.4239 4.37837 19.8454Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBean;\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,EAA6D,EAAM,KAAK,CAAC,IAAU,CAC9F,OAAO,gBAAswB,EAAtwB,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,EAAE,8TAA8T,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8TAA8T,KAAK,eAAc,CAAI,EAC9wB,EAEc",
  "debugId": "958C8E864AE8EE7764756E2164756E21",
  "names": []
}