'use client' import { FC } from 'react' import { m } from 'framer-motion' import { varHover } from '../../animate/variants' import { AvatarDeletedUserIcon } from '../../icons' import AvatarWithPlaceholder from '../AvatarWithPlaceholder' import { IconButtonStyled } from './styled' import { ClickableAvatarProps } from './types' const ClickableAvatar: FC = ({ deletedUser = false, onClick, isOpen = false, width = 36, height = 36, children, ...props }) => { if (deletedUser) { return ( ) } return ( {children} ) } export default ClickableAvatar