RocketChat/Rocket.Chat

View on GitHub
packages/ui-client/src/components/EmojiPicker/EmojiPickerNotFound.tsx

Summary

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

const EmojiPickerNotFound = (props: Omit<AllHTMLAttributes<HTMLDivElement>, 'is' | 'style'>) => (
    <Box {...props} display='flex' flexDirection='column' alignItems='center' fontScale='c1' mb={8} />
);

export default EmojiPickerNotFound;