UNPKG

shineout

Version:

A components library for React

10 lines (9 loc) 252 B
import Tag from './tag'; import TagInput from './tag-input'; type RefTag = typeof Tag; export interface TagComponent extends RefTag { Input: typeof TagInput; displayName: string; } declare const _default: TagComponent; export default _default;