tweak IAvatarContainer

This commit is contained in:
Reinaldo Neto 2022-12-20 15:13:31 -03:00
parent 744565ad21
commit 1e29a8efac
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,10 @@ import I18n from '../../i18n';
import { useTheme } from '../../theme';
import styles from './styles';
type IAvatarContainer = IAvatar & { isUserProfile?: boolean; handleEdit?: () => void };
interface IAvatarContainer extends IAvatar {
isUserProfile?: boolean;
handleEdit?: () => void;
}
const AvatarContainer = ({
style,