fix: update base menu

This commit is contained in:
2025-07-01 11:10:38 +03:00
parent a52db8dbcb
commit 359f3a32c4
4 changed files with 407 additions and 538 deletions

View File

@@ -144,9 +144,28 @@ function Youtube(props: SVGIcon) {
);
}
//WeuiArrowFilled
export function MenuArrow(props: SVGIcon) {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
width={12}
height={24}
viewBox='0 0 12 24'
{...props}
>
<path
fill='currentColor'
fillRule='evenodd'
d='M10.157 12.711L4.5 18.368l-1.414-1.414l4.95-4.95l-4.95-4.95L4.5 5.64l5.657 5.657a1 1 0 0 1 0 1.414'
></path>
</svg>
);
}
const Icons = Object.assign(
{},
{ Map, Envelope, Whatsapp, Telegram, Phone, Vk, Youtube },
{ Map, Envelope, Whatsapp, Telegram, Phone, Vk, Youtube, MenuArrow },
);
export { Icons };