anvil/striker-ui/components/Dialog/DialogScrollBox.tsx

10 lines
182 B
TypeScript
Raw Normal View History

import { styled } from '@mui/material';
import ScrollBox from '../ScrollBox';
const DialogScrollBox = styled(ScrollBox)({
maxHeight: '60vh',
});
export default DialogScrollBox;