@denali-design/react
Version:
React.JS component library for the Denali CSS Framework
22 lines • 573 B
TypeScript
/**
* Copyright 2020, Verizon Media
* Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms.
*/
import React from 'react';
export declare const DnAlert: React.FC<DnAlertProps>;
export declare enum DnAlertStatus {
default = "default",
info = "info",
warning = "warning",
success = "success",
danger = "danger"
}
export interface DnAlertProps {
icon: string;
title: string;
context?: string;
status?: DnAlertStatus;
isBlock?: boolean;
className?: string;
}
//# sourceMappingURL=DnAlert.d.ts.map