import type { FC } from 'react'; import { useState } from 'react'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faPhone } from '@fortawesome/pro-duotone-svg-icons'; const Phone01: FC<{ className?: string } & Record> = ({ className, ...rest }) => ; import { Button } from '@/components/base/buttons/button'; import { useSip } from '@/providers/sip-provider'; import { notify } from '@/lib/toast'; interface ClickToCallButtonProps { phoneNumber: string; leadId?: string; label?: string; size?: 'sm' | 'md'; } export const ClickToCallButton = ({ phoneNumber, label, size = 'sm' }: ClickToCallButtonProps) => { const { isRegistered, isInCall, dialOutbound } = useSip(); const [dialing, setDialing] = useState(false); const handleDial = async () => { setDialing(true); try { await dialOutbound(phoneNumber); } catch { notify.error('Dial Failed', 'Could not place the call'); } finally { setDialing(false); } }; return ( ); };