Files
wdi-dashboard/node_modules/@chakra-ui/progress/dist/progress-label.d.ts

12 lines
344 B
TypeScript
Raw Normal View History

2024-08-16 15:06:52 +05:30
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 };