@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS
11 lines (10 loc) • 366 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 as t };
//# sourceMappingURL=Progress.types-CdED9KY2.d.ts.map