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.
13 lines
415 B
13 lines
415 B
import * as React from 'react';
|
|
import { RenderNode } from './interface';
|
|
export interface TransBtnProps {
|
|
className: string;
|
|
customizeIcon: RenderNode;
|
|
customizeIconProps?: any;
|
|
onMouseDown?: React.MouseEventHandler<HTMLSpanElement>;
|
|
onClick?: React.MouseEventHandler<HTMLSpanElement>;
|
|
children?: React.ReactNode;
|
|
}
|
|
declare const TransBtn: React.FC<TransBtnProps>;
|
|
export default TransBtn;
|