UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

16 lines (15 loc) 548 B
import { MouseEventHandler, FunctionComponent, ReactNode, CSSProperties } from 'react'; import { ButtonProps } from '../button'; export interface TransferOperationProps { className?: string; leftArrowText?: ReactNode; rightArrowText?: ReactNode; moveToLeft?: MouseEventHandler<any>; moveToRight?: MouseEventHandler<any>; leftActive?: boolean; rightActive?: boolean; style?: CSSProperties; buttonProps?: ButtonProps; } declare const Operation: FunctionComponent<TransferOperationProps>; export default Operation;