UNPKG

@krowdy-ui/views

Version:

React components that implement Google's Material Design.

12 lines (9 loc) 291 B
import { PropTypes } from '@krowdy-ui/core'; interface BackgroundAlertProps { color? : PropTypes.Color; anchorEl?: null | Element; placement?: string; arrow?: boolean; } declare const BackgroundAlert: React.ComponentType<BackgroundAlertProps>; export default BackgroundAlert;