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