@ -5,16 +5,12 @@ const OutlineTextarea = ({ text, outlineTitleClr, outlineTitle, outline }) => {
< div >
{ outline && (
< span
className = { ` absolute right-20 mt-3 bg-white text-xs px-2 font-sansbold z-10 ` }
style = { { color : outlineTitleClr } }
className = { ` absolute right-20 mt-3 ${ outlineTitleClr } bg-red-600 text-xs px-2 font-sansbold z-10 ` }
>
{ outlineTitle }
< / s p a n >
) }
< textarea
style = { { borderWidth : "2px" } }
class = "text-justify leading-5 relative w-full h-20 resize-y rounded-md my-5 text-xs border-[#06BACE] focus:outline-none focus:border-[#22577E] focus:ring-1 focus:ring-[#22577E]"
>
< textarea class = "text-justify leading-5 border-[2px] relative w-full h-20 resize-y rounded-md my-5 text-xs border-[#06BACE] focus:outline-none focus:border-[#22577E] focus:ring-1 focus:ring-[#22577E]" >
{ text }
< / t e x t a r e a >
< / d i v >
@ -26,6 +22,6 @@ export default OutlineTextarea;
OutlineTextarea . defaultProps = {
text : "جنگ اول خلیج فارس، جنگی به رهبری آمریکا و با همکاری ائتلافی از ۳۵ کشور مختلف بود که علیه عراق بعثی در واکنش به اشغال کویت توسط عراق انجام گرفت " ,
outlineTitle : "مهدی عندلیب" ,
outlineTitleClr : "red " ,
outlineTitleClr : "text-blue-600 " ,
outline : true ,
} ;