Skip to content

Instantly share code, notes, and snippets.

@charmleeseul
charmleeseul / RadialRefreshTimer-v2.tsx
Created October 31, 2025 09:51
RadialRefreshTimer v2 — Optimized CSS-driven version Improved from requestAnimationFrame approach for better performance and cleaner code.
'use client';
import { useEffect, useMemo, useState } from 'react';
export function RadialRefreshTimer({
isLoading = false,
isRefresh = false,
duration = 5000,
}: {
isLoading?: boolean;
isRefresh?: boolean;