2022-03-21 11:09:01 -07:00
|
|
|
import * as React from 'react';
|
|
|
|
|
2022-04-30 21:39:58 -07:00
|
|
|
/** Multiple-select dropdown. */
|
2022-04-10 03:07:03 -07:00
|
|
|
const Select = React.forwardRef<HTMLSelectElement>((props, ref) => {
|
2022-03-21 11:09:01 -07:00
|
|
|
const { children, ...filteredProps } = props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<select
|
|
|
|
ref={ref}
|
2022-05-04 07:50:53 -07:00
|
|
|
className='pl-3 pr-10 py-2 text-base border-gray-300 dark:border-slate-700 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 dark:bg-slate-800 sm:text-sm rounded-md'
|
2022-03-21 11:09:01 -07:00
|
|
|
{...filteredProps}
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</select>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
export default Select;
|