Evo.Auth/apps/web/elements/Button.tsx
2023-08-01 14:27:51 +03:00

12 lines
276 B
TypeScript

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