fix: properly type button and input ref

pull/3083/head
William Grant 10 months ago
parent 8705fddd36
commit 8e5ac58bc1

@ -1,5 +1,5 @@
import classNames from 'classnames';
import { ReactNode } from 'react';
import { ReactNode, RefObject } from 'react';
import styled from 'styled-components';
export enum SessionButtonType {
@ -122,7 +122,7 @@ export type SessionButtonProps = {
onClick?: any;
children?: ReactNode;
margin?: string;
reference?: any;
reference?: RefObject<HTMLButtonElement>;
className?: string;
dataTestId?: string;
};

@ -1,4 +1,4 @@
import { ChangeEvent, ReactNode, useEffect, useState } from 'react';
import { ChangeEvent, ReactNode, RefObject, useEffect, useState } from 'react';
import { motion } from 'framer-motion';
import { isEmpty, isEqual } from 'lodash';
@ -229,7 +229,7 @@ type Props = {
onEnterPressed?: (value: string) => any;
autoFocus?: boolean;
disableOnBlurEvent?: boolean;
inputRef?: any;
inputRef?: RefObject<HTMLInputElement | HTMLTextAreaElement>;
inputDataTestId?: string;
id?: string;
enableShowHide?: boolean;

Loading…
Cancel
Save