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

Text

Text is used to display customizable text content.

This is an example of the Text component

import Text from "@radui/ui/Text"

const TextExample = () => (
    <div>
        <Text>Lorem ipsum</Text>
    </div>
)