{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEyeOpen/index.tsx"],
  "sourcesContent": [
    "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",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconEyeOpen: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"eye-open, show, see, reveal, look, visible\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 4C16.0104 4.00003 19.9101 6.47726 22.4305 11.1992C22.6963 11.6973 22.6963 12.3028 22.4305 12.8009C19.9101 17.5228 16.0104 20 12 19.9999C7.9896 19.9999 4.08988 17.5227 1.56951 12.8008C1.30365 12.3027 1.30365 11.6971 1.56951 11.1991C4.08988 6.47714 7.98961 3.99997 12 4ZM8.37499 12C8.37499 9.99797 9.99796 8.375 12 8.375C14.002 8.375 15.625 9.99797 15.625 12C15.625 14.002 14.002 15.625 12 15.625C9.99796 15.625 8.37499 14.002 8.37499 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEyeOpen;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAmlB,EAAnlB,IAAqB,EAAO,UAAU,8CAA6C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2bAA2b,KAAK,eAAc,CAAI,GAG7kB",
  "debugId": "2FCDF14CA14A63EF64756E2164756E21",
  "names": []
}