UNPKG

robust-react-ui

Version:

A React component library, built with a focus on accessibility, extensibility and reusability.

6 lines (5 loc) 245 B
/// <reference types="react" /> import { IAlertProps } from './Alert.types'; import './Alert.scss'; declare const Alert: ({ children, variant, fullWidth, visible, onCloseActionFunction, }: IAlertProps) => JSX.Element; export default Alert;