import type { ContentKitIcon } from '@gitbook/api';
import type { ContentKitServerContext } from './types';
export function ElementIcon(props: { icon: ContentKitIcon; context: ContentKitServerContext }) {
const { icon, context } = props;
const C = context.icons[icon];
if (!C) {
return ;
}
return ;
}