import React from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; import { AvatarBase } from '../avatar-base'; import Box from '../../ui/box/box'; import { ICON_NAMES, Icon } from '../icon'; import { BorderColor, Size, DISPLAY, AlignItems, JustifyContent, IconColor, } from '../../../helpers/constants/design-system'; import { AVATAR_FAVICON_SIZES } from './avatar-favicon.constants'; export const AvatarFavicon = ({ size = Size.MD, src, name = 'avatar-favicon', className, fallbackIconProps, borderColor = BorderColor.transparent, ...props }) => { return ( {src ? ( {`${name} ) : ( )} ); }; AvatarFavicon.propTypes = { /** * The src accepts the string of the image to be rendered */ src: PropTypes.string, /** * The alt text for the favicon avatar to be rendered */ name: PropTypes.string.isRequired, /** * Props for the fallback icon. All Icon props can be used */ fallbackIconProps: PropTypes.shape(Icon.PropTypes), /** * The size of the AvatarFavicon * Possible values could be 'Size.XS' 16px, 'Size.SM' 24px, 'Size.MD' 32px, 'Size.LG' 40px, 'Size.XL' 48px * Defaults to Size.MD */ size: PropTypes.oneOf(Object.values(AVATAR_FAVICON_SIZES)), /** * The border color of the AvatarFavicon * Defaults to COLORS.TRANSPARENT */ borderColor: Box.propTypes.borderColor, /** * Additional classNames to be added to the AvatarFavicon */ className: PropTypes.string, /** * AvatarFavicon also accepts all Box props including but not limited to * className, as(change root element of HTML element) and margin props */ ...Box.propTypes, };