@trail-ui/react
Version:
9 lines (6 loc) • 336 B
TypeScript
import * as react from 'react';
import { AlertVariantProps } from '@trail-ui/theme';
interface AlertProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'color'>, AlertVariantProps {
}
declare const _Alert: react.ForwardRefExoticComponent<AlertProps & react.RefAttributes<HTMLDivElement>>;
export { _Alert as Alert, AlertProps };