cyntler / hamburger-react

Animated hamburger menu icons for React.js weighs only 1.5 KB.
https://hamburger-react.netlify.app
MIT License
963 stars 36 forks source link

Ability to add an adjacent label #29

Closed jamiewilson closed 3 years ago

jamiewilson commented 3 years ago

I was curious if theres a way to add a label next to the icon (e.g. "Menu") that would also toggle the icon animation. Thanks for the help and for publishing this project!

luukdv commented 3 years ago

@jamiewilson Sure! An example:

const [toggled, toggle] = useState()

<Hamburger toggle={toggle} toggled={toggled} />

<p onClick={() => toggle(!toggled)}>Open the menu</p>
jamiewilson commented 3 years ago

Of course! Thank you so much for the help.