aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/Highlight.astro
blob: 70d478ab1220945d45be1f155b0774402b29f1c8 (plain)
1
2
3
4
5
6
7
8
---
export interface Props {
  children: any;
}
---
<span class="highlight-span">
  <slot />
</span>