Fix type error in Text component

This commit is contained in:
Fred Carlsen
2018-11-28 15:18:14 +01:00
parent d642082058
commit 1cc06dd9e6

View File

@@ -7,6 +7,7 @@ export type TextTag = 'p' | 'div' | 'span' | 'label' | 'h1' | 'h2' | 'h3' | 'h4'
export interface TextProps {
className?: string;
children?: any;
Tag?: TextTag;
fontSize?: string;
fontFamily?: string;