import { useTranslation } from 'react-i18next' import { ButtonProps, FollowState } from '@dao-dao/types' import { Tooltip } from '../tooltip' import { Button } from './Button' export type FollowingToggleProps = FollowState & Omit export const FollowingToggle = ({ following, onFollow, updatingFollowing, variant = 'secondary', ...props }: FollowingToggleProps) => { const { t } = useTranslation() return ( ) }