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

42 lines
985 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 Icn_url(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg
fill="none"
viewBox="0 0 32 32"
width={`${width}px`}
height={`${height}px`}
>
<g>
<path
d="M22 0H10C4.477 0 0 4.477 0 10v12c0 5.523 4.477 10 10 10h12c5.523 0 10-4.477 10-10V10c0-5.523-4.477-10-10-10Z"
fill="#E2E4F6"
/>
<path
d="M13 21h-2a5 5 0 0 1 0-10h2M19 11h2a5 5 0 1 1 0 10h-2M12 16h8"
stroke="#000"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h32v32H0z" />
</clipPath>
</defs>
</svg>
);
}
export default Icn_url;