import styles from './githubCardButton.module.scss'; import Link, { LinkProps } from 'next/link'; import LinkIcon from '@/assets/icons/link.svg'; import clsx from 'clsx'; import { CursorEffect } from '@/components/cursor'; type GithubCardButtonProps = Omit & { className?: string }; export function GithubCardButton(props: GithubCardButtonProps) { const { className: restCalssName, ...restProps } = props; return (
GitHub
); }