interface Props { children: React.ReactNode; onClick?: () => void; className?: string; } export default function Button({ children, onClick, className, }: Props) { return ( ); }