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

15 lines
292 B

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