2018-05-17 11:02:55 -07:00

22 lines
418 B
TypeScript

import { Styles } from '@0xproject/react-shared';
import * as React from 'react';
export interface TextHeaderProps {
labelText: string;
}
const styles: Styles = {
title: {
fontWeight: 'bold',
fontSize: 20,
},
};
export const TextHeader = (props: TextHeaderProps) => {
return (
<div className="py3" style={styles.title}>
{props.labelText}
</div>
);
};