UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

10 lines (9 loc) 400 B
export declare const PROGRESS_BAR_COLOR: readonly ["accent", "primary", "danger", "warning", "success", "neutral"]; type Props = { color: (typeof PROGRESS_BAR_COLOR)[number]; percentage: number; className?: string; value?: string; }; export declare const VuiProgressBar: ({ color, percentage, className, value, ...rest }: Props) => import("react/jsx-runtime").JSX.Element; export {};