Skip to content

Instantly share code, notes, and snippets.

@yjose
Created February 19, 2018 21:40
Show Gist options
  • Save yjose/2cdaae066f14820ebd53fffb66a81b19 to your computer and use it in GitHub Desktop.
Save yjose/2cdaae066f14820ebd53fffb66a81b19 to your computer and use it in GitHub Desktop.
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