Files
tabler/shared/ui/FormFooter.astro
T

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>