{
  "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=\"M21.252 3C21.6662 3 22.002 3.33579 22.002 3.75V14.25C22.002 14.6642 21.6662 15 21.252 15H18.002V18.25C18.002 18.6642 17.6662 19 17.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.75V19H2.75195C2.33774 19 2.00195 18.6642 2.00195 18.25V7.75C2.00195 7.33579 2.33774 7 2.75195 7H6.25195V3.75C6.25195 3.33579 6.58774 3 7.00195 3H21.252ZM7.75195 7H17.252C17.6662 7 18.002 7.33579 18.002 7.75V13.5H20.502V4.5H7.75195V7Z\" 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,gBAA2nB,EAA3nB,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yeAAye,KAAK,eAAc,CAAI,GAGrnB",
  "debugId": "D3DBDC3C7C9942B164756E2164756E21",
  "names": []
}