Skip to content
Harness Design System

Label

The Label component is a customizable label for form elements. It supports various styling options through colors and includes an optional indicator.

Usage

import { Label } from '@harnessio/ui/components'
// ...
return (
<>
<Label htmlFor="username">Username</Label>
<input id="username" type="text" />
</>
)

API Reference

The Label component provides a styled label for form elements with customizable options.

<Label
htmlFor="inputId" // [OPTIONAL] ID of the form control this label is associated with
optional // [OPTIONAL] Indicate if the associated form field is optional
color="primary" // [OPTIONAL] Color variant of the label
>
Label Text
</Label>
PropRequiredDefaultType
htmlForfalsestring
optionalfalseboolean
colorfalse'primary' | 'secondary' | 'disabled' | 'disabled-dark'
classNamefalsestring
childrentrueReactNode