// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react'; import PropTypes from 'prop-types'; import {View} from 'react-native'; import Svg, { G, Path, } from 'react-native-svg'; function GenericSvg({height, width}) { return ( ); } GenericSvg.propTypes = { height: PropTypes.number.isRequired, width: PropTypes.number.isRequired, }; export default GenericSvg;