import Link from 'next/link'; import { cn } from '@/lib/utils'; type ButtonProps = { href: string; label: string; className?: string; icon?: React.ReactNode; }; export function Button({ href, label, className, icon }: ButtonProps) { return ( {icon && {icon}} {label} ); }