import classnames from 'classnames'; import { ButtonHTMLAttributes, forwardRef } from 'react'; type Props = ButtonHTMLAttributes & { color?: 'primary' | 'secondary'; }; export const Button = forwardRef(function Button( { className, color = 'primary', ...props }: Props, ref, ) { return (