reablocks
Version:
Component library for React
10 lines (9 loc) • 354 B
TypeScript
import { SelectInputTheme } from './SelectInput';
import { SelectMenuTheme } from './SelectMenu';
export interface SelectTheme {
/** Theme applied to the select input element. */
selectInput: SelectInputTheme;
/** Theme applied to the select dropdown menu. */
selectMenu: SelectMenuTheme;
}
export declare const selectTheme: SelectTheme;