@drivy/cobalt
Version:
Opinionated design system for Drivy's projects.
12 lines (11 loc) • 332 B
TypeScript
import 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) => React.JSX.Element;