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/burger/BurgerBadge.js

17 lines
320 B

import { Badge } from '@rocket.chat/fuselage';
import React from 'react';
function BurgerBadge({ children }) {
return <Badge
style={{
position: 'absolute',
zIndex: '3',
insetInlineEnd: 'neg-x8',
insetBlockStart: 'neg-x4',
}}
variant='danger'
children={children}
/>;
}
export default BurgerBadge;