UNPKG

@coconut-software/ui

Version:

React components for faster and easier web development.

10 lines (9 loc) 289 B
import type { PropsWithChildren, ReactNode } from 'react'; interface GroupProps { /** * The label for the group of menu items */ label?: ReactNode; } declare function Group({ children, label, }: PropsWithChildren<GroupProps>): JSX.Element; export default Group;