nerd_project_dashboard/src/Components/DataTable/SmallFillterNav.tsx
2024-08-13 15:06:10 +03:00

38 lines
849 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from "react";
import SearchField from "./SearchFieldWithSelect";
import { IoSearch } from "react-icons/io5";
import { Select } from "antd";
import { IoMdArrowDropdown } from "react-icons/io";
import { FaArrowRight, FaPlus } from "react-icons/fa";
import { useModalState } from "../../zustand/Modal";
const SmallFillterNav = () => {
const OptionsData = [
{
value: 1,
label: "Jack",
},
{
value: 2,
label: "Lucy",
},
{
value: 3,
label: "Tom",
},
];
return (
<div className="SmallFillterNav">
<header>
<FaArrowRight /> نشاطات الطالب <span>( آية العمري ) </span>
</header>
<SearchField
options={OptionsData}
placeholder={"practical.search_here"}
/>
</div>
);
};
export default SmallFillterNav;