Files
tabler/shared/ui/CardActions.astro
T

14 lines
225 B
Plaintext

---
// Card actions container (.card-actions), typically in a card header.
interface Props {
class?: string
}
const { class: className } = Astro.props
---
<div class:list={['card-actions', className]}>
<slot />
</div>