import type { CmsSlot } from '@/components/cms/types';

export default function CmsElementHtml({ slot }: { slot: CmsSlot }) {
  const html = slot.data?.content ?? slot.config?.content?.value ?? '';
  if (!html) return null;
  return <div dangerouslySetInnerHTML={{ __html: html }} />;
}
