Created
February 19, 2018 21:40
-
-
Save yjose/2cdaae066f14820ebd53fffb66a81b19 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import React from "react"; | |
export default ({ open, ...props }) => ( | |
<div className={open ? "burger-menu open" : "burger-menu"} {...props}> | |
<div className="bar1" key="b1" /> | |
<div className="bar2" key="b2" /> | |
<div className="bar3" key="b3" /> | |
</div> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment