UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

21 lines (20 loc) 516 B
import { FlexboxProps } from "../Flex/type.mjs"; import "../Flex/index.mjs"; import { CSSProperties } from "react"; //#region src/Hotkey/type.d.ts interface HotkeyProps extends Omit<FlexboxProps, 'children'> { classNames?: { kbdClassName?: string; }; compact?: boolean; inverseTheme?: boolean; isApple?: boolean; keys: string; styles?: { kbdStyle?: CSSProperties; }; variant?: 'filled' | 'outlined' | 'borderless'; } //#endregion export { HotkeyProps }; //# sourceMappingURL=type.d.mts.map