Skip to content

Commit

Permalink
add progressbar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kendallgassner committed Jan 29, 2025
1 parent 6912356 commit e492c51
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ export const Inline = () => <ProgressBar inline progress="66" sx={{width: '100px
export const Color = () => <ProgressBar progress="66" bg="done.emphasis" aria-label="Upload test.png" />

export const MultipleItems = () => (
<ProgressBar aria-valuenow={70} aria-label="Upload test.png">
<ProgressBar.Item progress={33} sx={{bg: 'accent.emphasis'}} />
<ProgressBar.Item progress={23} bg={'danger.emphasis'} />
<ProgressBar.Item progress={14} bg={'severe.emphasis'} />
<ProgressBar>
<ProgressBar.Item progress={33} aria-label="Photo Usage" sx={{bg: 'accent.emphasis'}} />
<ProgressBar.Item progress={23} aria-label="Application Usage" bg={'danger.emphasis'} />
<ProgressBar.Item progress={14} aria-label="Music Usage" bg={'severe.emphasis'} />
</ProgressBar>
)

Expand Down

0 comments on commit e492c51

Please sign in to comment.