import React from 'react' import {Box} from '@chakra-ui/react' import { Field } from '../ui/field' import {Select} from '../FixedSelect' interface Props { label: string textField: string field: string bg: string handleAccessedBy: any options: { value: string, label: string }[] width?: string } const SelectInput = ({label, textField, field, bg, handleAccessedBy, options, width = ''}: Props) => { return (