Evo.Auth/apps/web/elements/Button.tsx
2022-11-27 12:55:26 +03:00

12 lines
262 B
TypeScript

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>
);
}