UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

17 lines (16 loc) 635 B
import React from 'react'; import './index.scss'; export declare const ProgressBarColorTypes: { readonly PRIMARY: "progress-bar-color--primary"; readonly GRAY: "progress-bar-color--gray"; }; export type ProgressBarColorTypes = typeof ProgressBarColorTypes[keyof typeof ProgressBarColorTypes]; export interface ProgressBarProps { className?: string; disabled?: boolean; maxSize: number; currentSize: number; colorType?: ProgressBarColorTypes; } export declare const ProgressBar: ({ className, disabled, maxSize, currentSize, colorType, }: ProgressBarProps) => React.ReactElement; export default ProgressBar;