From ff3a251e75fafce7d95177010401483127973313 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 12 Apr 2022 15:48:47 +0200 Subject: chore: add a MainNavButton component I also move the active state from the hamburger to this pseudo-button. It makes more sense that the button handles the icon shape. --- src/components/atoms/icons/hamburger.tsx | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'src/components/atoms/icons/hamburger.tsx') diff --git a/src/components/atoms/icons/hamburger.tsx b/src/components/atoms/icons/hamburger.tsx index 6716b26..7e7c2c9 100644 --- a/src/components/atoms/icons/hamburger.tsx +++ b/src/components/atoms/icons/hamburger.tsx @@ -3,13 +3,14 @@ import styles from './hamburger.module.scss'; type HamburgerProps = { /** - * Set additional classnames to the icon. + * Set additional classnames to the icon wrapper. */ className?: string; + /** - * Transform hamburger to a close icon when active. + * Set additional classnames to the icon. */ - isActive: boolean; + iconClassName?: string; }; /** @@ -17,11 +18,15 @@ type HamburgerProps = { * * Render a Hamburger icon. */ -const Hamburger: FC = ({ className = '', isActive }) => { - const stateClass = isActive ? `${styles['icon--active']}` : ''; - const iconClasses = `${styles.icon} ${stateClass} ${className}`; - - return ; +const Hamburger: FC = ({ + className = '', + iconClassName = '', +}) => { + return ( + + + + ); }; export default Hamburger; -- cgit v1.2.3