2018-06-21 17:40:33 -07:00

17 lines
416 B
TypeScript

import { colors } from '@0xproject/react-shared';
import * as React from 'react';
import { Text } from 'ts/components/ui/text';
export interface TextHeaderProps {
labelText: string;
}
export const TextHeader = (props: TextHeaderProps) => {
return (
<Text className="pt3 pb2" fontWeight="bold" fontSize="16px" fontColor={colors.darkestGrey}>
{props.labelText}
</Text>
);
};