import clsx from 'clsx'; 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 /** Size of the icon. */ size?: 'md' | 'lg' } const PendingItemsRow: React.FC = ({ to, count, size = 'md' }) => { return (
); }; export { PendingItemsRow };