aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src/select/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/forms/src/select/index.tsx')
-rw-r--r--packages/forms/src/select/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/forms/src/select/index.tsx b/packages/forms/src/select/index.tsx
index 7806baa2a..d965d3c93 100644
--- a/packages/forms/src/select/index.tsx
+++ b/packages/forms/src/select/index.tsx
@@ -5,7 +5,7 @@ import {
5} from '@mdi/js'; 5} from '@mdi/js';
6import Icon from '@mdi/react'; 6import Icon from '@mdi/react';
7import classnames from 'classnames'; 7import classnames from 'classnames';
8import React, { Component, createRef } from 'react'; 8import { ChangeEvent, Component, createRef } from 'react';
9import injectStyle from 'react-jss'; 9import injectStyle from 'react-jss';
10 10
11import { IFormField, IWithStyle } from '../typings/generic'; 11import { IFormField, IWithStyle } from '../typings/generic';
@@ -33,7 +33,7 @@ interface IProps extends IFormField, IWithStyle {
33 name: string; 33 name: string;
34 options: IOptions; 34 options: IOptions;
35 value: string; 35 value: string;
36 onChange: (event: React.ChangeEvent<HTMLInputElement>) => void; 36 onChange: (event: ChangeEvent<HTMLInputElement>) => void;
37 showSearch: boolean; 37 showSearch: boolean;
38 data: IData; 38 data: IData;
39} 39}