We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 90139e1 + 5a4a93c commit c8402d7Copy full SHA for c8402d7
src/block.tsx
@@ -159,6 +159,13 @@ export const Block: React.FC<Block> = props => {
159
<div className="notion-spacer" style={{ width: spacerWith }} />
160
</>
161
);
162
+ case "quote":
163
+ if (!blockValue.properties) return null;
164
+ return (
165
+ <blockquote className="notion-quote">
166
+ {renderChildText(blockValue.properties.title)}
167
+ </blockquote>
168
+ );
169
case "callout":
170
return (
171
<div
0 commit comments