import clsx from "clsx"; interface ButtonProps { text: JSX.Element | string; url: string; icon?: JSX.Element; className?: string; } export default function Button({ text, url, icon, className }: ButtonProps) { return (

{icon} {text}

); }