office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
22 lines (17 loc) • 569 B
text/typescript
/* tslint:disable:no-unused-variable */
import * as React from 'react';
/* tslint:enable:no-unused-variable */
export interface ILabel {
}
export interface ILabelProps extends React.HTMLAttributes<HTMLLabelElement> {
/**
* Optional callback to access the ILabel interface. Use this instead of ref for accessing
* the public methods and properties of the component.
*/
componentRef?: (component: ILabel) => void;
/**
* Whether the associated form field is required or not
* @defaultvalue false
*/
required?: boolean;
}