interface Props { text?: string } export function SubmitButton({ text = 'Iniciar sesión' }: Props) { return ( ) }