{
  "version": 3,
  "sources": ["src/IconNfc2/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconNfc2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconNfc2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.3279 4.42865C19.5663 4.28941 19.8725 4.36984 20.0118 4.60831C21.275 6.77171 22 9.29835 22 11.9954C22 14.6925 21.275 17.2192 20.0118 19.3826C19.8725 19.621 19.5663 19.7015 19.3279 19.5622C19.0894 19.423 19.009 19.1168 19.1482 18.8783C20.3241 16.8645 21 14.5114 21 11.9954C21 9.47951 20.3241 7.12639 19.1482 5.11256C19.009 4.87409 19.0894 4.5679 19.3279 4.42865ZM15.9421 7.01958C16.1869 6.89191 16.4889 6.98691 16.6166 7.23177C17.358 8.65382 17.7776 10.2756 17.7776 11.9954C17.7776 13.7152 17.358 15.337 16.6166 16.7591C16.4889 17.004 16.1869 17.099 15.9421 16.9713C15.6972 16.8436 15.6022 16.5416 15.7299 16.2968C16.3984 15.0146 16.7776 13.551 16.7776 11.9954C16.7776 10.4398 16.3984 8.97628 15.7299 7.6941C15.6022 7.44924 15.6972 7.14725 15.9421 7.01958ZM10.5482 7.39081C10.716 7.17152 11.0298 7.12979 11.2491 7.29762C12.6508 8.37033 13.5559 10.0768 13.5559 11.9955C13.5559 12.7219 13.4261 13.4186 13.1883 14.0623C12.7986 15.1168 12.1196 16.0274 11.2488 16.6937C11.0778 16.8245 10.8423 16.8312 10.6641 16.7102L6.44149 13.8429C6.21304 13.6878 6.1536 13.3768 6.30872 13.1484C6.46385 12.9199 6.7748 12.8605 7.00326 13.0156L10.9161 15.6726C11.5061 15.1477 11.9689 14.4771 12.2503 13.7157C12.4476 13.1815 12.5559 12.6021 12.5559 11.9955C12.5559 10.397 11.803 8.98072 10.6414 8.09175C10.4221 7.92393 10.3804 7.61011 10.5482 7.39081ZM4.3068 7.29762C4.47781 7.16675 4.7134 7.16006 4.89155 7.28103L9.11443 10.1484C9.34289 10.3035 9.40233 10.6145 9.24721 10.8429C9.09209 11.0714 8.78114 11.1308 8.55268 10.9757L4.63965 8.31873C4.04972 8.84363 3.58692 9.51415 3.30561 10.2755C3.10827 10.8097 3 11.3891 3 11.9955C3 13.594 3.75292 15.0104 4.91454 15.8993C5.13384 16.0672 5.17556 16.381 5.00774 16.6003C4.83992 16.8196 4.5261 16.8613 4.3068 16.6935C2.90509 15.6208 2 13.9143 2 11.9955C2 11.2693 2.12978 10.5726 2.36759 9.92897C2.75719 8.8745 3.43611 7.96394 4.3068 7.29762Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconNfc2;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAA6D,EAAM,KAAK,CAAC,IAC7E,gBAA49D,EAA59D,IAAqB,EAAO,OAAO,2CAA0C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,00DAA00D,KAAK,eAAc,CAAI,CACp+D,EAEc",
  "debugId": "4D1B24E03898FDA364756E2164756E21",
  "names": []
}