Last active
August 11, 2021 11:56
-
-
Save hieptl/df2663ba89308748b4aca74a1576a5b4 to your computer and use it in GitHub Desktop.
Header Right Icon - Facebook Clone
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
| function HeaderRightIcon({icon, onClick}) { | |
| const handleClick = () => { | |
| if (onClick) { | |
| onClick(); | |
| } | |
| } | |
| return ( | |
| <div className="header__ricon" onClick={handleClick}> | |
| {icon} | |
| </div> | |
| ); | |
| } | |
| export default HeaderRightIcon; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment