UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

16 lines (15 loc) 616 B
export type StepProps = { /** Available variants: `default`, `incomplete`, `completed` and `active` */ variant?: "default" | "incomplete" | "completed" | "active"; /** Adds bifrost default spacing (8px) on the right side of the icon */ marginRight?: boolean; /** Adds bifrost default spacing (8px) on the left side of the icon */ marginLeft?: boolean; /** CSS class name */ className?: string; }; declare const IconStep: { ({ variant, marginRight, marginLeft, className, }: StepProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default IconStep;