@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.
9 lines (8 loc) • 580 B
TypeScript
import { type VariantProps } from 'class-variance-authority';
export declare const stepIndicatorVariant: (props?: ({
size?: "sm" | "md" | "lg" | null | undefined;
intent?: "main" | "basic" | "support" | "neutral" | "info" | "accent" | "danger" | "alert" | "success" | null | undefined;
design?: "outline" | "tinted" | null | undefined;
state?: "complete" | "incomplete" | "active" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export type StepIndicatorVariantProps = VariantProps<typeof stepIndicatorVariant>;