import { FormControl, FormLabel, Input, Textarea, Select, Checkbox, RadioGroup, Radio, Stack } from '@chakra-ui/react'; import React from 'react'; import { Controller } from 'react-hook-form'; import { TiWarning } from 'react-icons/ti'; const FormField = ({ label, control, name, type = "text", options = [], errors, isRequired, arabic, ...props }) => ( {label} { switch (type) { case 'textarea': return (