UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

11 lines (10 loc) 247 B
import React from 'react'; export interface ProgressProps { className?: string; value?: number; min?: number; max?: number; fullWidth?: boolean; skeleton?: boolean; } export declare const Progress: React.FC<ProgressProps>;