{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPayment/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconPayment: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconPayment\"><Path d=\"M20.1036 14.5425C20.1987 14.0411 20.2484 13.5236 20.2484 12.9946C20.2484 10.9198 19.4831 9.02379 18.2193 7.57348M4.14844 10.4147C4.93178 8.03144 6.77094 6.12722 9.1126 5.25537M13.5407 21.1052C13.0394 21.2004 12.5219 21.2501 11.9929 21.2501C10.0389 21.2501 8.24343 20.5713 6.82952 19.4365\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Circle cx=\"12\" cy=\"5.25\" r=\"2.75\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M3.69554 14.8688C5.01063 14.1096 6.69222 14.5601 7.45148 15.8752C8.21075 17.1903 7.76017 18.8719 6.44508 19.6312C5.13 20.3904 3.44841 19.9399 2.68914 18.6248C1.92988 17.3097 2.38046 15.6281 3.69554 14.8688Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M17.5471 19.6312C16.232 18.8719 15.7814 17.1903 16.5407 15.8752C17.3 14.5601 18.9816 14.1096 20.2966 14.8688C21.6117 15.6281 22.0623 17.3097 21.303 18.6248C20.5438 19.9399 18.8622 20.3904 17.5471 19.6312Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconPayment;\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,iBAAS,UAAQ,yBAEV,IAAM,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAA0gC,EAA1gC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,kSAAkS,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,OAAO,EAAE,OAAO,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,iNAAiN,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,+MAA+M,OAAO,eAAe,cAAc,SAAQ,CAAI,EAClhC,EAEc",
  "debugId": "36D721CBFB845E8964756E2164756E21",
  "names": []
}