This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/server/emails/components/Heading.js
2018-03-06 19:34:13 -08:00

18 lines
245 B
JavaScript

// @flow
import React from 'react';
const style = {
fontWeight: 500,
fontSize: '18px',
};
type Props = {
children: React$Element<*>,
};
export default ({ children }: Props) => (
<p>
<span style={style}>{children}</span>
</p>
);