import { cn } from '@/lib/utils';
import type { HTMLAttributes } from 'react';
type LoaderIconProps = {
size?: number;
};
const LoaderIcon = ({ size = 16 }: LoaderIconProps) => (
);
export type LoaderProps = HTMLAttributes & {
size?: number;
};
export const Loader = ({ className, size = 16, ...props }: LoaderProps) => (
);