UNPKG

@spaced-out/ui-design-system

Version:
15 lines 558 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; type ClassNames = Readonly<{ wrapper?: string; }>; export interface StageArrowsProps { disabled?: boolean; children: React.ReactNode; classNames?: ClassNames; onStageArrowClick?: ((id: string, e?: React.SyntheticEvent<HTMLElement> | null | undefined) => unknown) | null | undefined; testId?: string; } export declare const StageArrows: Flow.AbstractComponent<StageArrowsProps, HTMLDivElement>; export {}; //# sourceMappingURL=StageArrows.d.ts.map