// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react'; import Svg, { Rect, Path, Circle, Ellipse, Mask, G, Defs, LinearGradient, Stop, } from 'react-native-svg'; import type {StyleProp, ViewStyle} from 'react-native'; type Props = { theme: Theme; styles: StyleProp; }; const IntegrationsSvg = ({theme, styles}: Props) => { return ( ); }; export default IntegrationsSvg;