{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconThinkingBubble/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 IconThinkingBubble: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"thinking-bubble\"><path d=\"M5 16C3.34315 16 2 17.3431 2 19C2 20.6569 3.34315 22 5 22C6.65685 22 8 20.6569 8 19C8 17.3431 6.65685 16 5 16Z\" fill=\"currentColor\"/><path d=\"M13 2C11.4963 2 10.1988 2.86703 9.56675 4.12601C9.34053 4.09364 9.10955 4.07692 8.875 4.07692C6.17769 4.07692 4 6.27739 4 8.98077C4 10.636 4.81586 12.1007 6.0652 12.9885C6.06341 13.037 6.0625 13.0857 6.0625 13.1346C6.0625 15.2645 7.77849 17 9.90625 17C11.153 17 12.2583 16.4034 12.9595 15.4828C13.5964 15.7896 14.31 15.9615 15.0625 15.9615C16.9442 15.9615 18.5728 14.8897 19.3852 13.3267C20.9401 12.5069 22 10.8677 22 8.98077C22 6.27739 19.8223 4.07692 17.125 4.07692C16.8904 4.07692 16.6595 4.09364 16.4333 4.12601C15.8012 2.86703 14.5037 2 13 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconThinkingBubble;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAA2wB,EAA3wB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,siBAAsiB,KAAK,eAAc,CAAI,GAGrwB",
  "debugId": "6F8005F681C8F3C764756E2164756E21",
  "names": []
}