@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
10 lines (9 loc) • 415 B
TypeScript
import type { AlertCssVariables, AlertFactory, AlertProps, AlertStylesNames, AlertVariant } from './Alert';
export { Alert } from './Alert';
export type { AlertProps, AlertStylesNames, AlertCssVariables, AlertFactory, AlertVariant };
export declare namespace Alert {
type Props = AlertProps;
type StylesNames = AlertStylesNames;
type CssVariables = AlertCssVariables;
type Factory = AlertFactory;
}