import { ReactNode } from 'react' import { cn } from '@/lib/utils' interface KbdProps { children: ReactNode className?: string } export function Kbd({ children, className }: KbdProps) { return ( {children} ) }