{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEyeClosed/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 IconEyeClosed: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconEyeClosed\"><Path d=\"M4.72842 8.38942C6.8819 6.09969 9.46489 5.00002 12 5C14.5351 4.99998 17.1181 6.0996 19.2715 8.38924L19.9566 9.11768L21.4135 7.74746L20.7284 7.01902C18.2367 4.36978 15.1423 2.99998 12 3C8.85768 3.00002 5.76321 4.36989 3.27153 7.01921L2.58643 7.74766L4.04332 9.11786L4.72842 8.38942Z\" fill=\"currentColor\"/><Path d=\"M4.72842 12.253L4.04331 11.5246L2.58643 12.8948L3.27153 13.6232C4.45422 14.8807 5.77271 15.85 7.16766 16.5213L5.62694 19.0707L7.33864 20.1052L9.07034 17.2397C9.70564 17.4166 10.3505 17.5357 11 17.596V21H13V17.596C13.6495 17.5357 14.2944 17.4166 14.9297 17.2397L16.6614 20.1052L18.3731 19.0707L16.8323 16.5212C18.2273 15.8499 19.5457 14.8807 20.7284 13.6232L21.4135 12.8948L19.9566 11.5246L19.2715 12.253C17.1181 14.5427 14.5351 15.6423 12 15.6423C9.46485 15.6423 6.88188 14.5427 4.72842 12.253Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEyeClosed;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAA45B,EAA55B,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,4RAA4R,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ifAAif,KAAK,eAAc,CAAI,EACp6B,EAEc",
  "debugId": "71709C39B2FC166464756E2164756E21",
  "names": []
}