This commit is contained in:
Laux Dev
2026-03-17 17:02:41 +08:00
parent 7745c83bbd
commit a220230d0b
16 changed files with 412 additions and 131 deletions

View File

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