import { type ComponentPropsWithoutRef, forwardRef } from "react" import { cn } from "../../libs/utils" export type KeyboardProps = ComponentPropsWithoutRef<"kbd"> export const Keyboard = forwardRef( ({ className, ...props }, ref) => { return ( ) }, ) Keyboard.displayName = "Keyboard"