chore: lint

This commit is contained in:
psychedelicious 2023-08-16 11:52:21 +10:00
parent 0f8606914e
commit 6df4af2c79

View File

@ -1,11 +1,11 @@
import { SystemStyleObject, useColorModeValue } from '@chakra-ui/react';
import { JSXElementConstructor, MouseEvent, ReactElement, memo } from 'react';
import { MouseEvent, ReactElement, memo } from 'react';
import IAIIconButton from './IAIIconButton';
type Props = {
onClick: (event: MouseEvent<HTMLButtonElement>) => void;
tooltip: string;
icon?: ReactElement<any, string | JSXElementConstructor<any>>;
icon?: ReactElement;
styleOverrides?: SystemStyleObject;
};