import {LucideIcon} from "lucide-react"
type Props = {
icon: LucideIcon,
label: string,
href?: string,
}
export function NavButton ({
icon: Icon,
label,
href,
}: Props) { ... }
import {LucideIcon} from "lucide-react"
type Props = {
icon: LucideIcon,
label: string,
href?: string,
}
export function NavButton ({
icon: Icon,
label,
href,
}: Props) { ... }