UNPKG

@neuctra/ui

Version:

A modern, responsive, customizable React UI component library powered by Tailwind CSS and Vite.

7 lines (6 loc) 273 B
import { default as React } from 'react'; export interface KbdProps extends React.HTMLAttributes<HTMLElement> { children: React.ReactNode; size?: "sm" | "md"; } export declare const Kbd: React.ForwardRefExoticComponent<KbdProps & React.RefAttributes<HTMLElement>>;