import { type FC } from 'react'; import { Button, type ButtonProps } from 'react-login-page'; export const Submit: FC = (props) => { const { keyname, name = 'submit', ...elmProps } = props; if (!elmProps.children) { elmProps.children = 'Log in'; } return