{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEyeSparkle/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 IconEyeSparkle: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"eye-sparkle, magic eyes\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.0011 4C16.0115 4.00003 19.9114 6.47731 22.4317 11.1992C22.6975 11.6972 22.6975 12.3028 22.4317 12.8008C19.9114 17.5227 16.0115 20 12.0011 20C7.9907 20 4.09079 17.5227 1.57042 12.8008C1.30463 12.3028 1.30468 11.6972 1.57042 11.1992C4.09079 6.4773 7.9907 3.99997 12.0011 4ZM12.0001 8C11.7592 8 11.5427 8.1482 11.4562 8.37305L10.7599 10.1855C10.6583 10.4494 10.4495 10.6582 10.1857 10.7598L8.37315 11.4561C8.14831 11.5426 8.00011 11.7591 8.00011 12C8.00011 12.2409 8.14831 12.4574 8.37315 12.5439L10.1857 13.2402C10.4495 13.3418 10.6583 13.5506 10.7599 13.8145L11.4562 15.627C11.5427 15.8518 11.7592 16 12.0001 16C12.241 16 12.4575 15.8518 12.5441 15.627L13.2403 13.8145C13.3419 13.5506 13.5507 13.3418 13.8146 13.2402L15.6271 12.5439C15.8519 12.4574 16.0001 12.2409 16.0001 12C16.0001 11.7591 15.8519 11.5426 15.6271 11.4561L13.8146 10.7598C13.5507 10.6582 13.3419 10.4494 13.2403 10.1855L12.5441 8.37305C12.4575 8.1482 12.241 8 12.0001 8Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEyeSparkle;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAqjC,EAArjC,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,g7BAAg7B,KAAK,eAAc,CAAI,GAG/iC",
  "debugId": "8D52CB8A7DAC8F8B64756E2164756E21",
  "names": []
}