UNPKG

solid-command-palette

Version:

Add a command palette to your Solid.js App

7 lines (6 loc) 257 B
import { JSX, Component } from 'solid-js'; import { ActionShortcut } from '../types'; export interface KbdShortcutProps extends JSX.HTMLAttributes<HTMLElement> { shortcut: ActionShortcut; } export declare const KbdShortcut: Component<KbdShortcutProps>;