UNPKG

@payfit/unity-components

Version:

11 lines (10 loc) 646 B
import { PropsWithChildren, ReactNode } from 'react'; import { LabelProps } from '../label/Label.js'; export interface TanstackSelectableCardCheckboxGroupFieldProps extends PropsWithChildren<Pick<LabelProps, 'isRequired' | 'requiredVariant'>> { /** The label for the checkbox group. */ label: string; /** Helper text to display below the checkbox group. */ helperText?: ReactNode; } declare const TanstackSelectableCardCheckboxGroupField: import('react').ForwardRefExoticComponent<TanstackSelectableCardCheckboxGroupFieldProps & import('react').RefAttributes<HTMLDivElement>>; export { TanstackSelectableCardCheckboxGroupField };