|
|
@ -8,6 +8,7 @@ import speechlessEmoji from "../../assets/icons/speechless-emoji.svg"; |
|
|
|
import suspiciousEmoji from "../../assets/icons/suspicious-emoji.svg"; |
|
|
|
import suspiciousEmoji from "../../assets/icons/suspicious-emoji.svg"; |
|
|
|
import heartEmoji from "../../assets/icons/heart-emoji.svg"; |
|
|
|
import heartEmoji from "../../assets/icons/heart-emoji.svg"; |
|
|
|
import upwardArrow from "../../assets/icons/gray-upward-icon.svg"; |
|
|
|
import upwardArrow from "../../assets/icons/gray-upward-icon.svg"; |
|
|
|
|
|
|
|
import Button from "../Button"; |
|
|
|
|
|
|
|
|
|
|
|
const Feedback = ({ feedbacks }) => { |
|
|
|
const Feedback = ({ feedbacks }) => { |
|
|
|
const [closeModal, setCloseModal] = useState(false); |
|
|
|
const [closeModal, setCloseModal] = useState(false); |
|
|
@ -57,12 +58,10 @@ const Feedback = ({ feedbacks }) => { |
|
|
|
className="resize-y w-full py-4 px-2 focus:outline-none text-sm h-44 z-20 bg-gray-100" |
|
|
|
className="resize-y w-full py-4 px-2 focus:outline-none text-sm h-44 z-20 bg-gray-100" |
|
|
|
placeholder="به ما در رابطه تجربه کار با سایتمون بگید..." |
|
|
|
placeholder="به ما در رابطه تجربه کار با سایتمون بگید..." |
|
|
|
></textarea> |
|
|
|
></textarea> |
|
|
|
<button |
|
|
|
<Button |
|
|
|
className="text-white rounded px-10 py-2 my-5 self-end ml-10" |
|
|
|
className={`bg-blue-400 text-white rounded px-10 py-2 my-5 self-end ml-10 text-xs`} |
|
|
|
style={{ backgroundColor: "#246E8A" }} |
|
|
|
text={"ارسال"} |
|
|
|
> |
|
|
|
/> |
|
|
|
ارسال |
|
|
|
|
|
|
|
</button> |
|
|
|
|
|
|
|
</section> |
|
|
|
</section> |
|
|
|
); |
|
|
|
); |
|
|
|
}; |
|
|
|
}; |
|
|
|