Web Overlay

Text

A simple text component for displaying inline text in fields.

Text is a simple inline text component styled to match the UI theme. Use it inside a Field when you just need to display a plain text value rather than an interactive control.

import { Text } from "@/components/text";

<Field name="Version">
  <Text>1.0.0</Text>
</Field>;

Props

PropTypeDescription
childrenReactNodeThe text content to display

On this page