) {
const { ariaLabel, kind, max, min, now, displayValue, size, ...nativeProps } =
props
const progress = getCircularProgressProps({
ariaLabel,
classNames: splitClassNameProp(props.className),
kind,
max,
min,
now,
size,
})
return (
{displayValue && size !== 'xs' && (
{progress.labelProps.value}
)}
)
}
export const CircularProgress = forwardRef<
HTMLDivElement,
CircularProgressProps
>(CircularProgressEl)