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

16 lines
341 B
Plaintext

---
// Prose container (.prose) for long-form / markdown-like content.
interface Props {
class?: string
/** remaining attributes (data-*, tabindex, …) are forwarded to the element */
[key: string]: unknown
}
const { class: className, ...rest } = Astro.props
---
<div class:list={['prose', className]} {...rest}>
<slot />
</div>