{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconChatBubbles/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 IconChatBubbles: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"chat-bubbles\"><path d=\"M15.5 10C19.0242 10 22 12.6235 22 16C22 17.1932 21.6222 18.303 20.9775 19.2324C20.8939 19.3531 20.8979 19.434 20.9043 19.459C21.0079 19.8577 21.1466 20.2564 21.3086 20.6641C21.4033 20.9024 21.369 21.173 21.2188 21.3809C21.0684 21.5886 20.8224 21.7047 20.5664 21.6895C19.8642 21.6476 19.1914 21.5523 18.5361 21.3984C18.4598 21.3806 18.3684 21.3866 18.2764 21.4268C17.4322 21.7951 16.4904 22 15.5 22C11.9758 22 9 19.3765 9 16C9 12.6235 11.9758 10 15.5 10Z\" fill=\"currentColor\"/><path d=\"M10 2C14.146 2 17.6277 4.98223 17.9697 8.87109C17.1825 8.63021 16.3505 8.5 15.5 8.5C11.2787 8.5 7.5 11.6696 7.5 16C7.5 16.2139 7.51126 16.4248 7.5293 16.6328C7.16645 16.5225 6.81395 16.3912 6.47559 16.2354C6.38967 16.1959 6.30202 16.1887 6.22754 16.207C5.3814 16.4162 4.51139 16.5462 3.60059 16.6016C3.34549 16.6169 3.0998 16.5014 2.94922 16.2949C2.79868 16.0884 2.76382 15.8192 2.85645 15.5811C3.07989 15.0074 3.26973 14.4429 3.40625 13.875C3.41451 13.8405 3.41303 13.7607 3.33887 13.6562C2.49514 12.4696 2 11.0395 2 9.5C2 5.30829 5.6331 2 10 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconChatBubbles;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAA8lC,EAA9lC,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,wcAAwc,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qiBAAqiB,KAAK,eAAc,CAAI,GAGxlC",
  "debugId": "1D305270A672A82464756E2164756E21",
  "names": []
}