Evo.Auth/apps/web/elements/Button.tsx
2023-08-01 15:23:30 +03:00

13 lines
305 B
TypeScript

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