DocSpace-buildtools/packages/asc-web-common/src/components/Headline/StyledHeadline.js

24 lines
469 B
JavaScript
Raw Normal View History

import styled from "styled-components";
2020-11-26 16:40:54 +00:00
import Heading from "@appserver/components/src/components/heading";
const size = {
header: "28px",
menu: "27px",
content: "21px",
};
const weight = {
header: 600,
menu: "bold",
content: "bold",
};
const StyledHeading = styled(Heading)`
margin: 0;
line-height: 56px;
font-size: ${(props) => size[props.headlineType]};
font-weight: ${(props) => weight[props.headlineType]};
`;
export default StyledHeading;