anvil/striker-ui/components/ScrollBox.tsx

9 lines
169 B
TypeScript
Raw Normal View History

import { Box as MuiBox, styled } from '@mui/material';
const ScrollBox = styled(MuiBox)({
overflowY: 'scroll',
paddingRight: '.4em',
});
export default ScrollBox;