import { Editable, EditablePreview, FormControl, FormHelperText, FormLabel, UseEditableProps, } from "@chakra-ui/react"; type CustomEditableProps = { id: string; label: string; helperText?: string; } & UseEditableProps; export default function CustomEditable(props: CustomEditableProps) { const { label, id, helperText = "", ...UseEditableProps } = props; return ( {label} {helperText} ); }