UNPKG

react-elegant-ui

Version:

Elegant UI components, made by BEM best practices for react

12 lines (11 loc) 449 B
import { ComponentType } from 'react'; import { IButtonProps } from '../../Button/Button'; import { IIconProps } from '../../Icon/Icon'; import { ISelectNativeControl } from '../NativeControl/Select-NativeControl'; export interface ISelectButtonTriggerRegistry { Button: ComponentType<IButtonProps>; Icon: ComponentType<IIconProps>; } export interface ISelectNativeControlRegistry { NativeControl: ComponentType<ISelectNativeControl>; }