UNPKG

@fluent-windows/core

Version:

React components that inspired by Microsoft's Fluent Design System.

10 lines (9 loc) 349 B
import * as PropTypes from 'prop-types'; import { StandardProps, StyledProps } from '..'; export declare type ProgressClassProps = 'root' | 'progress' | 'isIndeterminate'; export interface ProgressProps extends StandardProps, StyledProps { value?: number; } export declare const ProgressPropTypes: { value: PropTypes.Requireable<number>; };