@actinc/dls
Version:
Design Language System (DLS) for ACT & Encoura front-end projects.
26 lines • 778 B
JavaScript
/**
* Copyright (c) ACT, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import Typography, { typographyClasses } from '@mui/material/Typography';
import { styled } from "../../helpers/styled";
export var StyledContainer = styled('div')({
alignItems: 'center',
display: 'flex',
flexDirection: 'column',
height: '100%',
justifyContent: 'center',
width: '100%',
});
export var StyledTypography = styled(Typography)(function (_a) {
var _b;
var theme = _a.theme;
return (_b = {},
_b["&.".concat(typographyClasses.root)] = {
marginTop: theme.spacing(1),
},
_b);
});
//# sourceMappingURL=styles.js.map