smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
21 lines (20 loc) • 581 B
TypeScript
import React from "react";
import { JSXElementProps } from "../props";
import { Placeholder } from "../types/progress-bar";
export interface Props {
elementProps?: JSXElementProps;
type?: string;
fill?: boolean;
alt?: boolean;
shape?: string;
duration?: number;
height?: string;
percentage: number;
showPlaceholder?: boolean;
placeholder?: Placeholder;
striped?: boolean;
stripedAnimation?: boolean;
stripedAnimationDuration?: number;
}
declare const ProgressBar: React.FC<Props>;
export default ProgressBar;