import React, { FC, useCallback } from 'react'; import { getURLFromString } from '~/utils/dom'; import { PRESETS } from '~/constants/urls'; import styles from './styles.module.scss'; import classNames from 'classnames'; import { openUserProfile } from '~/utils/user'; import { DivProps } from '~/utils/types'; interface Props extends DivProps { url?: string; username?: string; size?: number; preset?: typeof PRESETS[keyof typeof PRESETS]; innerRef?: React.Ref; } const Avatar: FC = ({ url, username, size, className, innerRef, preset = PRESETS.avatar, ...rest }) => { const backgroundImage = !!url ? `url('${getURLFromString(url, preset)}')` : undefined; const onOpenProfile = useCallback(() => openUserProfile(username), [username]); return (
); }; export { Avatar };