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

46 lines
1.6 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 Cursor_trash(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg
viewBox="0 0 32 32"
fill="none"
width={`${width}px`}
height={`${height}px`}
>
<path fill="transparent" d="M0 0h32v32H0z" />
<g opacity=".5">
<path
fill="transparent"
d="M15.225-3.633 37.32 6.27l-9.903 22.096L5.32 18.463z"
/>
<path
d="m18.722 2.844 10.6 10.955a1.045 1.045 0 0 1-.706 1.77l-4.363.184-.512.021.182.48 2.151 5.648a1.046 1.046 0 0 1-1.954.746L21.97 17l-.182-.48-.398.325-3.379 2.765a1.046 1.046 0 0 1-1.707-.851l.622-15.231a1.046 1.046 0 0 1 1.796-.685Z"
stroke="#000"
strokeWidth=".74"
/>
</g>
<path
clipRule="evenodd"
d="M8.25 5.522A1.913 1.913 0 0 0 5.761 8.01l7.653 19.132a1.913 1.913 0 0 0 3.487.143l2.64-5.278 5.774 5.777a1.913 1.913 0 1 0 2.705-2.707L22.245 19.3l5.28-2.639a1.914 1.914 0 0 0-.145-3.485L8.25 5.522Z"
/>
<path
d="M3.838 12.892a1.153 1.153 0 0 0-1.126 1.796l9.578 13.815a1.153 1.153 0 0 0 2.068-.386l1.135-4.68.134-.55.48.301 5.645 3.54L3.838 12.892Zm0 0 16.608 2.592-16.608-2.592Zm19.138 11.88-5.648-3.539-.48-.3.438-.36 3.716-3.061a1.152 1.152 0 0 0-.555-2.028l2.529 9.289Zm0 0a1.153 1.153 0 0 1-1.224 1.956l1.224-1.955Z"
stroke="#000"
strokeWidth=".816"
opacity=".3"
/>
</svg>
);
}
export default Cursor_trash;