Files
blog-astro/src/components/notion/annotations/Bold.astro
2025-11-28 15:29:39 +08:00

19 lines
255 B
Plaintext

---
import type { RichText } from '../../../lib/interfaces.ts'
export interface Props {
richText: RichText
}
const { richText } = Astro.props
---
{
/* prettier-ignore */
richText.Annotation.Bold ? (
<b><slot /></b>
) : (
<slot />
)
}