The Label component is used to provide a label for form elements, enhancing accessibility and usability. It is typically used in conjunction with form controls like inputs, selects, and textareas.
## Component Structure
```rust
Label {
html_for: "id", // The ID of the form control this label is associated with
}
button {
id: "id", // The ID of the labeled element
}
```