import clsx from 'clsx'; import { Puff } from 'react-loading-icons'; import { useIsDark } from '~/hooks'; interface Props { className?: string; color?: string; } export function Loader({ className }: Props) { const isDark = useIsDark(); return ( ); }