Skip to content

Commit

Permalink
Make value and max props optional in Progress component (#320)
Browse files Browse the repository at this point in the history
Allows creating Intedeterminate progress bars
  • Loading branch information
sszczep authored Apr 29, 2021
1 parent 67fa804 commit e794a40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/progress/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { BulmaComponentWithoutRenderAs } from '..';
import { Size } from '..'

interface ProgressProps {
value: number;
max: number;
value?: number;
max?: number;
size?: Size;
}

Expand Down

0 comments on commit e794a40

Please sign in to comment.