You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
658 B
24 lines
658 B
import React from "react"; |
|
|
|
const CustomSelectBox = ({ options }) => { |
|
return ( |
|
<select className="customizeSelect w-full rounded text-xs text-[#00253A] py-2 bg-[#FBFBFB] border focus:bg-[#f5f5f5] border-[#DBDBDB] focus:border-[#DBDBDB] focus:ring-transparent"> |
|
{options.map((option, index) => ( |
|
<option className="text-black" key={index}> |
|
{option.title} |
|
</option> |
|
))} |
|
</select> |
|
); |
|
}; |
|
|
|
export default CustomSelectBox; |
|
|
|
CustomSelectBox.defaultProps = { |
|
options: [ |
|
{ title: "میزان تحصیلات" }, |
|
{ title: "کارشناسی" }, |
|
{ title: "ارشد" }, |
|
{ title: "دکتری" }, |
|
], |
|
};
|
|
|