RocketChat/Rocket.Chat

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

Summary

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

const EmojiPickerLoadMore = (props: Omit<AllHTMLAttributes<HTMLAnchorElement>, 'style'>) => (
    <Box display='flex' flexDirection='column' alignItems='center' mbe={8}>
        <Box {...props} is='a' fontScale='c1' />
    </Box>
);

export default EmojiPickerLoadMore;