UNPKG

@coconut-software/ui

Version:

React components for faster and easier web development.

7 lines (6 loc) 225 B
import type { PropsWithChildren, ReactNode } from 'react'; interface GroupProps { label?: ReactNode; } declare function Group({ children, label, }: PropsWithChildren<GroupProps>): JSX.Element; export default Group;