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

43 lines
1.1 KiB
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_stackdriver(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg
viewBox="0 0 65 57"
fill="#fff"
stroke="#000"
strokeLinecap="round"
strokeLinejoin="round"
font-family="Roboto"
font-size="14"
text-anchor="middle"
width={`${width}px`}
height={`${height}px`}
fill={`${fill}`}
>
<use xlinkHref="#a" x=".5" y=".5" />
<symbol id="a" overflow="visible">
<g stroke="none">
<path d="m47.83 55.172-16-29.834-15.984 29.84z" fill="#009245" />
<path d="m31.83 27.617-16 27.565L0 27.617z" fill="#006837" />
<path d="M0 27.627 15.97.01h31.942L31.905 27.627z" fill="#39b54a" />
<path
d="M47.83 55.172 31.904 27.618 47.91 0 64 27.585z"
fill="#8cc63f"
/>
</g>
</symbol>
</svg>
);
}
export default Integrations_stackdriver;