UNPKG

@wulperstudio/cms

Version:
28 lines 755 B
import _extends from "@babel/runtime/helpers/esm/extends"; import { Box, styled } from '@mui/material'; export var Root = styled(Box, { shouldForwardProp: function shouldForwardProp(prop) { return prop !== 'backgroundColor'; } })(function (_ref) { var backgroundColor = _ref.backgroundColor; return _extends({ borderRadius: 15, padding: 15, display: 'flex', rowGap: 10, flexDirection: 'column' }, backgroundColor && { backgroundColor: backgroundColor, boxShadow: '0px 4px 24px rgba(0, 0, 0, 0.05)' }); }); export var RootSelectors = styled(Box)({ display: 'flex', flexDirection: 'row', flexWrap: 'nowrap', columnGap: 5, width: '100%', overflowX: 'auto' }); export var WrapSelector = styled(Box)({});