fix(front) Добавлен бургер меню , изменена верстка

This commit is contained in:
2026-06-10 11:30:38 +03:00
parent 21f7e75a63
commit 5fed1bd16d
6 changed files with 175 additions and 54 deletions
+21
View File
@@ -0,0 +1,21 @@
export default function BurgerClose() {
return (
<svg
width="18"
height="18"
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#clip0_305_391)">
<path d="M1 17L17 1.00003" stroke="#B78A61" strokeWidth="2" />
<path d="M1 1L17 17" stroke="#B78A61" strokeWidth="2" />
</g>
<defs>
<clipPath id="clip0_305_391">
<rect width="18" height="18" fill="white" />
</clipPath>
</defs>
</svg>
);
}