import { SmartClipboardButton } from "./SmartClipboardButton"; interface ClipboardCommandsProps { pathExists: boolean | null; } export function ClipboardCommands({ pathExists }: ClipboardCommandsProps) { if (pathExists !== true) return null; return ( <> ); }