UNPKG

mr-component

Version:
19 lines (18 loc) 580 B
import * as React from 'react'; interface VantTagProps { type?: 'default' | 'primary' | 'success' | 'warning' | 'danger'; size?: 'large' | 'medium' | 'small'; color?: string; textColor?: string; plain?: boolean; round?: boolean; mark?: boolean; closeable?: boolean; onClick?: () => void; onClose?: () => void; style?: React.CSSProperties; className?: string; children?: React.ReactNode; } declare const RefVantTag: React.ForwardRefExoticComponent<VantTagProps & React.RefAttributes<HTMLSpanElement>>; export default RefVantTag;