@drivy/cobalt
Version:
Opinionated design system for Drivy's projects.
11 lines (10 loc) • 378 B
TypeScript
import React from "react";
export interface ProgressBarProps {
children: React.ReactNode;
progress: number;
status?: "info" | "success" | "error";
size: 32 | 48 | 64 | 96;
animated?: boolean;
className?: string;
}
export declare const ProgressCircular: ({ progress, size, status, animated, className, children, }: ProgressBarProps) => React.JSX.Element;