UNPKG

@serendie/ui

Version:

Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric

12 lines (11 loc) 432 B
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): import("react/jsx-runtime").JSX.Element; displayName: string; };