import cx from 'classnames' import styles from './CodeBlock.module.scss' type Props = { verb?: string codeBlock: string highlight?: string } export function CodeBlock({ verb, codeBlock, highlight }: Props) { return (
{verb && (
{verb}
)}{' '}
{codeBlock}
)
}