'use client'; import React from 'react'; import { clsx } from 'clsx'; import { twMerge } from 'tailwind-merge'; export interface InspectorProps { open: boolean; onClose: () => void; title?: string; children: React.ReactNode; className?: string; width?: number; } export const Inspector: React.FC = ({ open, onClose, title = 'Inspector', children, className, width = 320, }) => { return ( ); }; Inspector.displayName = 'Inspector';