@spicy-ui/core
Version:
A themable and extensible React UI library, ready to use out of the box
13 lines (12 loc) • 497 B
TypeScript
import * as React from 'react';
import { AsProp, ChildrenProp, HTMLAttributes } from '../../types';
export interface HorizontalProgressProps extends HTMLAttributes, AsProp, ChildrenProp {
color?: string;
isCapRound?: boolean;
isIndeterminate?: boolean;
max?: number;
min?: number;
trackColor?: string;
value?: number;
}
export declare const HorizontalProgress: React.ForwardRefExoticComponent<HorizontalProgressProps & React.RefAttributes<HTMLDivElement>>;