import { prose } from "@hedia/hexui/components/prose";
import { blockquote } from "@hedia/html/elements";
export default function () {
return prose(
blockquote(
"This is a blockquote. It is used to highlight a section of text that is quoted from another source or to emphasize a point.",
),
);
}