import classNames from 'classnames'; import type { FC, AnchorHTMLAttributes } from 'react'; import Link from '@/components/Link'; import styles from './index.module.css'; type ButtonProps = AnchorHTMLAttributes & { kind?: 'neutral' | 'primary' | 'secondary' | 'special'; // We have an extra `disabled` prop as we simulate a button disabled?: boolean; }; const Button: FC = ({ kind = 'primary', disabled = false, href = undefined, children, className, ...props }) => ( {children} ); export default Button;