{
  "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.2514 21.5832 18.4082 20.8818 19.3633C20.9874 19.7931 21.1335 20.2232 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.8167 21.6448 19.1016 21.5376 18.4053 21.3652C17.5283 21.7703 16.5417 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.2129 7.51142 16.4228 7.5293 16.6299C7.12305 16.5057 6.72998 16.3544 6.35449 16.1738C5.46862 16.4018 4.55758 16.5434 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.09299 14.9738 3.29006 14.3769 3.42773 13.7764C2.53092 12.5668 2 11.0931 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,gBAAo6B,EAAp6B,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,2WAA2W,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,wcAAwc,KAAK,eAAc,CAAI,GAG95B",
  "debugId": "A0E2CBDA7201F0D464756E2164756E21",
  "names": []
}