'use client' import React from 'react' export interface CommandGroupProps { label: string /** Whether to show a top border separator */ showBorder?: boolean children: React.ReactNode } export function CommandGroup({ label, showBorder = false, children }: CommandGroupProps) { return ( <>

{label}

{children} ) }