import React from "react"; import { cn } from "#/utils/utils"; interface EditorContainerProps { height: number; children: React.ReactNode; className?: string; } export function EditorContainer({ height, children, className, }: EditorContainerProps) { return (