UNPKG

react-elegant-ui

Version:

Elegant UI components, made by BEM best practices for react

7 lines (6 loc) 249 B
import { ComponentType, FC } from 'react'; import { ISelectProps } from '../Select'; /** * HOC who render native select for touch devices */ export declare const withNativeControl: (BaseComponent: ComponentType<ISelectProps>) => FC<ISelectProps>;