import { assertEmptyObject } from '../../../../utils/assertEmptyObject';

import { StyledSpacer } from './styled';

/** Props for {@link NavigationBarSpacer} */
export interface NavigationBarSpacerProps {}

/**
 * Adds space between two items of {@link NavigationBar}
 */
export function NavigationBarSpacer(props: NavigationBarSpacerProps) {
  const { ...restProps } = props;
  assertEmptyObject(restProps);
  return <StyledSpacer role="presentation" />;
}
