{
  "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 21C12.4624 21 10 18.7614 10 16C10 13.2386 12.4624 11 15.5 11C18.5376 11 21 13.2386 21 16C21 16.6409 20.8673 17.2537 20.6256 17.8169C20.268 18.6501 19.9572 19.5574 20.2736 20.4072C20.3107 20.507 20.3492 20.6065 20.3889 20.7059C20.0329 20.6848 19.6866 20.6483 19.3477 20.5962C18.6055 20.4821 17.8443 20.5768 17.1212 20.7792C16.6087 20.9227 16.0643 21 15.5 21Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M16.8127 8C16.0834 5.1333 13.31 3 10 3C6.13401 3 3 5.91015 3 9.5C3 10.4893 3.238 11.4269 3.66372 12.2663C4.06707 13.0615 4.35342 13.9545 4.07357 14.8011C3.98311 15.0748 3.88363 15.3466 3.77778 15.6176C4.57776 15.5691 5.33906 15.4587 6.07776 15.2834C6.38617 15.2101 6.70998 15.2466 7 15.3745\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAAk4B,EAAl4B,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,8WAA8W,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qSAAqS,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG53B",
  "debugId": "FD827FA63159F04364756E2164756E21",
  "names": []
}