aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/components/containers/message.jsx
blob: abe3286c0211d547950696cf52af79a747afc92f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from 'react';
import { Box } from '@mantine/core';

export function Message({ sx, ...props }) {
  return (
    <Box
      sx={() => ({
        display: 'grid',
        placeContent: 'center',
        minHeight: '89px',
        ...sx,
      })}
      {...props}
    />
  );
}