UNPKG

@drivy/cobalt

Version:

Opinionated design system for Drivy's projects.

16 lines (15 loc) 467 B
type ProgressBannerPropsType = { progress?: { done: number; total: number; }; title: string; description: string; completed?: boolean; animated?: boolean; fullWidth?: boolean; className?: string; href?: string; }; export declare function ProgressBanner({ progress, title, description, completed, animated, fullWidth, className, href, }: ProgressBannerPropsType): import("react/jsx-runtime").JSX.Element; export {};