# ElseIfClause

An else clause with an if statement.

* jsx

  ```tsx
  import { ElseIfClause } from "@alloy-js/typescript";


  <ElseIfClause condition={Children}>
    {children}
  </ElseIfClause>
  ```

* stc

  ```ts
  import { ElseIfClause } from "@alloy-js/typescript/stc";


  ElseIfClause({ condition: Children }).children(children)
  ```

## Props

|           |                                           |   |
| --------- | ----------------------------------------- | - |
| children  | [Children](../../../core/types/children/) |   |
| condition | [Children](../../../core/types/children/) |   |
