---
// Author: Igor Dimitrijević (@igorskyflyer)

import type { Props } from './src/Props'
import { generateExcerpt } from './src/utils'

export type { Props }

const excerpt: string = generateExcerpt(Astro.props)
---

<Fragment set:html={excerpt} />
