UNPKG

@novely/solid-renderer

Version:
15 lines (14 loc) 357 B
import type { FlowComponent, JSX } from 'solid-js'; type NativeSelectProps = Omit<JSX.SelectHTMLAttributes<HTMLSelectElement>, 'class' | 'id'>; type SelectProps = NativeSelectProps & { /** * Icon #path */ icon: string; /** * Label */ label: string; }; declare const Select: FlowComponent<SelectProps>; export { Select };