'use client' import type { FC } from 'react' import { RiRefreshLine } from '@remixicon/react' import * as React from 'react' import TooltipPlus from '@/app/components/base/tooltip' import { cn } from '@/utils/classnames' type Props = { className?: string popupContent?: string onClick: () => void } const SyncButton: FC = ({ className, popupContent = '', onClick, }) => { return (
) } export default React.memo(SyncButton)