# Steel angle (L-profile)

> Component kind `steel-angle` (category `static`, DSL name `steelAngle`, API v1)

Equal-leg L-section steel bar for brackets, gussets and reinforcement. Cross-section leg × leg, length along local Z.

## Parameters

- **`leg`** — Length of each flange of the L (mm). Common: 20, 25, 30, 38, 50.
- **`thickness`** — Flange thickness (mm).
- **`length`** — Length along the local Z axis (mm).

## Parameters schema

| Parameter | Type | Default | Constraints |
| --- | --- | --- | --- |
| `leg` | Number | 30 | min: 10 |
| `thickness` | Number | 3 | min: 1.5 |
| `length` | Number | 500 | min: 10 |
| `color` | String | — |  |

## Ports

| Port | Type | Description |
| --- | --- | --- |
| `body` | `rigid` | Rigid structural port. Weld it to reinforce a corner or edge. |

## Example

```
statics.steelAngle({
  id: 'brace', leg: 30, thickness: 3, length: 500,
});
```
