Files
wdi-dashboard/node_modules/@chakra-ui/layout/dist/kbd.d.mts
2024-08-16 15:06:52 +05:30

21 lines
482 B
TypeScript

import * as _chakra_ui_system from '@chakra-ui/system';
import { HTMLChakraProps, ThemingProps } from '@chakra-ui/system';
interface KbdProps extends HTMLChakraProps<"kbd">, ThemingProps<"Kbd"> {
}
/**
* Semantic component to render a keyboard shortcut
* within an application.
*
* @example
*
* ```jsx
* <Kbd>⌘ + T</Kbd>
* ```
*
* @see Docs https://chakra-ui.com/kbd
*/
declare const Kbd: _chakra_ui_system.ComponentWithAs<"kbd", KbdProps>;
export { Kbd, KbdProps };