UNPKG

hair-ui

Version:

A Minimalist Component Library For React.

8 lines (7 loc) 259 B
/// <reference types="react" /> export interface TagProps { text: string; type: "primary" | "success" | "info" | "danger" | "warning"; closeable?: boolean; } export declare function Tag({ text, type, closeable, ...props }: TagProps): JSX.Element;