RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/views/omnichannel/currentChats/Label.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Box } from '@rocket.chat/fuselage';
import type { ComponentProps } from 'react';
import React from 'react';

type LabelProps = ComponentProps<typeof Box>;

const Label = (props: LabelProps) => <Box fontScale='p2m' color='default' {...props} />;

export default Label;