The communications platform that puts data protection first.
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.
 
 
 
 
 
Rocket.Chat/client/components/UserCard/Roles.js

11 lines
224 B

import React from 'react';
import Info from './Info';
const Roles = ({ children }) => (
<Info rcx-user-card__roles m='neg-x2' flexWrap='wrap' display='flex' flexShrink={0}>
{children}
</Info>
);
export default Roles;