import LoadingSpinnerOuter from "#/icons/loading-outer.svg?react"; import { cn } from "#/utils/utils"; interface LoadingSpinnerProps { size: "small" | "large"; } export function LoadingSpinner({ size }: LoadingSpinnerProps) { const sizeStyle = size === "small" ? "w-[25px] h-[25px]" : "w-[50px] h-[50px]"; return (