Loading Spinner
LoadingSpin.jsx
import { RotateCw } from 'lucide-react' export default function LoadingSpin() { return ( <div className="p-4 pb-8 flex flex-row gap-4"> <RotateCw size={30} className="text-blue-500 animate-spin" /> </div> ) }
Feedback / Loading
Loading components are used to indicate that content or data is being fetched or processed. They improve user experience by providing visual feedback during delays.