18 lines
244 B
JavaScript
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>
|
|
);
|