UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

11 lines (10 loc) 518 B
import type { PropsFor } from "../../types.js"; export type StepBarVariant = StepBarProps["variant"]; export type StepBarProps = PropsFor<"div", { /** Display variant, either 'basic' (default) or 'circle' */ variant?: "basic" | "circle"; /** Disable responsive mode (numbers only for small screens, not recommended) */ disableCollapse?: boolean; }>; declare const StepBar: import("react").ForwardRefExoticComponent<StepBarProps & import("react").RefAttributes<HTMLDivElement>>; export default StepBar;