{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBubbleWideNotification/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 IconBubbleWideNotification: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bubble-wide-notification, badge, message, chat\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19 2C16.7909 2 15 3.79086 15 6C15 8.20914 16.7909 10 19 10C21.2091 10 23 8.20914 23 6C23 3.79086 21.2091 2 19 2ZM16.5 6C16.5 4.61929 17.6193 3.5 19 3.5C20.3807 3.5 21.5 4.61929 21.5 6C21.5 7.38071 20.3807 8.5 19 8.5C17.6193 8.5 16.5 7.38071 16.5 6Z\" fill=\"currentColor\"/><path d=\"M13.4375 6C13.4375 4.89517 13.7596 3.86558 14.315 3H3.75C2.7835 3 2 3.7835 2 4.75V17.25C2 18.2165 2.7835 19 3.75 19H8.65182C8.71055 19 8.76741 19.0207 8.81242 19.0584L10.8775 20.7894C11.5249 21.3321 12.4676 21.3348 13.1181 20.7959L15.2164 19.0575C15.2613 19.0203 15.3177 19 15.3759 19H20.25C21.2165 19 22 18.2165 22 17.25V10.685C21.1344 11.2404 20.1048 11.5625 19 11.5625C15.9279 11.5625 13.4375 9.07208 13.4375 6Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBubbleWideNotification;\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,EAA6D,CAAC,IAAU,CACnF,OAAO,gBAAs1B,EAAt1B,IAAqB,EAAO,UAAU,kDAAiD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4PAA4P,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iaAAia,KAAK,eAAc,CAAI,GAGh1B",
  "debugId": "E6155BDCB2A3EDC864756E2164756E21",
  "names": []
}