UNPKG

tanuki-ui

Version:

HTML-first React component library with semantic elements, multi-OS themes, and production-ready visual node editor

10 lines (9 loc) 326 B
import * as React from "react"; export interface SelectInputProps { children: React.ReactNode; onClick: () => void; disabled?: boolean; isOpen?: boolean; className?: string; } export declare const SelectInput: React.ForwardRefExoticComponent<SelectInputProps & React.RefAttributes<HTMLDivElement | null>>;