UNPKG

@start-base/start-ui

Version:

<p align="center"> <a href="https://startbase.dev" target="_blank"> <img src="https://startbase.dev/apple-touch-icon.png" width="60px" style="padding-top: 60px" /> </a> </p>

23 lines (19 loc) 673 B
import React$1 from 'react'; interface ProgressProps extends React.SVGAttributes<SVGSVGElement> { value?: number; max?: number; min?: number; size?: number; trackSize?: number; variant?: 'linear' | 'circular'; color?: 'default' | 'success' | 'info' | 'warning' | 'error'; progressLabel?: boolean; determinate?: boolean; className?: string; containerClassName?: string; trackClassName?: string; progressClassName?: string; labelClassName?: string; } declare const Progress: React$1.ForwardRefExoticComponent<ProgressProps & React$1.RefAttributes<SVGSVGElement>>; export { type ProgressProps, Progress as default };