# `PhiaUi.Components.Layout.SectionFooter`
[🔗](https://github.com/charlenopires/PhiaUI/blob/v0.1.17/lib/phia_ui/components/layout/section_footer.ex#L1)

Section-ending divider with action row.

Typically placed at the bottom of a content section to provide
pagination, save buttons, or navigation actions.

## Examples

    <.section_footer>
      <.button variant={:outline}>Cancel</.button>
      <.button>Save</.button>
    </.section_footer>

    <.section_footer align={:between}>
      <span class="text-sm text-muted-foreground">Showing 1-10 of 50</span>
      <.pagination ... />
    </.section_footer>

    <.section_footer divider={false} align={:end}>
      <.button>Next</.button>
    </.section_footer>

# `section_footer`

## Attributes

* `divider` (`:boolean`) - Show top border. Defaults to `true`.
* `align` (`:atom`) - Defaults to `:end`. Must be one of `:start`, `:center`, `:end`, or `:between`.
* `class` (`:string`) - Defaults to `nil`.
* Global attributes are accepted.
## Slots

* `inner_block` (required)

---

*Consult [api-reference.md](api-reference.md) for complete listing*
