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