import { Eye, Layers } from "../../icons/SystemIcons"; export function PropertyPanelEmptyState({ multiSelectCount }: { multiSelectCount: number }) { return (
{multiSelectCount > 1 ? ( <>

{multiSelectCount} elements selected

Select a single element to edit its properties. Click an element in the preview or use the timeline layer panel.

) : ( <>

Select an element in the preview.

The inspector is tuned for element edits with safer geometry controls, color picking, and cleaner grouped layer controls.

)}
); }