34 lines
		
	
	
		
			No EOL
		
	
	
		
			1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			No EOL
		
	
	
		
			1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import PropTypes from 'prop-types';
 | 
						|
 | 
						|
import { FormattedMessage } from 'react-intl';
 | 
						|
 | 
						|
import { ReactComponent as GroupsIcon } from '@material-design-icons/svg/outlined/group.svg';
 | 
						|
import { ReactComponent as PersonIcon } from '@material-design-icons/svg/outlined/person.svg';
 | 
						|
import { ReactComponent as SmartToyIcon } from '@material-design-icons/svg/outlined/smart_toy.svg';
 | 
						|
 | 
						|
 | 
						|
export const Badge = ({ icon, label, domain }) => (
 | 
						|
  <div className='account-role'>
 | 
						|
    {icon}
 | 
						|
    {label}
 | 
						|
    {domain && <span className='account-role__domain'>{domain}</span>}
 | 
						|
  </div>
 | 
						|
);
 | 
						|
 | 
						|
Badge.propTypes = {
 | 
						|
  icon: PropTypes.node,
 | 
						|
  label: PropTypes.node,
 | 
						|
  domain: PropTypes.node,
 | 
						|
};
 | 
						|
 | 
						|
Badge.defaultProps = {
 | 
						|
  icon: <PersonIcon />,
 | 
						|
};
 | 
						|
 | 
						|
export const GroupBadge = () => (
 | 
						|
  <Badge icon={<GroupsIcon />} label={<FormattedMessage id='account.badges.group' defaultMessage='Group' />} />
 | 
						|
);
 | 
						|
 | 
						|
export const AutomatedBadge = () => (
 | 
						|
  <Badge icon={<SmartToyIcon />} label={<FormattedMessage id='account.badges.bot' defaultMessage='Automated' />} />
 | 
						|
); |