13 lines
459 B
TypeScript
13 lines
459 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface CircularProgressLabelProps extends HTMLChakraProps<"div"> {
|
|
}
|
|
/**
|
|
* CircularProgress component label. In most cases it is a numeric indicator
|
|
* of the circular progress component's value
|
|
*/
|
|
declare const CircularProgressLabel: _chakra_ui_system.ChakraComponent<"div", {}>;
|
|
|
|
export { CircularProgressLabel, CircularProgressLabelProps };
|