@papernote/ui
Version:
A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive
22 lines • 823 B
TypeScript
export interface ProgressProps {
/** Progress value (0-100) */
value: number;
/** Progress variant */
variant?: 'linear' | 'circular';
/** Size variant */
size?: 'sm' | 'md' | 'lg';
/** Color variant */
color?: 'primary' | 'success' | 'warning' | 'error';
/** Show label with percentage */
showLabel?: boolean;
/** Custom label text (overrides percentage) */
label?: string;
/** Striped animation */
striped?: boolean;
/** Animated stripes (requires striped=true) */
animated?: boolean;
/** Class name for container */
className?: string;
}
export default function Progress({ value, variant, size, color, showLabel, label, striped, animated, className, }: ProgressProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Progress.d.ts.map