mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-20 22:24:28 +01:00
11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import { Sparkles } from "lucide-react"
|
|
|
|
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>
|
|
)
|
|
}
|