UNPKG

@pk-design/react-ui-kit

Version:
11 lines (10 loc) 243 B
/// <reference types="react" /> interface TagProps { children: any; closeable?: boolean; onClose?: Function; id: any; disabled?: boolean; } declare const Tag: (props: TagProps) => JSX.Element; export default Tag;