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

29 lines
616 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 Side_menu_closed(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg
viewBox="0 0 24 24"
fill="none"
stroke="#999"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
width={`${width}px`}
height={`${height}px`}
>
<path d="M4 12h16M4 6h16M4 18h16" />
</svg>
);
}
export default Side_menu_closed;