import type { HTMLAttributes } from "react";
import { cn } from "../../lib/cn";
import { Spinner } from "../feedback";
export type LoadingIndicatorProps = HTMLAttributes & {
label?: string;
};
export function LoadingIndicator({
className,
label = "Loading",
...props
}: LoadingIndicatorProps) {
return (
{label}
);
}