-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c7ef179
commit 5a7b539
Showing
4 changed files
with
122 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import { msg } from '../../client/OpenAudioAppContainer'; | ||
|
||
export function HamburgerSvg() { | ||
// remix of https://www.svgrepo.com/svg/532195/menu?edit=true | ||
// by: SVG Repo | ||
return ( | ||
<svg | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
data-tooltip-id="hamburger-tooltip" | ||
data-tooltip-content={msg('navbar.menu')} | ||
> | ||
<g id="SVGRepo_bgCarrier" strokeWidth="0" /> | ||
<g id="SVGRepo_tracerCarrier" strokeLinecap="round" strokeLinejoin="round" /> | ||
<g id="SVGRepo_iconCarrier"> | ||
<path | ||
d="M4 6H20M4 12H20M4 18H20" | ||
stroke="#FFFFFF" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</g> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters