{
  "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 16.8077 21.8269 17.5791 21.5137 18.2822C21.1444 19.1113 20.9725 19.7589 21.1689 20.2988C21.2131 20.42 21.26 20.5418 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.6895C20.1543 21.6649 19.7521 21.6223 19.3574 21.5596C18.7513 21.4632 18.1011 21.5369 17.4502 21.7256C16.8333 21.9044 16.1779 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.2142 7.5112 16.4255 7.5293 16.6338C7.44913 16.6094 7.36909 16.5853 7.29004 16.5586C6.65775 16.3453 6.00918 16.2735 5.4043 16.3848C4.81824 16.4925 4.21852 16.564 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.5811C2.96896 15.2922 3.0729 15.0051 3.16602 14.7188C3.34468 14.1693 3.18188 13.5117 2.79688 12.7666C2.287 11.7798 2 10.671 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,gBAAylC,EAAzlC,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,ucAAuc,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iiBAAiiB,KAAK,eAAc,CAAI,GAGnlC",
  "debugId": "F1E878C4FDD7AB3864756E2164756E21",
  "names": []
}