UNPKG

@atlaskit/avatar

Version:

An avatar is a visual representation of a user or entity.

9 lines 209 B
export var getCustomElement = function getCustomElement(isDisabled, href, onClick) { if (href && !isDisabled) { return 'a'; } if (onClick || isDisabled) { return 'button'; } return 'span'; };