openreplay/frontend/app/components/ui/Icons/integrations_openreplay.tsx
Andrey Babushkin fd5c0c9747
Add lokalisation (#3092)
* applied eslint

* add locales and lint the project

* removed error boundary

* updated locales

* fix min files

* fix locales
2025-03-06 17:43:15 +01:00

34 lines
971 B
TypeScript

/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Integrations_openreplay(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg
viewBox="0 0 52 59"
width={`${width}px`}
height={`${height}px`}
fill={`${fill}`}
>
<g fill="none">
<path
d="M44.229 29.5 6.5 7.42v44.16L44.23 29.5Zm5.148-4.564A5.268 5.268 0 0 1 52 29.5c0 1.886-1 3.627-2.623 4.564L8.015 58.275C4.635 60.255 0 57.993 0 53.711V5.29C0 1.007 4.635-1.256 8.015.725l41.362 24.21Z"
fill="#394EFF"
/>
<path
d="m29.416 28.457-14.623-8.312A1.2 1.2 0 0 0 13 21.19v16.623a1.2 1.2 0 0 0 1.793 1.043l14.623-8.312a1.2 1.2 0 0 0 0-2.086Z"
fill="#27A2A8"
/>
</g>
</svg>
);
}
export default Integrations_openreplay;