Components
A styled blockquote for quotations with a left border and italic text, following typography conventions.
Loading preview...
import { TypographyBlockquote } from "@/components/ui/uiable-typography-blockquote";
export default function Default() {
return (
<div className="flex min-h-[300px] w-full items-center justify-center bg-background p-8 text-foreground">
<TypographyBlockquote />
</div>
);
}