index.tsx
 1  export const NotebookCellOutput = ({ children, isStderr }): JSX.Element => (
 2    <pre
 3      style={{
 4        margin: 0,
 5        borderRadius: 0,
 6        background: 'none',
 7        fontSize: '0.85rem',
 8        flexGrow: 1,
 9        padding: `var(--padding-sm)`,
10      }}
11    >
12      {children}
13    </pre>
14  );