Browse Source

fix: add property className into interface IHeaderSearchProps

Mashiro 7 năm trước cách đây
mục cha
commit
7ffc34b3d4
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      src/components/HeaderSearch/index.d.ts

+ 1 - 0
src/components/HeaderSearch/index.d.ts

@@ -6,6 +6,7 @@ export interface IHeaderSearchProps {
   onChange?: (value: string) => void;
   onPressEnter?: (value: string) => void;
   style?: React.CSSProperties;
+  className?: string;
 }
 
 export default class HeaderSearch extends React.Component<IHeaderSearchProps, any> {}