> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cloud.coinbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# isEmailInvalid

```ts theme={null}
function isEmailInvalid(value: string): boolean;
```

Check if an email address is invalid.

## Parameters

| Parameter | Type     | Description                    |
| --------- | -------- | ------------------------------ |
| `value`   | `string` | The email address to validate. |

## Returns

`boolean`

`true` if the email address is invalid, `false` otherwise.

## Example

```tsx lines theme={null}
if (isEmailInvalid("test@example")) {
  console.log("Invalid email address");
}
```
