Files
fishfish/frontend/src/components/BurgerClose.jsx
T

22 lines
532 B
React

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>
);
}