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

BlockQuote

BlockQuote is used to display a quote.

When my time comes, forget the wrong that I've done.
Help me leave behind some reasons to be missed.
Don't resent me and when you're feeling empty, keep me in your memory.
Leave out all the rest, leave out all the rest.
import BlockQuote from "@rad-ui/ui/BlockQuote"

const BlockQuoteExample = () => (
    <div>
        <BlockQuote> When my time comes, forget the wrong that I've done.
        Help me leave behind some reasons to be missed.
        Don't resent me and when you're feeling empty, keep me in your memory.
        Leave out all the rest, leave out all the rest. </BlockQuote>
    </div>
)