UNPKG

@yamada-ui/menu

Version:

Yamada UI menu component

17 lines (14 loc) 428 B
import * as _yamada_ui_core from '@yamada-ui/core'; import { HTMLUIProps } from '@yamada-ui/core'; interface MenuGroupProps extends HTMLUIProps { /** * The label of the group. */ label?: string; /** * Props for menu group element. */ labelProps?: HTMLUIProps<"header">; } declare const MenuGroup: _yamada_ui_core.Component<"div", MenuGroupProps>; export { MenuGroup, type MenuGroupProps };