| 12345678910111213141516171819202122232425262728 |
- import { LoaderCircle, RefreshCcw } from 'lucide-react'
- import { ButtonTooltip } from '../ButtonTooltip'
- interface RefreshButtonProps {
- isLoading: boolean
- onRefresh: () => void
- }
- export const RefreshButton = ({ isLoading, onRefresh }: RefreshButtonProps) => {
- return (
- <ButtonTooltip
- size="tiny"
- type="default"
- disabled={isLoading}
- onClick={onRefresh}
- className="w-[26px]"
- icon={
- isLoading ? (
- <LoaderCircle className="text-foreground animate-spin" />
- ) : (
- <RefreshCcw className="text-foreground" />
- )
- }
- tooltip={{ content: { side: 'bottom', text: 'Refresh logs' } }}
- />
- )
- }
|