Rad UI is still under active development. You are free to use it in your projects, but expect breaking changes. If you'd like to contribute to Rad UI, please check out Getting Started

Em

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 "@rad-ui/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>
)