Field

Label, control, hint or error. The stack every form is made of.

As it appears on the invoice.

Fee

The number on the cover is the number on the invoice.

npx @noordvc/raster-cli add field
<div class="rs-field"><label class="rs-field-label">Name</label><input class="rs-input rs-input-full" /><p class="rs-field-hint">As it appears on the invoice.</p></div>
import { Field, FieldHint, FieldLabel } from "@/components/raster/field";

<Field>
  <FieldLabel htmlFor="name">Name</FieldLabel>
  <input id="name" className="rs-input rs-input-full" />
  <FieldHint>As it appears on the invoice.</FieldHint>
</Field>
.rs-field.rs-field-label.rs-field-hint.rs-field-error