openreplay/frontend/app/components/ui/Icons/mouse_pointer_click.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
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 Mouse_pointer_click(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg
viewBox="0 0 14 14"
fill="none"
width={`${width}px`}
height={`${height}px`}
>
<g
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m5.25 5.25 2.917 7L9.2 9.201l3.049-1.034-7-2.917Z"
fill="currentColor"
fillOpacity=".85"
/>
<path d="m9.375 9.375 2.475 2.475M4.193 1.306l.453 1.69m-1.65 1.65-1.69-.453m6.832-1.83L6.9 3.6M3.6 6.9 2.363 8.137" />
</g>
</svg>
);
}
export default Mouse_pointer_click;