import Link from 'next/link' import DiscordAvatar from '@components/DiscordAvatar' const Owner: React.FC = ({ id, username, tag, crown=false }) => { return (

{ crown && }{username}

#{tag}
) } export default Owner interface OwnerProps { id: string tag: string username: string crown?: boolean }