import type { ReactNode } from 'react'; interface LinkButtonProps { href?: string; children: ReactNode; className?: string; } function LinkButton({ href, children, className = 'card-link' }: LinkButtonProps) { if (!href) { return null; } return ( {children} ); } export default LinkButton;