UNPKG

hh-ui-components

Version:
11 lines (10 loc) 266 B
import { FC } from "react"; export interface TagProps { label: string; variant?: "sale" | "soldout" | "blog"; size?: "small" | "normal" | "large"; color: string; onClick?: () => void; } export declare const Tag: FC<TagProps>; export default Tag;