UNPKG

retabler

Version:

React Component library via Tabler

21 lines (20 loc) 650 B
import * as React from "react"; import { Color } from "../common"; export interface ProgressBarProps { className?: string; color?: Color; width?: number; indeterminate?: boolean; style?: React.CSSProperties; } export interface ProgressProps { className?: string; children?: React.ReactNode; card?: boolean; size?: "sm" | "md"; } declare function Progress({ className, children, card, size, ...rest }: ProgressProps): JSX.Element; declare namespace Progress { var Bar: ({ className, color, indeterminate, width, style, ...rest }: ProgressBarProps) => JSX.Element; } export default Progress;