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

16 lines
331 B
Plaintext

---
// Standalone card title heading (.card-title), used inside a card body without a .card-header bar.
interface Props {
/** heading element, e.g. h2 — default h3 */
as?: string
class?: string
}
const { as: Tag = 'h3', class: className } = Astro.props
---
<Tag class:list={['card-title', className]}>
<slot />
</Tag>