import { LoaderIcon } from '@/components/icons';

const Loading = () => {
  return (
    <div className="flex items-center justify-center section">
      <LoaderIcon className="animate-spin text-muted-foreground" />
    </div>
  );
};

export default Loading;
