@serendie/ui
Version:
Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric
12 lines (11 loc) • 410 B
TypeScript
import { default as React } from 'react';
export interface ProgressIndicatorProps extends React.ComponentProps<"div"> {
type?: "linear" | "circular";
size?: "small" | "medium" | "large";
value?: number;
max?: number;
}
export declare const ProgressIndicator: {
({ value, max, type, size, className, style, ...props }: ProgressIndicatorProps): React.JSX.Element;
displayName: string;
};