Parcourir la source

fix: add property className into interface IHeaderSearchProps

Mashiro il y a 7 ans
Parent
commit
7ffc34b3d4
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  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> {}