import { Button, Input } from "antd"; import { ProBottomSheet } from "components/ProBottomSheet/ProBottomSheet.tsx"; import { useState } from "react"; import { useTranslation } from "react-i18next"; const { TextArea } = Input; interface SpecialRequestBottomSheetProps { isOpen: boolean; onClose: () => void; initialValue: string; onSave: (value: string) => void; } export function BottomSheet({ isOpen, onClose, initialValue, onSave, }: SpecialRequestBottomSheetProps) { const { t } = useTranslation(); const [value, setValue] = useState(initialValue); const handleSave = () => { onSave(value); onClose(); }; const handleCancel = () => { setValue(initialValue); onClose(); }; return (