Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
34 lines
1.0 KiB
JavaScript
34 lines
1.0 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' />} />
|
|
); |