import * as React from 'react'; import styles from '@breakaway/react-styles/css/components/ProgressStepper/progress-stepper'; import { css } from '@breakaway/react-styles'; export interface ProgressStepperProps extends React.DetailedHTMLProps, HTMLOListElement> { /** Content rendered inside the progress stepper. */ children?: React.ReactNode; /** Additional classes applied to the progress stepper container. */ className?: string; /** Flag indicating the progress stepper should be centered. */ isCenterAligned?: boolean; /** Flag indicating the progress stepper has a vertical layout. */ isVertical?: boolean; /** Flag indicating the progress stepper should be rendered compactly. */ isCompact?: boolean; } export const ProgressStepper: React.FunctionComponent = ({ children, className, isCenterAligned, isVertical, isCompact, ...props }: ProgressStepperProps) => (
    {children}
); ProgressStepper.displayName = 'ProgressStepper';