UNPKG

@activate-spritz-components/spritz-ui-components

Version:

This is shared components library for spritz projects.

8 lines (7 loc) 206 B
import { FunctionComponent } from 'react'; interface AlertProps { type: 'success' | 'warning' | 'error'; message: string; } declare const Alert: FunctionComponent<AlertProps>; export default Alert;