Back to Radix Ui

Em

data/themes/docs/components/em.mdx

latest631 B
Original Source
jsx
<Text>
	We <Em>had</Em> to do something about it.
</Text>

API Reference

This component is based on the em element and supports common margin props.

<ThemesPropsTable defs="emPropDefs" />

Examples

Truncate

Use the truncate prop to truncate text with an ellipsis when it overflows its container.

jsx
<Flex maxWidth="300px">
	<Em 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.
	</Em>
</Flex>