Skip to content

Commit

Permalink
fix(Custom Components): adding ref to CommonProps interface (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
vbersch authored and MarcusNotheis committed Aug 5, 2019
1 parent a9c863e commit bb612ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/main/src/interfaces/CommonProps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CSSProperties } from 'react';
import { CSSProperties, Ref } from 'react';

export interface CommonProps {
/**
Expand All @@ -16,4 +16,5 @@ export interface CommonProps {
*/
tooltip?: string;
slot?: string;
ref?: Ref<any>;
}

0 comments on commit bb612ec

Please sign in to comment.