Label

Renders an accessible label associated with controls.

Loading...
main.ts
styles.css
import { Component } from '@angular/core';
import { RdxLabelDirective } from '@radix-ng/primitives/label';
@Component({
standalone: true,
imports: [RdxLabelDirective],
template: `
<label class="LabelRoot" rdxLabel htmlFor="firstName">First Name</label>
<input class="Input" id="firstName" type="text" value="Pedro Duarte" />
`,
styleUrl: 'label-demo.css'
})
export class LabelDemoComponent {}

Features

  • ✅ Text selection is prevented when double-clicking label.

Installation

Get started with importing the directive:

import { RdxLabelDirective } from '@radix-ng/primitives/label';

Anatomy

Import all parts and piece them together.

<label rdxLabel htmlFor="firstName">First Name</label>

API Reference

Label

RdxLabelDirective

Prop Type Default
htmlFor
InputSignal<string>
input<string>('')
id
InputSignal<string>
input<string>(`rdx-label-${idIterator++}`)

Accessibility

This component is based on the native label element, it will automatically apply the correct labelling when wrapping controls or using the htmlFor attribute. For your own custom controls to work correctly, ensure they use native elements such as button or input as a base.