stofli-ui
Version:
Biblioteca moderna de componentes UI para React con Tailwind CSS y Framer Motion
30 lines (27 loc) • 797 B
TypeScript
import React from 'react';
interface ProgressProps {
value?: number;
max?: number;
size?: "sm" | "md" | "lg";
variant?: "default" | "primary" | "secondary" | "success" | "warning" | "danger";
showValue?: boolean;
animate?: boolean;
label?: string;
className?: string;
containerClassName?: string;
labelClassName?: string;
valueClassName?: string;
progressBarClassName?: string;
radius?: "none" | "sm" | "md" | "full";
striped?: boolean;
indeterminate?: boolean;
description?: string;
"aria-label"?: string;
"aria-labelledby"?: string;
"aria-describedby"?: string;
id?: string;
valueText?: string;
}
declare const Progress: React.FC<ProgressProps>;
export { Progress as default };
export type { ProgressProps };