{"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        fillRule=\"evenodd\"\n        clipRule=\"evenodd\"\n        d=\"M2.75 1.68933L22.3107 21.25L21.25 22.3106L17.3709 18.4316C14.7285 20.0599 11.7334 20.4277 8.91745 19.5011C5.92079 18.5149 3.20512 16.091 1.32945 12.3351L1.16211 12L1.32945 11.665C2.43065 9.45988 3.82021 7.71477 5.38822 6.44887L1.68934 2.74999L2.75 1.68933ZM8.00043 12.0002C8.00043 11.1671 8.25572 10.3927 8.69156 9.75221L9.78319 10.8438C9.6024 11.1896 9.50043 11.5828 9.50043 12.0002C9.50043 13.3809 10.6197 14.5002 12.0004 14.5002C12.4179 14.5002 12.811 14.3983 13.1568 14.2175L14.2485 15.3091C13.6079 15.745 12.8336 16.0002 12.0004 16.0002C9.7913 16.0002 8.00043 14.2094 8.00043 12.0002ZM10.2225 9.16179L10.2427 9.18202L10.2327 9.17181L10.2225 9.16179ZM14.8388 13.7782L14.8187 13.758L14.8289 13.768L14.8388 13.7782Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M22.6711 12.3351C21.8382 14.0031 20.8387 15.4083 19.7235 16.5414L8.02148 4.83944C9.30222 4.2828 10.6447 3.99998 12.0002 3.99999C16.1419 4.00002 20.162 6.64057 22.6711 11.6649L22.8385 12L22.6711 12.3351Z\"\n        fill=\"currentColor\"\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,SAAS,UACT,SAAS,UACT,EAAE,gtBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6MACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconEyeSlash","props","React","CentralIconBase","IconEyeSlash_default"]}