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