{
  "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 21.25C12.3244 21.25 9.75 18.8995 9.75 16C9.75 13.1005 12.3244 10.75 15.5 10.75C18.6756 10.75 21.25 13.1005 21.25 16C21.25 17.1969 20.8113 18.3003 20.0727 19.1834C20.1895 19.7834 20.3821 20.3647 20.6111 20.9412C19.8114 20.8935 19.0587 20.7718 18.3293 20.5715C17.494 21.0034 16.5285 21.25 15.5 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M17.171 8.5C16.652 5.24629 13.6391 2.75 10 2.75C5.99594 2.75 2.75 5.77208 2.75 9.5C2.75 11.0389 3.30315 12.4576 4.23444 13.593C4.0872 14.3644 3.84429 15.1117 3.55556 15.8529C4.5639 15.7916 5.5129 15.6351 6.43259 15.3777C6.78577 15.5639 7.15739 15.7233 7.54427 15.8529\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></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,gBAA0tB,EAA1tB,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,mTAAmT,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,8QAA8Q,OAAO,eAAe,YAAY,MAAK,CAAI,GAGptB",
  "debugId": "B41D0F123223912764756E2164756E21",
  "names": []
}