{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFingerPrint1/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 IconFingerPrint1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconFingerPrint1\"><Path d=\"M15.2525 18.8529L14.769 18.7257L15.2525 18.8529ZM5.61021 19.3504L5.41846 19.8122L6.34199 20.1957L6.53375 19.7339L5.61021 19.3504ZM14.0305 21.1215L13.8635 21.5928L14.806 21.9269L14.9731 21.4557L14.0305 21.1215ZM19.4308 17.3379L19.3396 17.8295L20.3228 18.012L20.4141 17.5203L19.4308 17.3379ZM2.52583 15.1514L2.40788 15.6373L3.37966 15.8732L3.49761 15.3873L2.52583 15.1514ZM12.5166 10.9956V10.4956H11.5166V10.9956H12.5166ZM10.6641 19.3841L11.1385 19.5419L10.6641 19.3841ZM9.44806 21.1859L9.2523 21.646L10.1725 22.0375L10.3682 21.5774L9.44806 21.1859ZM12.0162 3C16.432 3 20.0117 6.57974 20.0117 10.9956H21.0117C21.0117 6.02745 16.9843 2 12.0162 2V3ZM8.26837 10.9956C8.26837 8.92572 9.94631 7.24778 12.0162 7.24778V6.24778C9.39402 6.24778 7.26837 8.37344 7.26837 10.9956H8.26837ZM12.0162 7.24778C14.086 7.24778 15.7639 8.92572 15.7639 10.9956H16.7639C16.7639 8.37344 14.6383 6.24778 12.0162 6.24778V7.24778ZM14.769 18.7257C14.5552 19.5382 14.3086 20.3373 14.0305 21.1215L14.9731 21.4557C15.2604 20.6453 15.5152 19.8196 15.7361 18.9802L14.769 18.7257ZM20.0117 10.9956C20.0117 13.1625 19.8123 15.2823 19.4308 17.3379L20.4141 17.5203C20.8066 15.4049 21.0117 13.2239 21.0117 10.9956H20.0117ZM3.02059 10.9956C3.02059 12.4279 2.84912 13.8196 2.52583 15.1514L3.49761 15.3873C3.83951 13.9789 4.02059 12.508 4.02059 10.9956H3.02059ZM8.5177 3.80385C9.57382 3.28908 10.7605 3 12.0162 3V2C10.6054 2 9.26917 2.32511 8.07956 2.90495L8.5177 3.80385ZM4.02059 10.9956C4.02059 8.8661 4.85239 6.93199 6.20981 5.49868L5.48374 4.81105C3.95745 6.42269 3.02059 8.60026 3.02059 10.9956H4.02059ZM15.3153 16.2197C15.1679 17.0677 14.9853 17.9035 14.769 18.7257L15.7361 18.9802C15.9596 18.1306 16.1483 17.267 16.3005 16.3909L15.3153 16.2197ZM15.7639 10.9956C15.7639 12.0542 15.7097 13.1 15.6038 14.1303L16.5985 14.2325C16.7079 13.1683 16.7639 12.0884 16.7639 10.9956H15.7639ZM11.5166 10.9956C11.5166 13.8726 11.0504 16.6398 10.1897 19.2262L11.1385 19.5419C12.0327 16.855 12.5166 13.9813 12.5166 10.9956H11.5166ZM10.1897 19.2262C9.96821 19.8918 9.7206 20.5454 9.44806 21.1859L10.3682 21.5774C10.6513 20.9122 10.9085 20.2333 11.1385 19.5419L10.1897 19.2262ZM7.26837 10.9956C7.26837 12.8648 7.03323 14.6784 6.59117 16.4087L7.56005 16.6563C8.02261 14.8457 8.26837 12.949 8.26837 10.9956H7.26837ZM6.13647 17.948C5.97676 18.423 5.80113 18.8907 5.61021 19.3504L6.53375 19.7339C6.73348 19.2529 6.91723 18.7636 7.08432 18.2667L6.13647 17.948Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFingerPrint1;\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,gBAA09E,EAA19E,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,EAAE,m2EAAm2E,KAAK,eAAc,CAAI,EACl+E,EAEc",
  "debugId": "6A1365D5CF036D9564756E2164756E21",
  "names": []
}