{
  "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.81302 9.35647C4.26128 5.17264 7.79201 2 11.9998 2C16.2076 2 19.7383 5.17264 20.1866 9.35648L20.8077 15.5761C20.9106 16.6062 20.1016 17.5 19.0664 17.5H4.93328C3.89804 17.5 3.08907 16.6062 3.19194 15.5761L3.81302 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=\"M11.9998 22C9.94947 22 8.18739 20.7659 7.41583 19H16.5837C15.8122 20.7659 14.0501 22 11.9998 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,gBAA0zB,EAA1zB,IAAqB,EAAO,UAAU,mDAAkD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6hBAA6hB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mGAAmG,KAAK,eAAc,CAAI,GAGpzB",
  "debugId": "990EF89A632E2F6A64756E2164756E21",
  "names": []
}