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

14 lines
210 B
Plaintext

---
// List group section header (.list-group-header).
interface Props {
class?: string
}
const { class: className } = Astro.props
---
<div class:list={['list-group-header', className]}>
<slot />
</div>