{
  "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.75023 9.35647C4.1985 5.17264 7.79242 2 12.0002 2C16.208 2 19.802 5.17264 20.2502 9.35648L20.9156 13.0925C21.3248 15.3905 19.5578 17.5 17.2236 17.5H6.77692C4.44283 17.5 2.67583 15.3906 3.08499 13.0926L3.75023 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.0002 22C9.94988 22 8.1878 20.7659 7.41624 19H16.5842C15.8126 20.7659 14.0505 22 12.0002 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,gBAAszB,EAAtzB,IAAqB,EAAO,UAAU,mDAAkD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0hBAA0hB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kGAAkG,KAAK,eAAc,CAAI,GAGhzB",
  "debugId": "AD8AD34C25814C0164756E2164756E21",
  "names": []
}