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