@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
8 lines (7 loc) • 407 B
TypeScript
import type { PropsFor } from "../../types.js";
export type StepBarItemProps = PropsFor<"div", {
/** Highlight current step (only use if not wrapped in a link, otherwise use 'active' class on the link instead) */
active?: boolean;
}>;
declare const StepBarItem: import("react").ForwardRefExoticComponent<StepBarItemProps & import("react").RefAttributes<HTMLDivElement>>;
export default StepBarItem;