You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
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' />} /> |
|
); |