@starter-ui/core
Version:
This is a UI Components built with the utility classes from Tailwind CSS.
16 lines (15 loc) • 387 B
TypeScript
import { default as React, ReactNode } from 'react';
interface Props {
id?: string;
percent: number;
size?: string;
color?: string;
type?: 'line' | 'circle';
radius?: 'full' | 'none';
insideLabel?: ReactNode;
showStatus?: boolean;
className?: string;
progressClassName?: string;
}
declare const Progress: React.FC<Props>;
export default Progress;