UNPKG

@payfit/unity-components

Version:

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