This commit is contained in:
john 2025-05-18 13:41:08 +02:00
parent abd7c2f073
commit 384da1e832
18 changed files with 150 additions and 116 deletions

View file

@ -1,18 +0,0 @@
import { PropsWithChildren } from 'react'
interface PrimaryLinkButtonProps {
href: string
className?: string
}
export default function PrimaryLinkButton({
href,
className: extraClasses = '',
children,
}: PropsWithChildren<PrimaryLinkButtonProps>) {
return (
<a href={href} className={`primary-button text-center ${extraClasses}`}>
{children}
</a>
)
}