box-ui-elements-mlh
Version:
15 lines (10 loc) • 299 B
JavaScript
/* @flow */
import * as React from 'react';
import './styles/NewItemsIndicator.scss';
type Props = {
className?: string,
};
const NewItemsIndicator = ({ className = '' }: Props) => (
<span className={`new-items-indicator is-showing ${className}`} />
);
export default NewItemsIndicator;