import React from "react"; import "./Username.css"; interface UsernameProps { avatar: string; color: string; name: string; hat?: string; } export function Username({ avatar, color, name, hat = "" }: UsernameProps) { return (
{name} {hat && ( )}
{name}
); }