'use client'; import type { ComponentProps } from 'react'; import { Controls as ControlsPrimitive } from '@xyflow/react'; import { cn } from '@/lib/utils'; export type ControlsProps = ComponentProps; export const Controls = ({ className, ...props }: ControlsProps) => ( button]:hover:bg-secondary! [&>button]:rounded-md [&>button]:border-none! [&>button]:bg-transparent!', className )} {...props} /> );