@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS
11 lines (10 loc) • 352 B
TypeScript
import { AllHTMLAttributes } from "react";
//#region src/components/Progress/Progress.types.d.ts
interface ProgressProps extends AllHTMLAttributes<HTMLDivElement> {
getValueLabel?: ((value: number, max: number) => string) | null;
max?: number;
value?: number;
}
//#endregion
export { ProgressProps };
//# sourceMappingURL=Progress.types.d.ts.map