import React, {FC} from 'react'; import {AvatarProfileStyle as S} from './styles/avatar-profile.style'; import {IAvatarProfile} from './avatar-profile.type'; export const AvatarProfileComponent: FC = ({ status, ...restProps }) => { const {size} = restProps; return ( {status === 'online' && } {status === 'verified' && } ); };