@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
9 lines • 390 B
TypeScript
import { AlertProps as DefaultAlertProps } from 'antd';
import React from 'react';
type CondoAlertProps = {
type: 'success' | 'info' | 'warning' | 'error';
};
export type AlertProps = Pick<DefaultAlertProps, 'message' | 'showIcon' | 'description' | 'banner' | 'action'> & CondoAlertProps;
declare const Alert: React.FC<AlertProps>;
export { Alert, };
//# sourceMappingURL=alert.d.ts.map