{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEinstein/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 IconEinstein: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"einstein, thinking, physics\"><circle cx=\"7\" cy=\"7\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><circle cx=\"17\" cy=\"7\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M10 7L10.2111 6.89443C11.3373 6.33137 12.6627 6.33137 13.7889 6.89443L14 7\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.5 19.7505H3.75C4.15434 15.236 7.59694 11.9322 12 14.5752C16.5087 12.2385 20.2116 14.7353 20.25 19.7505H17.5L17.173 19.3689C16.5035 18.5876 15.3561 18.4293 14.5 19L13.4004 18.4196C12.5241 17.957 11.4759 17.957 10.5996 18.4196L9.5 19C8.64391 18.4293 7.49645 18.5876 6.82697 19.3689L6.5 19.7505Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconEinstein;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAA6uB,EAA7uB,IAAqB,EAAO,UAAU,+BAA8B,gBAAC,SAAD,CAAQ,GAAG,IAAI,GAAG,IAAI,EAAE,IAAI,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,IAAI,EAAE,IAAI,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,6EAA6E,OAAO,eAAe,YAAY,MAAM,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,0SAA0S,OAAO,eAAe,YAAY,MAAM,cAAc,QAAO,CAAI,GAGvuB",
  "debugId": "C742920F8BB0641A64756E2164756E21",
  "names": []
}