forgeplus-react/node_modules/rsuite/lib/ControlLabel/ControlLabel.d.ts

19 lines
454 B
TypeScript
Raw Normal View History

2023-07-29 21:19:10 +08:00
import * as React from 'react';
import { StandardProps } from '../@types/common';
export interface ControlLabelProps extends StandardProps {
/** Primary content */
children?: React.ReactNode;
/** Attribute of the html label tag, defaults to the controlId of the FormGroup */
htmlFor?: string;
/** Screen reader only */
srOnly?: boolean;
}
declare const ControlLabel: React.ComponentType<ControlLabelProps>;
export default ControlLabel;