UNPKG

ant-design-vue

Version:

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

14 lines (13 loc) 461 B
import { FunctionalComponent, VNodeChild } from 'vue'; export interface TransBtnProps { class: string; customizeIcon: VNodeChild | ((props?: any) => VNodeChild); customizeIconProps?: any; onMousedown?: (payload: MouseEvent) => void; onClick?: (payload: MouseEvent) => void; } export interface TransBtnType extends FunctionalComponent<TransBtnProps> { displayName: string; } declare const TransBtn: TransBtnType; export default TransBtn;