UNPKG

@spark-ui/kbd

Version:

render a keyboard shortcut

6 lines (5 loc) 282 B
import { ComponentPropsWithoutRef, PropsWithChildren, Ref } from 'react'; export type KbdProps = ComponentPropsWithoutRef<'div'> & { ref?: Ref<HTMLElement>; }; export declare const Kbd: ({ className, ref, ...props }: PropsWithChildren<KbdProps>) => import("react").JSX.Element;