forked from Ivasoft/mattermost-mobile
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
import * as React from 'react';
|
|
import Svg, {G, Path, Defs, ClipPath, Rect} from 'react-native-svg';
|
|
|
|
function ErrorSvgComponent() {
|
|
return (
|
|
<Svg
|
|
width={46}
|
|
height={45}
|
|
viewBox='0 0 46 45'
|
|
fill='none'
|
|
>
|
|
<G clipPath='url(#clip0_1304_35713)'>
|
|
<Path
|
|
d='M45.2126 6.63077L38.8691 0.287231L23.0033 16.153L7.13065 0.287231L0.787109 6.63077L16.6529 22.5035L0.787109 38.3692L7.13065 44.7128L23.0033 28.847L38.8691 44.7128L45.2126 38.3692L29.3469 22.5035L45.2126 6.63077Z'
|
|
fill='#D24B4E'
|
|
/>
|
|
</G>
|
|
<Defs>
|
|
<ClipPath id='clip0_1304_35713'>
|
|
<Rect
|
|
width='44.4255'
|
|
height='44.4255'
|
|
fill='white'
|
|
transform='translate(0.787109 0.287231)'
|
|
/>
|
|
</ClipPath>
|
|
</Defs>
|
|
</Svg>
|
|
);
|
|
}
|
|
|
|
export default ErrorSvgComponent;
|