{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEyeSlash/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 IconEyeSlash: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconEyeSlash\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.00015 1.58594L22.4144 21.0002L21.0002 22.4144L17.2026 18.6168C14.5524 20.0943 11.578 20.3944 8.78152 19.4857C5.74293 18.4983 3.00282 16.1155 1.11164 12.4591L0.874023 11.9997L1.11164 11.5403C2.19808 9.43978 3.56376 7.75983 5.10794 6.52215L1.58594 3.00015L3.00015 1.58594ZM7.99988 11.9997C7.99988 11.2584 8.20215 10.5634 8.55379 9.96801L10.0674 11.4816C10.0233 11.6468 9.99988 11.8204 9.99988 11.9997C9.99988 13.1043 10.8953 13.9997 11.9999 13.9997C12.1792 13.9997 12.3528 13.9763 12.518 13.9322L14.0316 15.4458C13.4362 15.7975 12.7412 15.9997 11.9999 15.9997C9.79074 15.9997 7.99988 14.2089 7.99988 11.9997Z\" fill=\"currentColor\"/><Path d=\"M22.8879 12.4594C22.159 13.8686 21.3034 15.0883 20.3542 16.1118L8.76172 4.51936C9.8154 4.17482 10.9029 4.00001 11.9997 4C16.2388 3.99997 20.3383 6.61119 22.8879 11.5405L23.1255 11.9999L22.8879 12.4594Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEyeSlash;\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,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAAo+B,EAAp+B,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,omBAAomB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,CAAI,EAC5+B,EAEc",
  "debugId": "40DDEC634286D1A964756E2164756E21",
  "names": []
}