/* @flow */ import * as React from 'react'; import './styles/NewItemsIndicator.scss'; type Props = { className?: string, }; const NewItemsIndicator = ({ className = '' }: Props) => ( ); export default NewItemsIndicator;