1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-07 03:42:27 +04:00
Files
tabler/shared/ui/FormFooter.astro

14 lines
194 B
Plaintext

---
// Form footer container (.form-footer).
interface Props {
class?: string
}
const { class: className } = Astro.props
---
<div class:list={['form-footer', className]}>
<slot />
</div>