pouncejs
Version:
A collection of UI components from Panther labs
10 lines (9 loc) • 398 B
TypeScript
import React from 'react';
import { ControlledAlertProps } from '../utils/ControlledAlert';
export declare type AlertProps = Omit<ControlledAlertProps, 'open' | 'onClose'> & {
onClose?: () => void;
/** Whether the Alert is wrapped in a Collapse animation wrapper */
disableAnimation?: boolean;
};
declare const _default: React.NamedExoticComponent<AlertProps>;
export default _default;