@primer/react
Version:
An implementation of GitHub's Primer Design System using React
16 lines (15 loc) • 337 B
TypeScript
import React from "react";
//#region src/FormControl/FormControlLabel.d.ts
type Props = {
/**
* Whether the label should be visually hidden
*/
visuallyHidden?: boolean;
requiredText?: string;
requiredIndicator?: boolean;
id?: string;
className?: string;
style?: React.CSSProperties;
};
//#endregion
export { Props };