import { PropsWithChildren } from 'react'; import { Block, type BlockProps, type BlockTagType } from 'react-login-page'; export const ButtonAfter = (props: PropsWithChildren>) => { const { keyname = 'buttonAfter', name, ...elmProps } = props; if (!elmProps.children) { elmProps.children = 'Button After'; } return ; }; ButtonAfter.displayName = 'Login.ButtonAfter';