UNPKG

welcome-ui

Version:

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

7 lines (6 loc) 397 B
import { default as React } from 'react'; import { default as selectStyles } from './select.module.scss'; import { SelectProps } from './types'; export { selectStyles as selectClasses }; /** 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>>;