You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
394 B
24 lines
394 B
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* @emails react-core
|
|
* @flow
|
|
*/
|
|
|
|
import React from 'react';
|
|
import {colors, fonts} from 'theme';
|
|
|
|
import type {Node} from 'react';
|
|
|
|
const Header = ({children}: {children: Node}) => (
|
|
<h1
|
|
css={{
|
|
color: colors.dark,
|
|
marginRight: '5%',
|
|
...fonts.header,
|
|
}}>
|
|
{children}
|
|
</h1>
|
|
);
|
|
|
|
export default Header;
|
|
|