mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
10 lines
329 B
TypeScript
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>
|
|
)
|
|
} |