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

33 lines
1.3 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 Click_rage(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg
viewBox="0 0 31 30"
fill="none"
width={`${width}px`}
height={`${height}px`}
>
<path fill="transparent" d="M1.75 1h27.999v28h-28z" />
<path
d="M6.734 24.016a12.749 12.749 0 1 0 18.03-18.03 12.749 12.749 0 0 0-18.03 18.03Zm18.56.53a13.5 13.5 0 1 1-19.09-19.09 13.5 13.5 0 0 1 19.09 19.09Z"
stroke="#000"
/>
<path
d="M9.246 22.757a.875.875 0 0 0 1.195-.32 6.123 6.123 0 0 1 5.306-3.062 6.123 6.123 0 0 1 5.306 3.062.875.875 0 0 0 1.516-.875 7.87 7.87 0 0 0-6.822-3.937 7.874 7.874 0 0 0-6.821 3.937.875.875 0 0 0 .32 1.195ZM21.48 8.092a.875.875 0 1 1 .784 1.565l-1.765.882c.308.472.498 1.12.498 1.836 0 1.449-.784 2.625-1.75 2.625s-1.75-1.176-1.75-2.625c0-.433.07-.84.193-1.2a.879.879 0 0 1 .29-1.333l3.5-1.75Zm-11.465 0a.875.875 0 0 0-.784 1.565l1.765.882a3.395 3.395 0 0 0-.498 1.836c0 1.449.784 2.625 1.75 2.625s1.75-1.176 1.75-2.625c0-.433-.07-.84-.193-1.2a.879.879 0 0 0-.29-1.333l-3.5-1.75Z"
fill="#000"
/>
</svg>
);
}
export default Click_rage;