UNPKG

@snowball-tech/fractal

Version:

Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS

10 lines (7 loc) 253 B
import { AllHTMLAttributes } from 'react'; interface ProgressProps extends AllHTMLAttributes<HTMLDivElement> { getValueLabel?: ((value: number, max: number) => string) | null; max?: number; value?: number; } export type { ProgressProps };