import React from 'react' import Icon from '../Icon' const Blockquote = (props) => { const attr = Object.assign({}, props) delete attr.type delete attr.children return (
{props.children || null} {props.type !== 'fixme' && }
) } export default Blockquote