Label

The RhLabel is used to create a label for an input or form element. The component accepts two props required and labelFor for customizations.

Usage

Once installed, you can import the RhLabel component into your React application:

copy
import {RhLabel} from "@rhythm-ui/react"

Then, you can use the RhLabel component in your JSX code:

copy
<RhLabel label="Input Label" labelFor="label-for-input">
  Label Text
</RhLabel>

Label Props

requiredbooleanDefines if the label is attached to the required element
labelForstringPass the id of the attached html element
refRef<HTMLLabelElement>Allows getting a ref to the component instance. Once the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref). @see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom
keyKey

Required

A boolean prop that determines whether the label is attached to a required element. If set to true, the label will have an asterisk (*) appended to it to indicate that the associated input element is required. If set to false or omitted, no asterisk will be displayed.

copy
<RhLabel label="Input Label" labelFor="label-for-input" required>
  Label Text
</RhLabel>