// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import React, {PureComponent} from 'react'; import PropTypes from 'prop-types'; import Svg, {Path} from 'react-native-svg'; export default class CheckMark extends PureComponent { static propTypes = { width: PropTypes.number.isRequired, height: PropTypes.number.isRequired, color: PropTypes.string.isRequired, }; render() { return ( ); } }