{
  "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=\"M11.9999 4C16.1416 4.00003 20.1616 6.64069 22.6708 11.665C22.7761 11.876 22.7761 12.124 22.6708 12.335C20.1616 17.3593 16.1416 20 11.9999 20C7.85815 20 3.83812 17.3593 1.32898 12.335C1.22365 12.124 1.2237 11.876 1.32898 11.665C3.83812 6.64068 7.85815 3.99997 11.9999 4ZM11.9999 8C11.7589 8 11.5425 8.1482 11.4559 8.37305L10.7596 10.1855C10.6581 10.4494 10.4493 10.6582 10.1854 10.7598L8.37293 11.4561C8.14808 11.5426 7.99988 11.7591 7.99988 12C7.99988 12.2409 8.14808 12.4574 8.37293 12.5439L10.1854 13.2402C10.4493 13.3418 10.6581 13.5506 10.7596 13.8145L11.4559 15.627C11.5425 15.8518 11.7589 16 11.9999 16C12.2408 16 12.4573 15.8518 12.5438 15.627L13.2401 13.8145C13.3417 13.5506 13.5504 13.3418 13.8143 13.2402L15.6268 12.5439C15.8517 12.4574 15.9999 12.2409 15.9999 12C15.9999 11.7591 15.8517 11.5426 15.6268 11.4561L13.8143 10.7598C13.5504 10.6582 13.3417 10.4494 13.2401 10.1855L12.5438 8.37305C12.4573 8.1482 12.2408 8 11.9999 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,gBAAijC,EAAjjC,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,46BAA46B,KAAK,eAAc,CAAI,GAG3iC",
  "debugId": "F06073DA599C560C64756E2164756E21",
  "names": []
}