14 lines
251 B
Plaintext
14 lines
251 B
Plaintext
---
|
|
import type { HTMLAttributes } from "astro/types";
|
|
|
|
interface Props extends HTMLAttributes<"p"> {
|
|
className?: string;
|
|
}
|
|
|
|
const { className = "my-4", ...attrs } = Astro.props as Props;
|
|
---
|
|
|
|
<p class:list={[className]} {...attrs}>
|
|
<slot />
|
|
</p>
|