import React from 'react'; import { Field } from 'formik'; export interface Option { key: string; label: string; } export interface Props extends React.SelectHTMLAttributes { label?: string; options?: Option[]; } const focusStyles = 'focus:outline-none focus:shadow focus:border-gray-400'; const baseStyles = 'p-2 border bg-white border-gray-300 rounded-sm'; const SelectBase: React.FC = ({ label, options = [], ...props }) => { return (
); }; const Select: React.FC = props => ; export { SelectBase }; export default Select;