// @flow import React from 'react'; import classnames from 'classnames'; import * as ICONS from 'constants/icons'; import Icon from 'component/common/icon'; type Props = { count: number, }; export default function collectionCount(props: Props) { const { count = 0 } = props; return (
{count}
); }