import styled from 'styled-components' export const CodeBlock = styled.pre` margin: 0; background-color: ${({ theme }) => theme.highlight.plain.backgroundColor}; color: ${({ theme }) => theme.highlight.plain.color}; font-size: 0.8rem; line-height: 1.7; padding: 12px 20px; `