{
  "version": 3,
  "sources": ["src/IconFingerPrint1/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 IconFingerPrint1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconFingerPrint1\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.0154 3.01476C10.762 3.01476 9.5775 3.30331 8.52335 3.81713C8.26782 3.94168 7.95971 3.8355 7.83516 3.57997C7.71061 3.32444 7.81679 3.01633 8.07232 2.89178C9.26389 2.31099 10.6023 1.98535 12.0154 1.98535C16.9916 1.98535 21.0256 6.01939 21.0256 10.9956C21.0256 13.2249 20.8204 15.4067 20.4277 17.5231C20.3759 17.8026 20.1072 17.9871 19.8278 17.9353C19.5483 17.8834 19.3637 17.6148 19.4156 17.3353C19.7968 15.2806 19.9962 13.1616 19.9962 10.9956C19.9962 6.58792 16.4231 3.01476 12.0154 3.01476ZM5.41238 5.62497C5.64321 5.79087 5.69585 6.11248 5.52995 6.34332C4.58868 7.653 4.03449 9.25883 4.03449 10.9956C4.03449 12.5093 3.85327 13.9813 3.5111 15.3908C3.44404 15.6671 3.16574 15.8367 2.8895 15.7696C2.61326 15.7025 2.44368 15.4242 2.51074 15.148C2.83376 13.8173 3.00508 12.4268 3.00508 10.9956C3.00508 9.03619 3.63113 7.22146 4.69404 5.74254C4.85994 5.51171 5.18155 5.45907 5.41238 5.62497ZM12.0154 7.26255C9.95363 7.26255 8.28228 8.9339 8.28228 10.9956C8.28228 12.2906 8.17433 13.5608 7.96684 14.7976C7.91981 15.0779 7.65442 15.2671 7.37407 15.22C7.09372 15.173 6.90458 14.9076 6.95162 14.6273C7.1497 13.4466 7.25286 12.2333 7.25286 10.9956C7.25286 8.36537 9.3851 6.23313 12.0154 6.23313C14.6456 6.23313 16.7778 8.36537 16.7778 10.9956C16.7778 11.6611 16.7571 12.3218 16.7161 12.9772C16.6984 13.2609 16.4541 13.4765 16.1703 13.4588C15.8866 13.4411 15.671 13.1967 15.6887 12.913C15.7283 12.279 15.7484 11.6397 15.7484 10.9956C15.7484 8.9339 14.0771 7.26255 12.0154 7.26255ZM12.0158 10.4809C12.3001 10.4809 12.5305 10.7114 12.5305 10.9956C12.5305 13.983 12.0463 16.8582 11.1517 19.5466C10.9215 20.2383 10.6642 20.9176 10.381 21.5833C10.2697 21.8448 9.96739 21.9667 9.70582 21.8554C9.44425 21.7441 9.32243 21.4418 9.43373 21.1802C9.70611 20.5401 9.95358 19.8868 10.1749 19.2216C11.0351 16.6367 11.5011 13.8711 11.5011 10.9956C11.5011 10.7114 11.7315 10.4809 12.0158 10.4809ZM15.8521 16.0662C16.1317 16.1174 16.3169 16.3855 16.2658 16.6651C16.1224 17.4486 15.95 18.222 15.7495 18.984C15.5285 19.8238 15.2736 20.6499 14.9861 21.4606C14.8911 21.7286 14.5969 21.8688 14.329 21.7738C14.0611 21.6788 13.9209 21.3846 14.0159 21.1167C14.2938 20.3328 14.5403 19.5341 14.754 18.722C14.9478 17.9853 15.1146 17.2375 15.2532 16.4799C15.3043 16.2003 15.5724 16.0151 15.8521 16.0662ZM6.77363 17.6195C7.04307 17.7101 7.18806 18.002 7.09746 18.2714C6.93026 18.7687 6.74639 19.2583 6.54653 19.7396C6.43751 20.0021 6.13631 20.1266 5.87379 20.0176C5.61126 19.9086 5.48681 19.6074 5.59583 19.3448C5.78662 18.8854 5.96213 18.418 6.12173 17.9433C6.21232 17.6739 6.50419 17.5289 6.77363 17.6195Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFingerPrint1;\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,EAAqE,EAAM,KAAK,CAAC,IACrF,gBAAsqF,EAAtqF,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4gFAA4gF,KAAK,eAAc,CAAI,CAC9qF,EAEc",
  "debugId": "6F988883AAFC5B2764756E2164756E21",
  "names": []
}