@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
35 lines (34 loc) • 1.03 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ParagraphTitle2 = exports.Paragraph1 = exports.ContainerImg = exports.ContainerDescriptionTitle = void 0;
var _material = require("@mui/material");
var ContainerImg = exports.ContainerImg = (0, _material.styled)('div')({
width: '100%',
height: 'auto',
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center'
});
var ContainerDescriptionTitle = exports.ContainerDescriptionTitle = (0, _material.styled)('div')({
marginTop: '0.5rem',
textAlign: 'center'
});
var Paragraph1 = exports.Paragraph1 = (0, _material.styled)(_material.Typography)({
fontWeight: 700,
fontStyle: 'normal',
fontSize: '18px',
lineHeight: '27px',
letterSpacing: '2%',
color: '#424D59'
});
var ParagraphTitle2 = exports.ParagraphTitle2 = (0, _material.styled)(_material.Typography)({
fontWeight: 400,
fontStyle: 'normal',
fontSize: '18px',
lineHeight: '27px',
letterSpacing: '2%',
color: '#424D59'
});