{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBrain/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 IconBrain: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"brain, thinking, human, clever\"><path d=\"M9.375 2C9.92595 2 10.4458 2.1324 10.905 2.36671C11.1279 2.48041 11.25 2.71949 11.25 2.96968V20.5157C11.25 20.7288 11.1614 20.9346 10.9927 21.0648C10.2336 21.6505 9.28312 22 8.25 22C5.76472 22 3.75 19.9853 3.75 17.5V17.1709C2.69893 16.5065 2 15.3354 2 14C2.00006 12.8521 2.51723 11.8272 3.3291 11.1396C3.11753 10.6342 3 10.0801 3 9.5C3.00001 7.58641 4.2638 5.9688 6.00195 5.43555C6.0016 5.4154 6 5.39523 6 5.375C6 3.51104 7.51104 2 9.375 2Z\" fill=\"currentColor\"/><path d=\"M14.625 2C16.489 2 18 3.51104 18 5.375C18 5.39524 17.9974 5.41539 17.9971 5.43555C19.7357 5.96852 21 7.58608 21 9.5C21 10.0802 20.8816 10.6341 20.6699 11.1396C21.4821 11.8272 21.9999 12.8518 22 14C22 15.3354 21.3011 16.5065 20.25 17.1709V17.5C20.25 19.9853 18.2353 22 15.75 22C14.7169 22 13.7664 21.6505 13.0073 21.0648C12.8386 20.9346 12.75 20.7288 12.75 20.5157V2.96968C12.75 2.71949 12.8721 2.48041 13.095 2.36671C13.5542 2.1324 14.0741 2 14.625 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBrain;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAogC,EAApgC,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,2bAA2b,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,scAAsc,KAAK,eAAc,CAAI,GAG9/B",
  "debugId": "0E08724631451D9164756E2164756E21",
  "names": []
}