Rad UI is under active development and looking for contributors to shape the future of the library. If you'd like to contribute to Rad UI, please check out Getting Started

Em is used to emphasize text.

I have a dream of a scene between the green hills.
Clouds pull away and the sunlight's revealed.
People don't talk about keeping it real.
It's understood that they actually will.

import Em from "@radui/ui/Em"

const EmExample = () => (
    <div>
        <Text>
            I have a dream of a scene between the green hills.
            <br />
            <Em>Clouds</Em> pull away and the sunlight's revealed.
            <br />
            People don't talk about keeping it <Em>real</Em>.
            <br />
            <Em>It's understood</Em> that they actually will.
        </Text>
    </div>
)