new Label(options) → {Class}
A label component with optional header area to contain a group of html elements.
Parameters:
Name | Type | Description | |||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options | object | Component options. Properties
|
- Since
- 2.2.0
- Source
Returns:
The Label instance.
- Type:
- Class
Example
import Label from '@gravityforms/components/html/admin/elements/Label';
function Example() {
const labelInstance = new Label( {
label: 'Label text',
htmlFor: 'input-id',
target: '#example-target',
} );
}