import { Loader2 } from 'lucide-react'; import { PropsWithChildren } from 'react'; import clsx from 'clsx'; import { Icon } from '@@/Icon'; export type Props = { className: string; }; export function InlineLoader({ children, className, }: PropsWithChildren) { return (
{children}
); }