Skip to content

Commit bb612ec

Browse files
vberschMarcusNotheis
authored andcommitted
fix(Custom Components): adding ref to CommonProps interface (#84)
1 parent a9c863e commit bb612ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/main/src/interfaces/CommonProps.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { CSSProperties } from 'react';
1+
import { CSSProperties, Ref } from 'react';
22

33
export interface CommonProps {
44
/**
@@ -16,4 +16,5 @@ export interface CommonProps {
1616
*/
1717
tooltip?: string;
1818
slot?: string;
19+
ref?: Ref<any>;
1920
}

0 commit comments

Comments
 (0)