import { cn } from "@/lib/utils"; const GithubButton = ({ url, className, text }: { url: string, className?: string, text?: string }) => { return ( {text && {text}} ); }; export default GithubButton;