import React from "react"; import { ExtraProps } from "react-markdown"; // Custom component to render

in markdown with bottom padding export function paragraph({ children, }: React.ClassAttributes & React.HTMLAttributes & ExtraProps) { return

{children}

; }