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