{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBellCheck/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 IconBellCheck: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bell-check, notification alarm, activity, alert\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.81326 9.35647C4.26153 5.17264 7.79225 2 12 2C16.2078 2 19.7385 5.17264 20.1868 9.35648L20.9177 16.6755C20.9618 17.117 20.6151 17.5 20.1714 17.5H3.82869C3.38501 17.5 3.03831 17.117 3.0824 16.6755L3.81326 9.35647ZM15.5303 9.28033C15.8232 8.98744 15.8232 8.51256 15.5303 8.21967C15.2374 7.92678 14.7626 7.92678 14.4697 8.21967L11 11.6893L9.53033 10.2197C9.23744 9.92678 8.76256 9.92678 8.46967 10.2197C8.17678 10.5126 8.17678 10.9874 8.46967 11.2803L10.4697 13.2803C10.7626 13.5732 11.2374 13.5732 11.5303 13.2803L15.5303 9.28033Z\" fill=\"currentColor\"/><path d=\"M12 22C9.94971 22 8.18763 20.7659 7.41608 19H16.584C15.8124 20.7659 14.0504 22 12 22Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBellCheck;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAuyB,EAAvyB,IAAqB,EAAO,UAAU,mDAAkD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qhBAAqhB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,wFAAwF,KAAK,eAAc,CAAI,GAGjyB",
  "debugId": "BE2BCF851078472664756E2164756E21",
  "names": []
}