{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFingerPrint2/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 IconFingerPrint2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconFingerPrint2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.5 10.5C3.5 5.80558 7.30558 2 12 2C12.4294 2 12.8519 2.03192 13.2653 2.09367L14.2543 2.24143L13.9588 4.21947L12.9698 4.07172C12.6539 4.02453 12.3302 4 12 4C8.41015 4 5.5 6.91015 5.5 10.5V12.2916H3.5V10.5ZM16.6458 3.31122L17.4162 3.94878C19.2982 5.50628 20.5 7.86323 20.5 10.5V13.5C20.5 14.8733 20.1736 16.1732 19.5932 17.3238L19.1428 18.2166L17.3571 17.3158L17.8075 16.423C18.2502 15.5454 18.5 14.5533 18.5 13.5V10.5C18.5 8.48426 17.5836 6.68342 16.1411 5.48958L15.3707 4.85203L16.6458 3.31122ZM9.7956 6.51117C10.4618 6.18354 11.2109 6 12 6C14.7614 6 17 8.23858 17 11V13C17 13.0701 16.9986 13.1399 16.9957 13.2094L16.9544 14.2086L14.9561 14.1259L14.9974 13.1268C14.9991 13.0848 15 13.0425 15 13V11C15 9.34315 13.6569 8 12 8C11.5236 8 11.0759 8.11031 10.6783 8.30585L9.78094 8.74719L8.89826 6.95251L9.7956 6.51117ZM9.04392 9.87405L9.00261 10.8732C9.00088 10.9152 9 10.9575 9 11V13C9 14.6569 10.3431 16 12 16C12.4764 16 12.9241 15.8897 13.3217 15.6941L14.2191 15.2528L15.1017 17.0475L14.2044 17.4888C13.5382 17.8165 12.7891 18 12 18C9.23858 18 7 15.7614 7 13V11C7 10.9299 7.00145 10.8601 7.00432 10.7906L7.04563 9.79144L9.04392 9.87405ZM11 10H13V14H11V10ZM5.45033 14.1028L5.69145 15.0733C6.39461 17.9035 8.95371 20 12 20C13.2695 20 14.4511 19.6371 15.4504 19.0098L16.2973 18.4781L17.3607 20.172L16.5137 20.7037C15.2052 21.5251 13.6565 22 12 22C8.0133 22 4.66991 19.2563 3.75046 15.5555L3.50934 14.585L5.45033 14.1028Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFingerPrint2;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAuiD,EAAviD,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,44CAA44C,KAAK,eAAc,CAAI,EAC/iD,EAEc",
  "debugId": "B950283CC64D0FEB64756E2164756E21",
  "names": []
}