We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8efccdd commit 16fdfd1Copy full SHA for 16fdfd1
packages/react/src/ProgressBar/ProgressBar.tsx
@@ -1,4 +1,5 @@
1
import React, {forwardRef} from 'react'
2
+import type {SxProp} from '../sx'
3
import {clsx} from 'clsx'
4
import classes from './ProgressBar.module.css'
5
import {BoxWithFallback} from '../internal/components/BoxWithFallback'
@@ -13,12 +14,13 @@ type StyledProgressContainerProps = {
13
14
inline?: boolean
15
barSize?: 'small' | 'default' | 'large'
16
animated?: boolean
-}
17
+} & SxProp
18
19
export type ProgressBarItems = React.HTMLAttributes<HTMLSpanElement> & {
20
'aria-label'?: string
21
className?: string
-} & ProgressProp
22
+} & ProgressProp &
23
+ SxProp
24
25
export const Item = forwardRef<HTMLSpanElement, ProgressBarItems>(
26
(
0 commit comments