mirror of
https://github.com/tabler/tabler.git
synced 2026-08-07 03:42:27 +04:00
8962710163
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
16 lines
341 B
Plaintext
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>
|