2022-03-21 11:09:01 -07:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import * as React from 'react';
|
|
|
|
|
|
|
|
const Select = React.forwardRef((props, ref) => {
|
|
|
|
const { children, ...filteredProps } = props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<select
|
|
|
|
ref={ref}
|
2022-04-10 02:11:08 -07:00
|
|
|
className='pl-3 pr-10 py-2 text-base border-gray-300 dark:border-gray-600 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>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
Select.propTypes = {
|
|
|
|
children: PropTypes.node,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Select;
|