More email styles

This commit is contained in:
Jori Lallo
2018-03-04 23:30:23 -08:00
parent 189c592a44
commit 0b005afdf9
3 changed files with 20 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
// @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>
);