@coconut-software/ui
Version:
React components for faster and easier web development.
10 lines (9 loc) • 355 B
TypeScript
import type { PropsWithChildren } from 'react';
type GroupDirection = 'row' | 'col';
export interface CheckboxGroupProps {
direction?: GroupDirection;
error?: boolean;
helperText?: string;
}
declare function Group({ children, error, helperText, direction, }: PropsWithChildren<CheckboxGroupProps>): JSX.Element;
export default Group;