소스 검색

adjust clickHandler type

mightyplow 4 년 전
부모
커밋
716f8ce452
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/components/button/IconButton.tsx

+ 2 - 2
src/components/button/IconButton.tsx

@@ -1,5 +1,5 @@
 import cx from 'classnames';
-import React, { ReactChild } from 'react';
+import React, { SyntheticEvent } from 'react';
 import { Icon } from '../icon/Icon';
 import styles from './button.css';
 
@@ -7,7 +7,7 @@ type IconButtonProps = {
   icon: string,
   buttonClassName?: string,
   iconClassName?: string,
-  onClick?: () => void
+  onClick?: (event: SyntheticEvent) => void
 };
 
 function IconButton ({icon, buttonClassName, iconClassName, onClick}: IconButtonProps) {