You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
380 B
11 lines
380 B
import * as React from 'react';
|
|
export interface StepHandlerProps {
|
|
prefixCls: string;
|
|
upNode?: React.ReactNode;
|
|
downNode?: React.ReactNode;
|
|
upDisabled?: boolean;
|
|
downDisabled?: boolean;
|
|
onStep: (up: boolean) => void;
|
|
}
|
|
export default function StepHandler({ prefixCls, upNode, downNode, upDisabled, downDisabled, onStep, }: StepHandlerProps): JSX.Element;
|