NavbarFormProps to have pullLeft property

There is a missing property `pullLeft` for NavbarForm
This commit is contained in:
veeramarni
2018-02-24 20:12:24 -05:00
committed by GitHub
parent 48561aeea5
commit b2fdd818da

View File

@@ -53,5 +53,6 @@ declare class NavbarText extends React.Component<NavbarTextProps> { }
interface NavbarFormProps extends React.HTMLProps<NavbarForm> {
componentClass?: React.ReactType;
pullRight?: boolean;
pullLeft?: boolean;
}
declare class NavbarForm extends React.Component<NavbarFormProps> { }