{"version":3,"sources":["../src/IconEyeClosed/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconEyeClosed: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"eye-closed, see, hidden\">\n      <path\n        d=\"M4.29644 8.13639C6.56477 5.72455 9.30041 4.55251 12.0002 4.55249C14.6999 4.55247 17.4355 5.72445 19.7038 8.13621L20.2176 8.68254L21.3103 7.65487L20.7964 7.10854C18.2745 4.42708 15.1552 3.05247 12.0001 3.05249C8.845 3.05251 5.72575 4.4272 3.20377 7.10874L2.68994 7.65507L3.78261 8.68273L4.29644 8.13639Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M4.29644 12.5061L3.78261 11.9598L2.68994 12.9874L3.20377 13.5337C4.45781 14.8671 5.85953 15.8774 7.3399 16.5561L5.72031 19.2361L7.00409 20.0119L8.76396 17.0998C9.5799 17.3509 10.4122 17.506 11.2501 17.564V21H12.7501V17.564C13.5229 17.5105 14.2907 17.3744 15.0454 17.1567L17.0693 20.0272L18.2953 19.1629L16.5062 16.6255C18.0434 15.9469 19.499 14.9133 20.7964 13.5337L21.3103 12.9874L20.2176 11.9598L19.7038 12.5061C17.4354 14.9179 14.6998 16.0899 12.0001 16.0899C9.30037 16.0899 6.56476 14.9179 4.29644 12.5061Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconEyeClosed;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,EAAE,iTACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,igBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconEyeClosed","props","React","CentralIconBase","IconEyeClosed_default"]}