@dotconnor/grommet
Version:
focus on the essential experience
33 lines (31 loc) • 1.32 kB
JavaScript
import styled, { css } from 'styled-components';
import { genericStyles, normalizeColor, textAlignStyle } from '../../utils';
import { defaultProps } from '../../default-props';
var colorStyle = css(["color:", ";"], function (props) {
return normalizeColor(props.colorProp, props.theme);
});
var sizeStyle = function sizeStyle(props) {
var size = props.size || 'medium';
var data = props.theme.paragraph[size];
return css(["font-size:", ";line-height:", ";max-width:", ";"], data.size, data.height, props.fillProp ? 'none' : data.maxWidth);
};
var fontFamily = css(["font-family:", ";"], function (props) {
return props.theme.paragraph.font.family;
});
var StyledParagraph = styled.p.withConfig({
displayName: "StyledParagraph",
componentId: "tbetod-0"
})(["", " ", " ", " ", " ", " ", ""], genericStyles, function (props) {
return sizeStyle(props);
}, function (props) {
return props.textAlign && textAlignStyle;
}, function (props) {
return props.colorProp && colorStyle;
}, function (props) {
return props.theme.paragraph.font && props.theme.paragraph.font.family && fontFamily;
}, function (props) {
return props.theme.paragraph && props.theme.paragraph.extend;
});
StyledParagraph.defaultProps = {};
Object.setPrototypeOf(StyledParagraph.defaultProps, defaultProps);
export { StyledParagraph };