forked from Ivasoft/mattermost-mobile
23 lines
607 B
TypeScript
23 lines
607 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
import * as React from 'react';
|
|
import Svg, {Path} from 'react-native-svg';
|
|
|
|
function SuccessSvgComponent() {
|
|
return (
|
|
<Svg
|
|
width={46}
|
|
height={47}
|
|
viewBox='0 0 46 47'
|
|
fill='none'
|
|
>
|
|
<Path
|
|
d='M41.1767 0.776611L13.0005 31.7625L4.82284 25.5642H0.276367L13.0005 46.2234L45.7232 0.776611H41.1767Z'
|
|
fill='#3DB887'
|
|
/>
|
|
</Svg>
|
|
);
|
|
}
|
|
|
|
export default SuccessSvgComponent;
|