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.
outline/server/emails/components/Heading.js

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>
);