---
import Icon from './Icon.astro';
import { processPanels } from './rehype-tabs';
interface Props {
syncKey?: string;
}
const { syncKey } = Astro.props;
const panelHtml = await Astro.slots.render('default');
const { html, panels } = processPanels(panelHtml);
---
{
panels && (
)
}