UNPKG

@payfit/unity-components

Version:

12 lines (11 loc) 641 B
import { TanstackToggleSwitchProps } from '../toggle-switch/TanstackToggleSwitch.js'; export interface TanstackToggleSwitchFieldProps extends TanstackToggleSwitchProps { /** The label for the toggle switch. */ label: string; /** Helper text to display below the toggle switch label. */ switchHelperText?: string; /** Whether the label is only visible to screen readers. */ isLabelSrOnly?: boolean; } declare const TanstackToggleSwitchField: import('react').ForwardRefExoticComponent<Omit<TanstackToggleSwitchFieldProps, "ref"> & import('react').RefAttributes<HTMLLabelElement>>; export { TanstackToggleSwitchField };