UNPKG

antd

Version:

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

21 lines (20 loc) 615 B
/// <reference types="react" /> import React from 'react'; export interface TransferOperationProps { className?: string; leftArrowText?: string; rightArrowText?: string; moveToLeft?: React.FormEventHandler<any>; moveToRight?: React.FormEventHandler<any>; leftActive?: boolean; rightActive?: boolean; } export default class TransferOperation extends React.Component<TransferOperationProps, any> { static defaultProps: { leftArrowText: string; rightArrowText: string; moveToLeft: () => void; moveToRight: () => void; }; render(): JSX.Element; }