UNPKG

@atlaskit/avatar

Version:

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

11 lines 226 B
const getAppearanceForAppType = appType => { switch (appType) { case 'agent': return 'hexagon'; case 'user': case 'system': default: return 'circle'; } }; export default getAppearanceForAppType;