import styles from './Button.module.css'; type ButtonProps = JSX.IntrinsicElements['button']; export default function Button({ children, ...props }: ButtonProps) { return ( ); }