mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-21 06:34:30 +01:00
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
|
|
export function Logo() {
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
{/* <Sparkles className="h-6 w-6 text-primary" /> */}
|
|
<span className="font-bold text-xl">HabitTrove</span>
|
|
</div>
|
|
)
|
|
}
|