{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBubbleDots/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 IconBubbleDots: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bubble-dots, comment, feedback\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 4.75C3 3.7835 3.7835 3 4.75 3H19.25C20.2165 3 21 3.7835 21 4.75V17.25C21 18.2165 20.2165 19 19.25 19H15.3759C15.3177 19 15.2613 19.0203 15.2164 19.0575L13.1181 20.7959C12.4676 21.3348 11.5249 21.3321 10.8775 20.7894L8.81242 19.0584C8.76741 19.0207 8.71055 19 8.65182 19H4.75C3.7835 19 3 18.2165 3 17.25V4.75ZM7 11.25C7 11.8023 7.44772 12.25 8 12.25C8.55228 12.25 9 11.8023 9 11.25C9 10.6977 8.55228 10.25 8 10.25C7.44772 10.25 7 10.6977 7 11.25ZM11 11.25C11 11.8023 11.4477 12.25 12 12.25C12.5523 12.25 13 11.8023 13 11.25C13 10.6977 12.5523 10.25 12 10.25C11.4477 10.25 11 10.6977 11 11.25ZM16 12.25C15.4477 12.25 15 11.8023 15 11.25C15 10.6977 15.4477 10.25 16 10.25C16.5523 10.25 17 10.6977 17 11.25C17 11.8023 16.5523 12.25 16 12.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBubbleDots;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAm3B,EAAn3B,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uuBAAuuB,KAAK,eAAc,CAAI,GAG72B",
  "debugId": "666FFE36A678581D64756E2164756E21",
  "names": []
}