UNPKG

@spaced-out/ui-design-system

Version:
26 lines 790 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; import type { IconType } from '../../../components/Icon'; type ClassNames = Readonly<{ wrapper?: string; stepCounter?: string; content?: string; }>; export interface StepProps { active?: boolean; children: React.ReactNode; completed?: boolean; disabled?: boolean; expanded?: boolean; index: number; last?: boolean; classNames?: ClassNames; allowClick?: boolean; onClick?: (idx: number, e?: React.SyntheticEvent<HTMLElement> | null | undefined) => unknown; iconName?: string; iconType?: IconType; testId?: string; } export declare const Step: Flow.AbstractComponent<StepProps, HTMLDivElement>; export {}; //# sourceMappingURL=Step.d.ts.map