@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
16 lines (15 loc) • 427 B
TypeScript
import type { CSSProperties } from 'react';
import type { FlexboxProps } from 'react-layout-kit';
export interface HotkeyProps extends Omit<FlexboxProps, 'children'> {
classNames?: {
kbdClassName?: string;
};
compact?: boolean;
inverseTheme?: boolean;
isApple?: boolean;
keys: string;
styles?: {
kbdStyle?: CSSProperties;
};
variant?: 'filled' | 'outlined' | 'borderless';
}