@trail-ui/react
Version:
14 lines (11 loc) • 572 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { SlotsToClasses, ProgressBarSlots } from '@trail-ui/theme';
import { ForwardedRef } from 'react';
import { ProgressBarProps as ProgressBarProps$1 } from 'react-aria-components';
interface ProgressBarProps extends ProgressBarProps$1 {
label?: string;
ref?: ForwardedRef<HTMLDivElement>;
classNames?: SlotsToClasses<ProgressBarSlots>;
}
declare function ProgressBar({ label, ref, classNames, ...props }: ProgressBarProps): react_jsx_runtime.JSX.Element;
export { ProgressBar, ProgressBarProps };