We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e1392 commit d43fbceCopy full SHA for d43fbce
src/lib/interfaces.ts
@@ -1,7 +1,11 @@
1
export interface ITheme {
2
primary: string;
3
+ hover: string;
4
border: string;
- [key: string]: any;
5
+ gray: string;
6
+ background: string;
7
+ borderRadius: string;
8
+ height: string;
9
}
10
11
export interface Option {
@@ -30,5 +34,5 @@ export interface ISelectProps {
30
34
filterOptions?: (options: Option[], filter: string) => Option[];
31
35
overrideStrings?: { [key: string]: string };
32
36
labelledBy: string;
33
- theme?: ITheme;
37
+ theme?: Partial<ITheme>;
38
0 commit comments