Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4250 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 4250 Rev 4260
Línea 1... Línea 1...
1
/* eslint-disable react/prop-types */
1
/* eslint-disable react/prop-types */
2
import React from 'react'
2
import React from 'react'
Línea 3... Línea 3...
3
 
3
 
4
const SIZES_OPTIONS = {
4
const SIZES_OPTIONS = {
5
    sm: 20,
5
    sm: 25,
6
    md: 25,
6
    md: 30,
7
    lg: 30,
7
    lg: 40,
8
    xl: 45
8
    xl: 50
Línea 9... Línea 9...
9
}
9
}
10
 
10
 
11
const Avatar = ({ imageUrl = '', size = 'md', name = '' }) => {
11
const Avatar = ({ imageUrl = '', size = 'sm', name = '' }) => {
12
    return (
12
    return (
13
        <img
13
        <img
14
            src={imageUrl}
14
            src={imageUrl}