{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEyeSlash2/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 IconEyeSlash2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconEyeSlash2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6.7971 5.38281L3.00011 1.58582L1.5859 3.00003L5.10834 6.52248C4.44911 7.05086 3.82222 7.65998 3.23574 8.34805C2.44857 9.27158 1.73448 10.337 1.11189 11.5407L0.874268 12.0001L1.11189 12.4595C4.07318 18.1848 9.12994 20.774 14.0153 19.8006C15.11 19.5825 16.1817 19.1866 17.203 18.6171L21.0001 22.4142L22.4143 21L18.8917 17.4774C19.5509 16.9491 20.1777 16.34 20.7641 15.652C21.5513 14.7285 22.2654 13.6631 22.888 12.4594L23.1256 12L22.888 11.5406C19.9267 5.81524 14.8699 3.22609 9.98451 4.19946C8.88998 4.41754 7.81829 4.81343 6.7971 5.38281ZM10.7066 9.29234L14.7077 13.2934C14.8951 12.9017 15 12.4631 15 12C15 10.3431 13.6569 9 12 9C11.5369 9 11.0983 9.10494 10.7066 9.29234ZM5.38071 8.96644C5.75321 8.58966 6.13821 8.25 6.53272 7.94685L15.7202 17.1343C15.1997 17.3845 14.6697 17.5797 14.1352 17.7209L5.38071 8.96644ZM4.08683 10.501L11.5734 17.9875C8.46112 17.8241 5.30775 15.8994 3.13503 12.0002C3.43449 11.463 3.75277 10.9635 4.08683 10.501Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEyeSlash2;\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,gBAAwkC,EAAxkC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,g7BAAg7B,KAAK,eAAc,CAAI,EAChlC,EAEc",
  "debugId": "4910CA886B1F343964756E2164756E21",
  "names": []
}