type TextLinkButtonProps = { text: string; onClick: () => void; className?: string; }; /** * TextLinkButton - A button styled as a hyperlink */ export default function TextLinkButton({text, onClick, className = ''}: TextLinkButtonProps) { return ( ); }