UNPKG

@serendie/ui

Version:

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

11 lines (10 loc) 462 B
import { default as React } from 'react'; export interface ProgressIndicatorIndeterminateProps extends React.ComponentProps<"div"> { type?: "linear" | "circular"; size?: "small" | "medium" | "large"; color?: "primary" | "subtle"; } export declare const ProgressIndicatorIndeterminate: { ({ type, size, color, className, style, ...props }: ProgressIndicatorIndeterminateProps): import("react/jsx-runtime").JSX.Element; displayName: string; };