|
123456789101112131415161718192021222324252627 |
- 'use client'
- import type { FC } from 'react'
- import React from 'react'
- import { RiRefreshLine } from '@remixicon/react'
- import cn from '@/utils/classnames'
- import TooltipPlus from '@/app/components/base/tooltip'
-
- type Props = {
- className?: string,
- popupContent?: string,
- onClick: () => void
- }
-
- const SyncButton: FC<Props> = ({
- className,
- popupContent = '',
- onClick,
- }) => {
- return (
- <TooltipPlus popupContent={popupContent}>
- <div className={cn(className, 'cursor-pointer select-none rounded-md p-1 hover:bg-state-base-hover')} onClick={onClick}>
- <RiRefreshLine className='h-4 w-4 text-text-tertiary' />
- </div>
- </TooltipPlus>
- )
- }
- export default React.memo(SyncButton)
|