Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1import clsx from 'clsx' 2 3export function Prose({ as: Component = 'div', className, ...props }) { 4 return ( 5 <Component 6 className={clsx(className, 'prose dark:prose-invert')} 7 {...props} 8 /> 9 ) 10}