UNPKG

@chakra-ui/progress

Version:

Progress bar component for Chakra UI

12 lines (9 loc) 344 B
import { HTMLChakraProps } from '@chakra-ui/system'; interface ProgressLabelProps extends HTMLChakraProps<"div"> { } /** * ProgressLabel is used to show the numeric value of the progress. * @see Docs https://chakra-ui.com/progress */ declare const ProgressLabel: React.FC<ProgressLabelProps>; export { ProgressLabel, ProgressLabelProps };