组件

Strong

标记文本以表示强调的重要性。

最重要的是,记住要 保持积极
<Text>
The most important thing to remember is, <Strong>stay positive</Strong>.
</Text>

API 参考

此组件基于 strong 元素,并支持 通用的 margin 属性

属性类型默认值
asChild
boolean
无默认值
truncate
boolean
无默认值
wrap
Responsive<"wrap" | "nowrap" | "pretty" | "balance">
无默认值

示例

Truncate

使用 truncate 属性在文本溢出容器时使用省略号截断文本。

排版的目的是以协调的方式关联字体大小、行高和行宽,从而最大限度地提高美观性,并使阅读更轻松、更愉快。
<Flex maxWidth="300px">
<Strong truncate>
The goal of typography is to relate font size, line height, and line width
in a proportional way that maximizes beauty and makes reading easier and
more pleasant.
</Strong>
</Flex>
上一页Quote
下一页Alert Dialog