// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import React, {PureComponent} from 'react'; import { StyleSheet, Text, View } from 'react-native'; import CustomPropTypes from 'app/constants/custom_prop_types'; export default class MarkdownBlockQuote extends PureComponent { static propTypes = { blockStyle: CustomPropTypes.Style, bulletStyle: CustomPropTypes.Style, children: CustomPropTypes.Children.isRequired }; render() { return ( {'> '} {this.props.children} ); } } const style = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'flex-start' } });