import React from 'react'; import StillImage from 'soapbox/components/still_image'; import type { Account as AccountEntity } from 'soapbox/types/entities'; interface IAvatarOverlay { account: AccountEntity, friend: AccountEntity, } const AvatarOverlay: React.FC = ({ account, friend }) => (
); export default AvatarOverlay;