UNPKG

@accelint/design-toolkit

Version:

An open-source component library to serve as part of the entire ecosystem of UX for Accelint.

9 lines (6 loc) 402 B
import { HTMLAttributes, RefAttributes, PropsWithChildren } from 'react'; import { VariantProps } from 'tailwind-variants'; import { HotkeyStyles } from './styles.js'; type HotkeyProps = HTMLAttributes<HTMLElement> & VariantProps<typeof HotkeyStyles> & RefAttributes<HTMLElement>; type HotkeySetProps = HTMLAttributes<HTMLDivElement> & PropsWithChildren; export type { HotkeyProps, HotkeySetProps };