UNPKG

@newrelic/gatsby-theme-newrelic

Version:

[![Community Project header](https://github.com/newrelic/opensource-website/raw/master/src/images/categories/Community_Project.png)](https://opensource.newrelic.com/oss-category/#community-project)

24 lines (20 loc) 431 B
import React from 'react'; import PropTypes from 'prop-types'; import { css } from '@emotion/react'; const Title = ({ children, className }) => ( <h4 className={className} css={css` margin-top: 0 !important; margin-bottom: 0.5rem !important; font-size: 1rem; `} > {children} </h4> ); Title.propTypes = { children: PropTypes.node, className: PropTypes.string, }; export default Title;