# Steel sheet

> Component kind `steel-sheet` (category `static`, DSL name `steelSheet`, API v1)

Flat steel plate. Lies flat: length along X, width along Z, thickness along Y. Use as a metal worktop, gusset, or base plate.

## Parameters

- **`width`** — Sheet width (mm, local Z).
- **`length`** — Sheet length (mm, local X).
- **`thickness`** — Sheet thickness (mm, local Y). Suggested gauges: 1.2–6.35.

## Parameters schema

| Parameter | Type | Default | Constraints |
| --- | --- | --- | --- |
| `width` | Number | 600 | min: 10 |
| `length` | Number | 1000 | min: 10 |
| `thickness` | Number | 2 | min: 0.5 |
| `color` | String | — |  |

## Ports

| Port | Type | Description |
| --- | --- | --- |
| `body` | `rigid` | Rigid structural port. Rest it on a frame or weld it to a base. |

## Example

```
statics.steelSheet({
  id: 'plate', width: 600, length: 1000, thickness: 3,
});
```
