Back to Grafana

InlineFieldRow

packages/grafana-ui/src/components/Forms/InlineFieldRow.mdx

13.0.1432 B
Original Source

InlineFieldRow

Used to align multiple InlineField components in one row. The row will wrap if the width of the children exceeds its own. Multiple InlineFieldRows vertically stack on each other.

Usage

jsx
<InlineFieldRow>
  <InlineField label="Label Row 1">
    <Input placeholder="Label" />
  </InlineField>
  <InlineField label="Label Row 1">
    <Input placeholder="Label" />
  </InlineField>
</InlineFieldRow>