UNPKG

@wulperstudio/cms

Version:
44 lines (43 loc) 1.08 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UnOrderedList = exports.OrderedList = exports.List = exports.Item = void 0; var _material = require("@mui/material"); var OrderedList = exports.OrderedList = (0, _material.styled)('ol')(function (_ref) { var theme = _ref.theme; return { margin: 0, color: theme.palette.text.primary, paddingLeft: 16, marginBottom: 8, marginTop: 8 }; }); var UnOrderedList = exports.UnOrderedList = (0, _material.styled)('ul')(function (_ref2) { var theme = _ref2.theme; return { margin: 0, color: theme.palette.text.primary, paddingLeft: 16, marginBottom: 8, marginTop: 8 }; }); var List = exports.List = (0, _material.styled)('div')(function (_ref3) { var theme = _ref3.theme; return { margin: 0, color: theme.palette.text.primary, marginBottom: 8, marginTop: 8 }; }); var Item = exports.Item = (0, _material.styled)('li')(function () { return { fontWeight: 600, fontSize: '16px', lineHeight: '30px', margin: 0 }; });