Skip to content

Commit

Permalink
Merge branch 'master' into interactive-tooltip-markup-a11y
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan authored Feb 6, 2020
2 parents c1fe58c + 4b9cc7c commit f1c03aa
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions packages/react/src/components/UIShell/HeaderSideNavItems.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ const HeaderSideNavItems = ({
children,
hasDivider,
}) => {
const className = cx({
[`${prefix}--side-nav__header-navigation`]: true,
[`${prefix}--side-nav__header-divider`]: hasDivider,
customClassName,
});
const className = cx(
{
[`${prefix}--side-nav__header-navigation`]: true,
[`${prefix}--side-nav__header-divider`]: hasDivider,
},
customClassName
);
return <div className={className}>{children}</div>;
};

Expand Down

0 comments on commit f1c03aa

Please sign in to comment.