"use client"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { Button } from "@calcom/ui/components/button"; import { LinkIcon, MailIcon, UploadIcon } from "@coss/ui/icons"; type InviteOptionsProps = { onInviteViaEmail: () => void; onUploadCSV?: () => void; onCopyInviteLink?: () => void; isSubmitting?: boolean; }; export const InviteOptions = ({ onInviteViaEmail, onUploadCSV, onCopyInviteLink, isSubmitting = false, }: InviteOptionsProps) => { const { t } = useLocale(); return (
{onUploadCSV && ( )} {onCopyInviteLink && ( )}
); };