import type { SVGProps } from "react"; import { cn } from "src/lib/utils"; interface ISVGProps extends SVGProps { size?: number; className?: string; } export const LoadingSpinner = ({ className, size = 24, ...props }: ISVGProps) => { return ( ); };