RocketChat/Rocket.Chat

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

Summary

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

const EmojiPickerListArea = (props: Omit<AllHTMLAttributes<HTMLDivElement>, 'is' | 'style'>) => (
    <Box {...props} w='full' h='full' pis={12} overflow='hidden' />
);

export default EmojiPickerListArea;