@primer/react
Version:
An implementation of GitHub's Primer Design System using React
29 lines (28 loc) • 926 B
TypeScript
import { ProgressBarItemProps, ProgressBarProps } from "./ProgressBar.js";
//#region src/ProgressBar/index.d.ts
/**
* Collection of ProgressBar related components.
*/
declare const ProgressBar: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLSpanElement> & {
bg?: string;
className?: string;
} & {
inline?: boolean;
barSize?: "small" | "default" | "large";
animated?: boolean;
} & {
className?: string;
progress?: string | number;
bg?: string;
} & import("react").RefAttributes<HTMLSpanElement>> & {
Item: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLSpanElement> & {
'aria-label'?: string;
className?: string;
} & {
className?: string;
progress?: string | number;
bg?: string;
} & import("react").RefAttributes<HTMLSpanElement>>;
};
//#endregion
export { ProgressBar, type ProgressBarItemProps, type ProgressBarProps };