UNPKG

@lunit/oui

Version:

Lunit Oncology UI components

22 lines (21 loc) 591 B
import { Divider } from '@mui/material'; import { styled } from '@mui/material/styles'; const BaseDivider = styled(Divider)(({ theme, orientation, }) => { if (orientation === 'vertical') { return { background: theme.palette.neutralGrey[65], border: 'none', height: '100%', outline: 'none', width: '1px', }; } return { background: theme.palette.neutralGrey[65], border: 'none', height: '1px', outline: 'none', width: '100%', }; }); export default BaseDivider;