aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/components/containers/message.jsx
blob: fd963a1a920865080bf609e9618234e3ec8f4738 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
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}
    />
  );
}