import { User, Mail, Phone, Briefcase, Building2, Clock, MapPin, Calendar, BadgeCheck, CircleDot, } from "lucide-react" import { Card, CardContent, CardHeader, CardTitle, } from "@/shared/components/ui/card" import { Badge } from "@/shared/components/ui/badge" import { Separator } from "@/shared/components/ui/separator" type EmployeeData = { id?: number type?: string first_name?: string last_name?: string email?: string phone?: string position?: string designation?: string salary?: string wage_type?: string status?: string track_attendance?: boolean notify_owner_when_punch_in_out?: boolean geo_fence_radius?: string | number | null department?: { id?: number; name?: string } | null shop_calender?: { id?: number; title?: string } | null shop_timing?: { id?: number; title?: string } | null created_at?: string updated_at?: string } type EmployeeGeneralInfoProps = { employee: EmployeeData } function InfoItem({ icon: Icon, label, value, }: { icon: React.ComponentType<{ className?: string }> label: string value?: string | null }) { return (