UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

12 lines (11 loc) 368 B
import * as React from 'react'; export interface CheckableTagProps { prefixCls?: string; className?: string; style?: React.CSSProperties; checked: boolean; onChange?: (checked: boolean) => void; onClick?: (e: React.MouseEventHandler<HTMLElement>) => void; } declare const CheckableTag: React.FC<CheckableTagProps>; export default CheckableTag;