RocketChat/Rocket.Chat

View on GitHub
packages/ui-client/src/components/Header/HeaderTitle.tsx

Summary

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

const HeaderTitle: FC<ComponentProps<typeof Box>> = (props) => (
    <Box color='default' mi={4} is='h1' fontScale='h4' withTruncatedText {...props} />
);

export default HeaderTitle;