import styled from 'styled-components';

const BlockQuote = styled.blockquote`
  padding: 16px 20px;
  position: relative;
  background: #e8e8e8;
  border-radius: 5px;

  p {
    margin: 0;
  }
`;

export default BlockQuote;