Skip to content

Instantly share code, notes, and snippets.

@hieptl
Last active August 11, 2021 11:56
Show Gist options
  • Select an option

  • Save hieptl/df2663ba89308748b4aca74a1576a5b4 to your computer and use it in GitHub Desktop.

Select an option

Save hieptl/df2663ba89308748b4aca74a1576a5b4 to your computer and use it in GitHub Desktop.
Header Right Icon - Facebook Clone
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