mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-02-08 18:39:31 +08:00
9 lines
330 B
TypeScript
9 lines
330 B
TypeScript
export function TypographyBlockquote() {
|
|
return (
|
|
<blockquote className="mt-6 border-l-2 border-slate-300 pl-6 italic text-slate-800 dark:border-slate-600 dark:text-slate-200">
|
|
"After all," he said, "everyone enjoys a good joke, so it's only fair that
|
|
they should pay for the privilege."
|
|
</blockquote>
|
|
)
|
|
}
|