{
  "version": 3,
  "sources": ["src/IconFingerPrint2/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 IconFingerPrint2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconFingerPrint2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.5 10.5C3.5 5.80558 7.30558 2 12 2C12.5441 2 13.0767 2.05119 13.5932 2.14916C13.8645 2.20062 14.0427 2.46228 13.9912 2.73358C13.9398 3.00488 13.6781 3.1831 13.4068 3.13164C12.9515 3.04527 12.4813 3 12 3C7.85786 3 4.5 6.35786 4.5 10.5V11.5C4.5 11.7761 4.27614 12 4 12C3.72386 12 3.5 11.7761 3.5 11.5V10.5ZM16.0868 3.60308C16.2424 3.3749 16.5534 3.316 16.7816 3.47152C19.0252 5.00064 20.5 7.57802 20.5 10.5V13.5C20.5 15.0474 20.0861 16.4996 19.3625 17.7504C19.2243 17.9894 18.9184 18.0711 18.6794 17.9328C18.4403 17.7945 18.3587 17.4887 18.4969 17.2496C19.1348 16.147 19.5 14.8669 19.5 13.5V10.5C19.5 7.92264 18.2004 5.64867 16.2184 4.29784C15.9902 4.14232 15.9313 3.83127 16.0868 3.60308ZM9.22187 6.84227C10.0166 6.31026 10.9728 6 12 6C14.7614 6 17 8.23858 17 11V13C17 13.5835 16.8998 14.1447 16.7154 14.6666C16.6233 14.927 16.3377 15.0634 16.0773 14.9714C15.817 14.8794 15.6805 14.5937 15.7725 14.3334C15.9197 13.917 16 13.4684 16 13V11C16 8.79086 14.2091 7 12 7C11.177 7 10.4135 7.24801 9.77813 7.67328C9.54865 7.82689 9.2381 7.76538 9.0845 7.5359C8.93089 7.30643 8.99239 6.99588 9.22187 6.84227ZM7.72215 9.5124C7.99145 9.5735 8.16022 9.84135 8.09911 10.1106C8.03432 10.3962 8 10.6938 8 11V13C8 15.2091 9.79086 17 12 17C12.6395 17 13.2426 16.8503 13.7775 16.5845C14.0248 16.4616 14.3249 16.5624 14.4478 16.8097C14.5706 17.057 14.4698 17.3571 14.2225 17.48C13.5524 17.813 12.7973 18 12 18C9.23858 18 7 15.7614 7 13V11C7 10.6188 7.04274 10.247 7.1239 9.88936C7.18501 9.62006 7.45286 9.45129 7.72215 9.5124ZM12 10C12.2761 10 12.5 10.2239 12.5 10.5V13.5C12.5 13.7761 12.2761 14 12 14C11.7239 14 11.5 13.7761 11.5 13.5V10.5C11.5 10.2239 11.7239 10 12 10ZM4.00002 14.0038C4.27404 13.9697 4.52388 14.1641 4.55805 14.4381C5.01933 18.1373 8.17574 21 12 21C13.565 21 15.0167 20.5212 16.2184 19.7022C16.4466 19.5466 16.7576 19.6055 16.9132 19.8337C17.0687 20.0619 17.0098 20.373 16.7816 20.5285C15.4191 21.4571 13.7722 22 12 22C7.66503 22 4.08865 18.7553 3.56574 14.5619C3.53157 14.2878 3.726 14.038 4.00002 14.0038Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFingerPrint2;\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,gBAAqnE,EAArnE,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,29DAA29D,KAAK,eAAc,CAAI,CAC7nE,EAEc",
  "debugId": "7EFD3DE8B0A51B8464756E2164756E21",
  "names": []
}