mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 16:43:31 +01:00
Closes https://github.com/discordjs/discord.js/issues/8920 Closes https://github.com/discordjs/discord.js/issues/8997
4 lines
132 B
TypeScript
4 lines
132 B
TypeScript
export function NameText({ name }: { name: string }) {
|
|
return <h4 className="break-all font-mono text-lg font-bold">{name}</h4>;
|
|
}
|