UNPKG

@nteract/presentational-components

Version:

pure presentational components for nteract

7 lines (6 loc) 223 B
import { HTMLAttributes, FC } from "react"; interface CommandButtonRowProps extends HTMLAttributes<HTMLButtonElement> { shortCut: string[]; } export declare const CommandButtonRow: FC<CommandButtonRowProps>; export {};