openreplay/frontend/app/components/ui/Icons/integrations_newrelic.tsx
Delirium 8578180d5f
Fix integrations icons (#2149)
* fix ui: fix icons for integrations

* fix ui: fix note integrations count fetcher
2024-04-29 16:10:18 +02:00

19 lines
898 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_newrelic(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 71 81" fill="none" width={ `${ width }px` } height={ `${ height }px` } fill={ `${ fill }` }><g><path d="M57.048 28.04v24.921l-21.73 12.463V81L70.64 60.752V20.25l-13.592 7.79Z" fill="#00AC69"/><path d="m35.322 15.581 21.73 12.458 13.591-7.79L35.321 0 0 20.248l13.587 7.791 21.735-12.458Z" fill="#1CE783"/><path d="M21.735 48.294v24.92L35.322 81V40.503L0 20.25v15.58l21.735 12.464Z" fill="#000" fillOpacity=".87"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h70.874v81H0z"/></clipPath></defs></svg>
);
}
export default Integrations_newrelic;