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

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>