UNPKG

brightyui

Version:

Brighty UI library

12 lines (11 loc) 280 B
import { FC, ReactNode } from 'react'; import { EColors } from '../../types/EColors'; interface TagProps { title: string; onClick: () => void; showCloseButton?: boolean; icon?: ReactNode; color?: EColors; } declare const Tag: FC<TagProps>; export default Tag;