"use client"; import { type ComponentRenderProps } from "@json-render/react"; export function Divider({ element }: ComponentRenderProps) { const { orientation } = element.props as { orientation?: string | null }; if (orientation === "vertical") { return (
); } return (