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