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

24 lines
1.2 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 Pulse(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 26 20" width={`${width}px`} height={`${height}px`}>
<path
clipRule="evenodd"
d="M1.117.398a.813.813 0 0 0-1.23.388L-3.17 9.187h-5.118a.812.812 0 1 0 0 1.626H-2.6a.813.813 0 0 0 .764-.535L.65 3.44l5.736 15.773a.813.813 0 0 0 1.528 0l3.055-8.401H18.2a.812.812 0 0 0 .764-.535L21.45 3.44l5.736 15.773a.812.812 0 0 0 1.528 0l3.055-8.401h5.119c.055 0 .109-.006.162-.017.053.01.108.017.163.017H42.9a.812.812 0 0 0 .764-.535L46.15 3.44l5.736 15.773a.813.813 0 0 0 1.528 0l3.055-8.401h5.118a.812.812 0 1 0 0-1.626H55.9a.812.812 0 0 0-.764.534l-2.486 6.837L46.914.786a.813.813 0 0 0-1.528 0l-3.055 8.401h-5.119a.813.813 0 0 0-.162.017.813.813 0 0 0-.162-.017H31.2a.812.812 0 0 0-.764.534l-2.486 6.837L22.214.786a.813.813 0 0 0-1.528 0l-3.055 8.401H10.4a.812.812 0 0 0-.764.534L7.15 16.557 1.414.786a.813.813 0 0 0-.297-.388Z"
fill="#42AE5E"
/>
</svg>
);
}
export default Pulse;