@cerberus-design/react
Version:
The Cerberus Design React component library.
20 lines (19 loc) • 632 B
text/typescript
import { ReactNode } from 'react';
import { CircularProgressRootProps } from './primitives';
export interface CircularProgressProps extends CircularProgressRootProps {
/**
* The background style of the CircularProgress
*/
bgStyle?: 'filled' | 'transparent';
/**
* The label for the circular progress.
* @default 'Done'
*/
label?: ReactNode;
/**
* Whether to hide the value text inside the circular progress.
* @default false
*/
hideValueText?: boolean;
}
export declare function CircularProgress(props: CircularProgressProps): import("react/jsx-runtime").JSX.Element;