openreplay/frontend/app/components/ui/Icons/integrations_vuejs.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

37 lines
869 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_vuejs(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg
viewBox="0 0 120 120"
width={`${width}px`}
height={`${height}px`}
fill={`${fill}`}
>
<rect fill="#fff" height="120" rx="6.01" width="120" />
<path
d="M87.83 20h18.55L60 100 13.62 20H49.1L60 38.55 70.67 20z"
fill="#41b883"
/>
<path
d="M13.62 20 60 100l46.38-80H87.83L60 68 31.94 20z"
fill="#41b883"
/>
<path
d="M31.94 20 60 68.23 87.83 20H70.67L60 38.55 49.1 20z"
fill="#35495e"
/>
</svg>
);
}
export default Integrations_vuejs;