Ishaan Dey dce7166a91 tab ui
2024-04-08 23:40:42 -04:00

15 lines
391 B
TypeScript

import { ChevronLeft, Home } from "lucide-react"
import { Button } from "../ui/button"
export default function Navbar() {
return (
<div className="h-12 px-2 w-full flex items-center justify-between">
<div className="flex items-center">
<Button variant="outline">
<ChevronLeft className="w-4 h-4 mr-2" /> Go Home
</Button>
</div>
</div>
)
}