// components/KBD.tsx import React from "react" import { cn } from "../../design-lib/utils" interface KBDProps { command?: boolean shift?: boolean alt?: boolean ctrl?: boolean small?: boolean children?: React.ReactNode className?: string } const KBD: React.FC = ({ command, shift, alt, ctrl, small, children, className, }) => { // const font-sans" = font-sans" // const smallClasses = small ? " text-xs h-7 w-7" : "" return ( {command && ( )} {shift && ( )} {alt && ( )} {ctrl && ( )} {children && {children}} ) } export default KBD