UNPKG

@cgi-learning-hub/ui

Version:

@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features

7 lines (6 loc) 228 B
import { AlertProps as MUIAlertProps } from '@mui/material/Alert'; export type AlertProps = { title?: string; } & Omit<MUIAlertProps, "color">; declare const Alert: React.FunctionComponent<AlertProps>; export default Alert;