{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBubbles/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 IconBubbles: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bubbles, messages, chat, communicate\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.752 3C20.5469 3 22.002 4.45507 22.002 6.25V11.75C22.002 13.5449 20.5469 15 18.752 15H18.002V15.75C18.002 17.5449 16.5469 19 14.752 19H10.6963L6.36619 21.4056C6.13389 21.5347 5.85064 21.5312 5.62161 21.3964C5.39257 21.2616 5.25195 21.0157 5.25195 20.75V19C3.45703 19 2.00195 17.5449 2.00195 15.75V10.25C2.00195 8.45507 3.45703 7 5.25195 7H6.25195V6.25C6.25195 4.45507 7.70703 3 9.50195 3H18.752ZM7.75195 7H14.752C16.5469 7 18.002 8.45507 18.002 10.25V13.5H18.752C19.7185 13.5 20.502 12.7165 20.502 11.75V6.25C20.502 5.2835 19.7185 4.5 18.752 4.5H9.50195C8.53545 4.5 7.75195 5.2835 7.75195 6.25V7Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBubbles;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA4uB,EAA5uB,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0lBAA0lB,KAAK,eAAc,CAAI,GAGtuB",
  "debugId": "65F59CB1B926A2FB64756E2164756E21",
  "names": []
}