Files
danak-admin/src/pages/taskmanager/components/HeaderWorkspace.tsx
T
2026-06-20 09:21:13 +03:30

24 lines
879 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 { InfoCircle, Setting2, UserAdd } from "iconsax-react";
const HeaderWorkspace = () => {
return (
<div className="flex justify-between items-center bg-primary h-14 sm:h-16 xl:h-[102px] px-3 sm:px-6 xl:px-8 shrink-0 gap-3">
<div className="flex gap-2 sm:gap-4 items-center min-w-0">
<div className="text-white text-base sm:text-lg xl:text-xl truncate">طراحی Dpage</div>
<InfoCircle size={18} color="white" />
</div>
<div className="flex gap-2 sm:gap-4 items-center shrink-0">
<div className="flex gap-1 items-center px-2 sm:px-3 rounded-lg bg-white h-8">
<UserAdd size={18} color="black" />
<div className="text-black text-xs hidden sm:block">اشتراک گذاری</div>
</div>
<Setting2 size={18} color="white" />
</div>
</div>
);
};
export default HeaderWorkspace;