Components
Blockquote displays quoted content, testimonials, or excerpts with an accent-colored left border and secondary text color, from Meta's Astryx design system. Renders semantic <blockquote> markup and supports an optional cite attribution rendered in a <footer> with <cite>.
Loading preview...
'use client';
import Blockquote from '@/components/ui/astryx-blockquote';
import {Theme} from '@astryxdesign/core/theme';
import {neutralTheme} from '@astryxdesign/theme-neutral/built';
export default function BlockquoteWithAttribution() {
return (
<Theme theme={neutralTheme}>
<div
style={{
minHeight: '100dvh',
display: 'grid',
placeItems: 'center',
padding: 24,
}}>
<Blockquote cite="Steve Jobs" style={{maxWidth: 500}}>
The people who are crazy enough to think they can change the world are
the ones who do.
</Blockquote>
</div>
</Theme>
);
}