Evo.Auth/apps/web/elements/Button.tsx
2024-05-02 21:02:03 +03:00

13 lines
297 B
TypeScript

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