{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconNfc1/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 IconNfc1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconNfc1\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13.3347 1.36865L14.0188 2.09801C16.4897 4.73221 17.9992 8.19728 17.9992 11.9998C17.9992 15.8023 16.4897 19.2674 14.0188 21.9016L13.3347 22.631L11.876 21.2627L12.5601 20.5334C14.709 18.2424 15.9992 15.2575 15.9992 11.9998C15.9992 8.74212 14.709 5.75728 12.5601 3.46627L11.876 2.73692L13.3347 1.36865ZM10.5489 3.5206L11.1921 4.28635C12.9435 6.37168 13.9992 9.06376 13.9992 11.9998C13.9992 14.9359 12.9435 17.628 11.1921 19.7133L10.5489 20.479L9.01743 19.1928L9.66057 18.427C11.1207 16.6885 11.9992 14.4481 11.9992 11.9998C11.9992 9.55157 11.1207 7.31112 9.66057 5.57262L9.01743 4.80687L10.5489 3.5206ZM7.29744 5.92321L7.96406 6.66861C9.22898 8.08302 9.99921 9.95266 9.99921 11.9998C9.99921 14.047 9.22897 15.9166 7.96406 17.331L7.29744 18.0764L5.80664 16.7432L6.47326 15.9978C7.42298 14.9358 7.99921 13.5363 7.99921 11.9998C7.99921 10.4633 7.42298 9.06381 6.47326 8.00185L5.80664 7.25645L7.29744 5.92321Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconNfc1;\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,gBAA6hC,EAA7hC,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,04BAA04B,KAAK,eAAc,CAAI,EACriC,EAEc",
  "debugId": "16ECB034A6E93F8D64756E2164756E21",
  "names": []
}