{
  "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 3H2.75C2.33579 3 2 3.33579 2 3.75V18.25C2 18.6642 2.33579 19 2.75 19H8.74274L11.5161 21.3248C11.7936 21.5574 12.1976 21.5585 12.4764 21.3275L15.2858 19H21.25C21.6642 19 22 18.6642 22 18.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,gBAAmwB,EAAnwB,IAAqB,EAAO,UAAU,kDAAiD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4PAA4P,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8UAA8U,KAAK,eAAc,CAAI,GAG7vB",
  "debugId": "89DA8A225D94785164756E2164756E21",
  "names": []
}