import { X } from "../../icons/SystemIcons"; import type { DomEditSelection } from "./domEditingTypes"; /** The action buttons in the inspector header: Ungroup (groups only), copy, clear. */ export function InspectorHeaderActions({ element, copied, onCopy, onClear, onUngroup, }: { element: DomEditSelection; copied: boolean; onCopy: () => void; onClear: () => void; onUngroup?: () => void; }) { return (