{"version":3,"sources":["../src/IconEyeSlash/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconEyeSlash: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase\n      {...props}\n      ariaLabel=\"eye-slash, hide, eye off, see, look, not visible\"\n    >\n      <path\n        d=\"M10.7424 5.08581C14.9366 4.51215 19.3191 6.81687 22 12C21.4904 12.9851 20.9195 13.8662 20.3 14.6434\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinecap=\"square\"\n      />\n      <path\n        d=\"M3.70711 2.29289L3 1.58579L1.58579 3L2.29289 3.70711L3.70711 2.29289ZM20.2929 21.7071L21 22.4142L22.4142 21L21.7071 20.2929L20.2929 21.7071ZM2.29289 3.70711L20.2929 21.7071L21.7071 20.2929L3.70711 2.29289L2.29289 3.70711Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M10.3327 10.8948L10.8864 10.0621L9.22094 8.95472L8.66727 9.78745L10.3327 10.8948ZM14.2126 15.3328L15.0453 14.7791L13.938 13.1136L13.1052 13.6673L14.2126 15.3328ZM12 14C10.8954 14 10 13.1046 10 12H8C8 14.2092 9.79086 16 12 16V14ZM10 12C10 11.5897 10.1225 11.211 10.3327 10.8948L8.66727 9.78745C8.24565 10.4216 8 11.1836 8 12H10ZM13.1052 13.6673C12.789 13.8775 12.4103 14 12 14V16C12.8164 16 13.5785 15.7544 14.2126 15.3328L13.1052 13.6673Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M6.12816 7C4.54597 8.16112 3.12355 9.8278 2 12.0001C5.4666 18.7023 11.7785 20.5916 16.8492 17.6681\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinecap=\"square\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconEyeSlash;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,oDAEVC,EAAA,cAAC,QACC,EAAE,sGACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,gOACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,ybACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qGACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconEyeSlash","props","React","CentralIconBase","IconEyeSlash_default"]}