@playbooks/ui
Version:
An interface library for Playbooks.
27 lines (23 loc) • 648 B
TypeScript
// Generated by dts-bundle-generator v9.5.1
import { TailwindProps } from '@ehubbell/html';
export type HtmlProps = TailwindProps & {
id?: string;
ref?: any;
name?: string;
size?: string;
html?: any;
tabIndex?: any;
onClick?: (v?: any) => any;
onMouseEnter?: (v?: any) => any;
onMouseLeave?: (v?: any) => any;
tailwind?: TailwindProps & any;
className?: string;
style?: any;
children?: any;
};
export type CommandProps = HtmlProps & {
keys?: string[];
variant?: string;
};
export declare const Command: ({ name, keys, tailwind, className, children, ...props }: CommandProps) => import("react/jsx-runtime").JSX.Element;
export {};