UNPKG

@alifd/meet-react

Version:

Fusion Mobile React UI System Component

15 lines (14 loc) 571 B
import { ReactNode } from 'react'; import { BaseComponentAttributes, BasicSizeType } from '../utils/types'; export interface ClosableTagProps extends BaseComponentAttributes { size?: BasicSizeType; type?: 'normal' | 'primary'; closeArea?: 'tag' | 'tail'; disabled?: boolean; children?: ReactNode; onClick?: (e?: any) => void; onClose?: (e?: any) => boolean; afterClose?: (e?: any) => void; } declare const _default: import("react").ForwardRefExoticComponent<ClosableTagProps & import("react").RefAttributes<any>>; export default _default;