liber-salti
Version:
Saltí - Liber Design System
16 lines (15 loc) • 421 B
TypeScript
import { ReactNode } from 'react';
export interface StepperProps {
/**
* If set to 'centered', then the step title will be positioned under the icon.
*/
alignment?: 'left' | 'centered';
/**
* Two or more <Step /> components.
*/
children?: ReactNode;
/**
* The component orientation (layout flow direction).
*/
orientation: 'horizontal' | 'vertical';
}