import React, {FC} from 'react'; import {AvatarStyle as S} from '../../styles/avatar.style'; import {IAvatarWrapper} from './avatar-wrapper.type'; export const AvatarWrapperComponent: FC = ({ children, ...restProps }) => { const {size, status} = restProps; return ( {children} {status === 'online' && } {status === 'verified' && } ); };