Skip to content

Commit

Permalink
fix: fix InputGroup/LayoutColumn TS typing (#2326)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinCsl committed Oct 12, 2020
1 parent bb524cb commit de52968
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/orbit-components/src/InputGroup/index.d.ts
Expand Up @@ -23,5 +23,5 @@ interface Props extends Common.Global, Common.SpaceAfter {
readonly onBlur?: Event;
}

declare class InputGroup extends React.FC<Props> {}
declare const InputGroup: React.FC<Props>;
export { InputGroup, InputGroup as default };
Expand Up @@ -5,7 +5,7 @@
import * as React from "react";

import * as Common from "../../common/common";
import { Devices } from "../../utils/mediaQuery/index";
import { Devices } from "../../utils/mediaQuery/consts";

declare module "@kiwicom/orbit-components/lib/LayoutColumn";

Expand Down

0 comments on commit de52968

Please sign in to comment.