Skip to content

Commit

Permalink
fix(Form): Fix types (#5274)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyletsang committed Jul 7, 2020
1 parent 055c739 commit 596cee7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';

const FormRow = createWithBsPrefix('form-row');

export interface FormProps extends BsPrefixProps {
export interface FormProps
extends React.HTMLAttributes<HTMLElement>,
BsPrefixProps {
inline?: boolean;
validated?: boolean;
}
Expand Down

0 comments on commit 596cee7

Please sign in to comment.