/// export interface TagProps { className?: string; color: string; name: string; } export default function Tag({ className, name, color }: TagProps): JSX.Element;