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.
1 parent f564338 commit 1bbd8beCopy full SHA for 1bbd8be
1 file changed
src/components/Markdown.tsx
@@ -71,7 +71,9 @@ const markdownComponents: Record<string, React.FC> = {
71
// eslint-disable-next-line jsx-a11y/alt-text
72
<img
73
{...props}
74
- className="max-w-full h-auto rounded-lg shadow-md"
+ className={`max-w-full h-auto rounded-lg shadow-md ${
75
+ props.className ?? ''
76
+ }`}
77
// loading="lazy"
78
// decoding="async"
79
/>
0 commit comments