UNPKG

@wulperstudio/cms

Version:
33 lines 787 B
import { styled } from '@mui/material'; export var Root = styled('div', { shouldForwardProp: function shouldForwardProp(prop) { return prop !== 'columnGap' && prop !== 'rowGap'; } })(function (_ref) { var columnGap = _ref.columnGap, rowGap = _ref.rowGap; return { display: 'grid', height: '100%', width: '100%', columnGap: columnGap, rowGap: rowGap, gridTemplateColumns: 'auto 1fr auto', gridTemplateAreas: "\n \"first second third\"\n " }; }); export var First = styled('div')({ gridArea: 'first', overflow: 'auto', height: '100%' }); export var Second = styled('div')({ gridArea: 'second', overflow: 'auto', height: '100%' }); export var Third = styled('div')({ gridArea: 'third', overflow: 'auto', height: '100%' });