Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | 87x 85x 13x 13x 7x 13x 7x 7x 13x | import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { StandardIcon } from '../icons/standard/example';
export const Avatar = props => {
const {
children,
className,
isGrouped,
isInverse,
isPrimary,
ariaHidden
} = props;
return (
<span
aria-hidden={ariaHidden}
className={classNames('slds-avatar', className, {
'slds-avatar-grouped': isGrouped,
'slds-avatar-grouped__primary': isGrouped && isPrimary,
'slds-avatar-grouped__secondary': isGrouped && !isPrimary,
'slds-avatar-grouped_inverse': isGrouped && isInverse
})}
>
{children}
</span>
);
};
Avatar.propTypes = {
ariaHidden: PropTypes.string,
children: PropTypes.node.isRequired,
className: PropTypes.string,
isGrouped: PropTypes.bool,
isInverse: PropTypes.bool,
isPrimary: PropTypes.bool
};
export const AvatarIcon = props => (
<StandardIcon symbol={props.symbol} isGrouped={props.isGrouped} />
);
AvatarIcon.propTypes = {
isGrouped: PropTypes.bool,
symbol: PropTypes.string
};
export const AvatarInitials = props => {
const { initials, title, iconClassName, isGrouped, isInverse } = props;
return (
<abbr
className={classNames('slds-avatar__initials', {
[iconClassName]: iconClassName,
'slds-avatar__initials_inverse': isInverse && !iconClassName,
'slds-avatar-grouped__initials': isGrouped
})}
title={title}
>
{initials}
</abbr>
);
};
AvatarInitials.propTypes = {
title: PropTypes.string.isRequired,
initials: PropTypes.string.isRequired,
iconClass: PropTypes.string,
isGrouped: PropTypes.bool,
isInverse: PropTypes.bool
};
|