Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 691 Bytes

File metadata and controls

26 lines (19 loc) · 691 Bytes

Text

Body text with semantic color variants.

import { Text } from "open-mcp-app-ui";

Props

Prop Type Default Description
variant "primary" | "secondary" | "tertiary" "primary" Text color.
size "sm" | "md" | "lg" "md" Text size.
as "p" | "span" | "div" "p" HTML element to render.
children ReactNode Text content.

Also extends HTMLAttributes<HTMLParagraphElement>.

Examples

<Text>Primary body text</Text>
<Text variant="secondary" size="sm">Description or helper text</Text>
<Text variant="tertiary" as="span">Timestamp or metadata</Text>