@denali-design/react
Version:
React.JS component library for the Denali CSS Framework
31 lines • 797 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 DnProgress: React.FC<DnProgressProps>;
export declare enum DnProgressSizes {
default = "",
small = "sm",
medium = "md",
large = "lg"
}
export declare enum DnProgressBgStatus {
default = "",
danger = "danger",
warning = "warning",
success = "success"
}
export interface DnProgressBarItemProps {
key: string;
value: number;
bgStatus?: DnProgressBgStatus;
className?: string;
}
export interface DnProgressProps {
dataList: DnProgressBarItemProps[];
isLoading: boolean;
size?: DnProgressSizes;
className?: string;
}
//# sourceMappingURL=DnProgress.d.ts.map