{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconUserHeart/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 IconUserHeart: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconUserHeart\"><Path d=\"M18 14C18.9164 13.6165 19.892 13.4387 20.6875 13.8936C21.633 14.4343 22.2529 15.4687 22.2529 16.6904C22.2527 18.3433 21.111 19.5058 20.2285 20.1699C19.5451 20.6841 18.7938 21.0659 18.001 21.3779C17.2087 21.0652 16.4576 20.684 15.7744 20.1699C14.8919 19.5059 13.7502 18.3434 13.75 16.6904C13.75 15.7161 14.145 14.8619 14.7842 14.2812C14.7697 14.2944 14.7545 14.3069 14.7402 14.3203C14.7666 14.2955 14.7931 14.271 14.8203 14.2471L14.8506 14.2217C14.9946 14.0984 15.1499 13.9882 15.3154 13.8936C16.1108 13.4388 17.0837 13.6168 18 14Z\" fill=\"currentColor\"/><Path d=\"M7.83105 12.1699C8.95551 13.1237 10.4101 13.7002 12 13.7002C12.3751 13.7002 12.7422 13.6661 13.0996 13.6045C12.4328 14.4529 12.0499 15.5293 12.0498 16.6904C12.0503 18.6954 13.1619 20.1277 14.1152 21H4V19C4 16.109 5.53311 13.5755 7.83105 12.1699Z\" fill=\"currentColor\"/><Path d=\"M12 2.5C14.6234 2.5 16.75 4.62665 16.75 7.25C16.75 9.87335 14.6234 12 12 12C9.37665 12 7.25 9.87335 7.25 7.25C7.25 4.62665 9.37665 2.5 12 2.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconUserHeart;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAA0kC,EAA1kC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,qhBAAqhB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wPAAwP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iJAAiJ,KAAK,eAAc,CAAI,EACllC,EAEc",
  "debugId": "567A44934668712964756E2164756E21",
  "names": []
}