Files
HabitTrove/components/Logo.tsx

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>
)
}