UNPKG

@coconut-software/ui

Version:

React components for faster and easier web development.

5 lines (4 loc) 400 B
import type { PropsWithChildren } from 'react'; import type { ProgressVariantProps } from './Progress'; declare function Circular({ 'aria-label': label, 'aria-labelledby': labelledBy, 'aria-valuemax': max, 'aria-valuemin': min, 'aria-valuenow': now, 'aria-valuetext': valueText, children, color, id, size, value, }: PropsWithChildren<ProgressVariantProps>): JSX.Element; export default Circular;