import { faArrowsRotate, faSpinner } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { useSync } from "../stores"; export function SyncButton() { const { isOnline, isSyncing, sync } = useSync(); const handleSync = async () => { await sync(); }; const isDisabled = !isOnline || isSyncing; return ( ); }