UNPKG

react-bulma-components

Version:

React components for Bulma framework

13 lines (9 loc) 265 B
import { BulmaComponentWithoutRenderAs } from '..'; import { Size } from '..' interface ProgressProps { value?: number; max?: number; size?: Size; } declare const Progress: BulmaComponentWithoutRenderAs<ProgressProps, 'progress'>; export default Progress;