mirror of
https://github.com/lbr77/blog-astro.git
synced 2026-04-08 16:11:56 +00:00
19 lines
264 B
Plaintext
19 lines
264 B
Plaintext
---
|
|
import type { RichText } from '../../../lib/interfaces.ts'
|
|
|
|
export interface Props {
|
|
richText: RichText
|
|
}
|
|
|
|
const { richText } = Astro.props
|
|
---
|
|
|
|
{
|
|
/* prettier-ignore */
|
|
richText.Annotation.Strikethrough ? (
|
|
<s><slot /></s>
|
|
) : (
|
|
<slot />
|
|
)
|
|
}
|