--- interface Props { token: string; hex: string; name: string; usage?: string; } const { token, hex, name, usage } = Astro.props as Props; ---
{name} {token} {hex} {usage &&

{usage}

}