@primer/react
Version:
An implementation of GitHub's Primer Design System using React
11 lines (10 loc) • 366 B
TypeScript
import React from 'react';
import { SxProp } from '../sx';
export type CheckboxOrRadioGroupLabelProps = {
/**
* Whether to visually hide the fieldset legend
*/
visuallyHidden?: boolean;
} & SxProp;
declare const CheckboxOrRadioGroupLabel: React.FC<React.PropsWithChildren<CheckboxOrRadioGroupLabelProps>>;
export default CheckboxOrRadioGroupLabel;