thats all for today!!

This commit is contained in:
2026-03-13 16:54:36 +08:00
parent cb850b4cd0
commit 30534eb169
8 changed files with 82 additions and 41 deletions

View File

@@ -0,0 +1,21 @@
import React from "react";
const hamburger = () => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
>
<path
d="M3 4H21V6H3V4ZM3 11H15V13H3V11ZM3 18H21V20H3V18Z"
fill="white"
style={{ fillOpacity: 1 }}
/>
</svg>
);
};
export default hamburger;

View File

@@ -0,0 +1,21 @@
import React from "react";
const verticalEllipsis = () => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
>
<path
d="M8 12C8 13.1046 7.1046 14 6 14C4.8954 14 4 13.1046 4 12C4 10.8954 4.8954 10 6 10C7.1046 10 8 10.8954 8 12ZM14 12C14 13.1046 13.1046 14 12 14C10.8954 10 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12ZM20 12C20 13.1046 19.1046 14 18 14C16.8954 14 16 13.1046 16 12C16 10.8954 16.8954 10 18 10C19.1046 10 20 10.8954 20 12Z"
fill="#858699"
style={{ fillOpacity: 1 }}
/>
</svg>
);
};
export default verticalEllipsis;