mirror of https://github.com/sgoudham/website.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
347 B
TypeScript
10 lines
347 B
TypeScript
1 year ago
|
export const Hamburger = () => {
|
||
|
return (
|
||
|
<div className="space-y-2">
|
||
|
<span className="block w-8 h-0.5 bg-overlay0 group-hover:bg-subtext1"></span>
|
||
|
<span className="block w-8 h-0.5 bg-overlay0 group-hover:bg-subtext1"></span>
|
||
|
<span className="block w-8 h-0.5 bg-overlay0 group-hover:bg-subtext1"></span>
|
||
|
</div>
|
||
|
);
|
||
|
};
|