UNPKG

@snowball-tech/fractal

Version:

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

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