{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMoneyHand/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 IconMoneyHand: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconMoneyHand\"><Path d=\"M3.5 20.4999H4.53125C4.53125 20.4999 8.5216 21.7578 11 21.4999C13.729 21.216 18.3535 18.0845 19.9436 16.9562C20.2972 16.7052 20.5 16.2985 20.5 15.8649C20.5 14.9392 19.603 14.2785 18.7189 14.553L11 16.9499\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M3.5 14.4999L7 13.4998C7.95495 13.158 8.97278 13.0278 9.98303 13.1182L14.1309 13.4894C14.4441 13.5174 14.654 13.8242 14.5666 14.1263L14.5526 14.175C14.183 15.4526 13.2173 16.2319 11.9514 16.6397L11 16.9462\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M12.74 4.27662C12.2718 3.22958 11.2211 2.5 10 2.5C8.34315 2.5 7 3.84315 7 5.5C7 7.15685 8.34315 8.5 10 8.5C10.45 8.5 10.8769 8.40092 11.26 8.22338M12.74 4.27662C12.9071 4.65023 13 5.06427 13 5.5C13 6.70685 12.2874 7.74726 11.26 8.22338M12.74 4.27662C13.1231 4.09908 13.55 4 14 4C15.6569 4 17 5.34315 17 7C17 8.65685 15.6569 10 14 10C12.7789 10 11.7282 9.27042 11.26 8.22338\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMoneyHand;\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,gBAAy/B,EAAz/B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,+MAA+M,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,gNAAgN,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,wXAAwX,OAAO,eAAc,CAAI,EACjgC,EAEc",
  "debugId": "512DF4A8AF7BC65F64756E2164756E21",
  "names": []
}