react-elegant-ui
Version:
Elegant UI components, made by BEM best practices for react
7 lines (6 loc) • 357 B
TypeScript
import { FC, SelectHTMLAttributes } from 'react';
import { IComponentElement } from '../../../types/IComponent';
import './Select-NativeControl.css';
export interface ISelectNativeControl<T extends HTMLElement = HTMLSelectElement> extends IComponentElement<T>, SelectHTMLAttributes<T> {
}
export declare const SelectNativeControl: FC<ISelectNativeControl>;