@drivy/cobalt
Version:
Opinionated design system for Drivy's projects.
12 lines (11 loc) • 359 B
TypeScript
import type React from "react";
export interface ProgressBarProps {
children: React.ReactNode;
progress: number;
/**
* Visual tick at the end of the progress bar
* @default false
*/
tick?: boolean;
}
export declare const ProgressBar: ({ progress, tick, children, }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;