import React, { useContext } from 'react';
import { TypeInput, TypeOptions } from '../../../Types';
import Append from '../shared/Append';
import { FieldContext } from '../../../Contexts';
import InlineErrors from '../shared/InlineErrors';
import Label from '../shared/Label';
import Prepend from '../shared/Prepend';
import PrivacyBarrier from '../shared/PrivacyBarrier';
import { SelectorIcon } from '@heroicons/react/solid';
import Wrapper from '../shared/Wrapper';
interface SelectProps extends TypeInput {
label?: string;
options?: TypeOptions;
}
export default (props: SelectProps): JSX.Element => {
const { id, type, name, label, disabled, placeholder, options } = props;
const { onChange, onKeyDown, onKeyUp, onFocus } = props;
const context = useContext(FieldContext);
return (
<>
>
);
};