12 lines
344 B
TypeScript
12 lines
344 B
TypeScript
|
|
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 };
|