@drivy/cobalt
Version:
Opinionated design system for Drivy's projects.
16 lines (15 loc) • 447 B
TypeScript
import React from "react";
type ProgressBannerPropsType = {
progress?: {
done: number;
total: number;
};
title: string;
description: string;
completed?: boolean;
animated?: boolean;
fullWidth?: boolean;
className?: string;
};
export declare function ProgressBanner({ progress, title, description, completed, animated, fullWidth, className, }: ProgressBannerPropsType): React.JSX.Element;
export {};