Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
/* eslint-disable react/prop-types */import React from 'react'const SIZES_OPTIONS = {sm: 20,md: 25,lg: 30,xl: 45}const Avatar = ({ imageUrl = '', size = 'md', name = '' }) => {return (<imgsrc={imageUrl}alt={`${name} profile image`}className='user__image'width={SIZES_OPTIONS[size]}height={SIZES_OPTIONS[size]}/>)}export default Avatar