fix(FormGroup): fix className prop type from boolean to string

This commit is contained in:
Danilo Barros
2017-05-01 15:04:04 -03:00
parent becc456bdf
commit c1bcc024d7
+2 -2
View File
@@ -4,8 +4,8 @@ interface Props {
disabled?: boolean;
tag?: React.ReactType;
color?: string;
className?: boolean;
className?: string;
}
declare var FormGroup: React.StatelessComponent<Props>;
export default FormGroup;
export default FormGroup;