import React from 'react'; import { FormattedMessage } from 'react-intl'; import { Link } from 'react-router-dom'; import { HStack, Icon, Text } from 'soapbox/components/ui'; interface IPendingItemsRow { /** Path to navigate the user when clicked. */ to: string /** Number of pending items. */ count: number } const PendingItemsRow: React.FC = ({ to, count }) => { return (
); }; export { PendingItemsRow };