@spark-ui/progress-tracker
Version:
A progress tracker component is a visual navigation element typically used to display progress or guide user through a multi-step process.
10 lines (9 loc) • 348 B
TypeScript
import type { ComponentPropsWithoutRef, ReactNode } from 'react';
type ProgressTrackerStepLabelProps = ComponentPropsWithoutRef<'span'> & {
children: ReactNode;
};
export declare const ProgressTrackerStepLabel: {
({ className, children, }: ProgressTrackerStepLabelProps): import("react").JSX.Element;
displayName: string;
};
export {};