UNPKG

focus-components-v3

Version:

Focus web components to build applications (based on Material Design)

11 lines (9 loc) 298 B
export interface SnackbarProps { actionHandler?: (props?: SnackbarProps) => void; actionText?: string; deleteMessage: () => void; messageId: string; message: string; type: string; } export default function Snackbar(props: SnackbarProps): React.ReactElement<any>