UNPKG

fictoan-react

Version:

A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.

18 lines (17 loc) 892 B
import React from "react"; import { CommonAndHTMLProps } from '../Element/constants'; export interface ProgressBarLabelCustomProps { suffix?: string; } export interface ProgressBarCustomProps { barBg?: string; barFill?: string; suffix?: string; height?: string; max?: number; } export type ProgressBarElementType = HTMLProgressElement; export type ProgressBarProps = Omit<CommonAndHTMLProps<ProgressBarElementType>, keyof ProgressBarCustomProps> & ProgressBarCustomProps; export type ProgressBarMetaProps = Omit<CommonAndHTMLProps<HTMLDivElement>, keyof ProgressBarLabelCustomProps> & ProgressBarLabelCustomProps; export declare const ProgressBar: React.ForwardRefExoticComponent<Omit<CommonAndHTMLProps<HTMLProgressElement>, keyof ProgressBarCustomProps> & ProgressBarCustomProps & React.RefAttributes<HTMLProgressElement>>; //# sourceMappingURL=ProgressBar.d.ts.map