# DialogFooter

A footer region helper for dialog content with border separation and alignment controls.

## Notes

- Use DialogFooter to separate final actions from the dialog body.
- It is layout only; Dialog remains responsible for modal semantics and focus trapping.

## Properties

| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
| align | `'start' | 'center' | 'end' | 'between'` | 'end' | Footer content alignment. |
| class | `string` | - | Additional CSS classes. |

## Example

```astro
<DialogFooter><DialogActions><Button>Confirm</Button></DialogActions></DialogFooter>
```
