remirror/remirror

View on GitHub
packages/remirror__react-components/src/toolbar/base-toolbar.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Stack, StackProps } from '@mui/material';
import React, { FC } from 'react';

export const Toolbar: FC<StackProps> = (props) => (
  <Stack
    direction='row'
    spacing={1}
    sx={{ backgroundColor: 'background.paper', overflowX: 'auto' }}
    {...props}
  />
);