{
  "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=\"M20.252 3C21.2185 3 22.002 3.7835 22.002 4.75V13.25C22.002 14.2165 21.2185 15 20.252 15H18.002V17.25C18.002 18.2165 17.2185 19 16.252 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.75V19H3.75195C2.78545 19 2.00195 18.2165 2.00195 17.25V8.75C2.00195 7.7835 2.78545 7 3.75195 7H6.25195V4.75C6.25195 3.7835 7.03545 3 8.00195 3H20.252ZM7.75195 7H16.252C17.2185 7 18.002 7.7835 18.002 8.75V13.5H20.252C20.39 13.5 20.502 13.3881 20.502 13.25V4.75C20.502 4.61193 20.39 4.5 20.252 4.5H8.00195C7.86388 4.5 7.75195 4.61193 7.75195 4.75V7Z\" 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": "1EBD63AB302330B564756E2164756E21",
  "names": []
}