{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCardNfc/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 IconCardNfc: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconCardNfc\"><Path d=\"M2.5 4.5H21.5V19.5H2.5V4.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M12.1367 8.24268C12.2652 8.36209 12.3877 8.48782 12.5037 8.61939C13.3244 9.54968 13.8222 10.7714 13.8222 12.1094C13.8222 13.4475 13.3244 14.6692 12.5037 15.5995C12.3877 15.7311 12.2652 15.8568 12.1367 15.9762\" stroke=\"currentColor\"/><Path d=\"M10.0508 10.4751C10.1075 10.5273 10.1614 10.5825 10.2124 10.6403C10.5579 11.0319 10.7675 11.5462 10.7675 12.1094C10.7675 12.6727 10.5579 13.187 10.2124 13.5786C10.1614 13.6364 10.1075 13.6915 10.0508 13.7438\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCardNfc;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAA4oB,EAA5oB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,8BAA8B,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,mNAAmN,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kNAAkN,OAAO,eAAc,CAAI,EACppB,EAEc",
  "debugId": "DBF2A20C8A17C10964756E2164756E21",
  "names": []
}