UNPKG

welcome-ui

Version:

Customizable design system with react, typescript, tailwindcss and ariakit.

5 lines (4 loc) 291 B
import { default as React } from 'react'; import { SelectProps } from './types'; /** We need to add autoComplete off to avoid select UI issues when is an input */ export declare const Select: React.ForwardRefExoticComponent<Omit<SelectProps, "ref"> & React.RefAttributes<HTMLInputElement>>;