Files

10 lines
329 B
TypeScript

export function Logo() {
return (
<div className="flex items-center gap-2">
<div className="w-8 h-8 bg-primary rounded-md flex items-center justify-center">
<span className="text-primary-foreground font-bold text-lg">L</span>
</div>
<span className="font-semibold">Lux Node</span>
</div>
)
}