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-05-05 16:16:08 -07:00

18 lines
244 B
JavaScript

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