react-styleguidist
Version:
React components style guide generator
81 lines (74 loc) • 2.01 kB
JavaScript
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
import React from 'react';
import PropTypes from 'prop-types';
import cx from 'classnames';
import Styled from 'rsg-components/Styled';
export function SectionHeadingRenderer(_ref) {
var _cx;
var classes = _ref.classes,
children = _ref.children,
toolbar = _ref.toolbar,
id = _ref.id,
href = _ref.href,
primary = _ref.primary,
deprecated = _ref.deprecated;
var Tag = primary ? 'h1' : 'h2';
var headingClasses = cx(classes.heading, (_cx = {}, _defineProperty(_cx, classes.isPrimary, primary), _defineProperty(_cx, classes.isDeprecated, deprecated), _cx));
return React.createElement(
Tag,
{ id: id, className: classes.root },
React.createElement(
'a',
{ href: href, className: headingClasses },
children
),
React.createElement(
'div',
{ className: classes.toolbar },
toolbar
)
);
}
export var styles = function styles(_ref2) {
var color = _ref2.color,
space = _ref2.space,
fontSize = _ref2.fontSize,
fontFamily = _ref2.fontFamily;
return {
root: {
display: 'flex',
marginBottom: space[1],
alignItems: 'center'
},
heading: {
color: color.base,
fontSize: fontSize.h2,
fontFamily: fontFamily.base,
fontWeight: 'normal',
'&:hover, &:active': {
isolate: false,
textDecoration: 'underline'
}
},
isPrimary: {
fontSize: fontSize.h1
},
isDeprecated: {
textDecoration: 'line-through',
color: color.light
},
toolbar: {
marginLeft: 'auto'
}
};
};
SectionHeadingRenderer.propTypes = {
classes: PropTypes.object.isRequired,
children: PropTypes.node,
toolbar: PropTypes.node,
id: PropTypes.string.isRequired,
href: PropTypes.string.isRequired,
primary: PropTypes.bool,
deprecated: PropTypes.bool
};
export default Styled(styles)(SectionHeadingRenderer);