- Refactored Sheet component to use new Radix UI Dialog and added optional close button. - Updated Sidebar component to enhance mobile responsiveness and improve accessibility. - Modified Skeleton component to use a muted background for better visibility. - Enhanced Sonner component to support theme switching and custom icons for notifications. - Adjusted Spinner component for cleaner code and added data attributes for accessibility. - Improved ToggleGroup and Toggle components for better spacing and alignment. - Updated Tooltip component for improved styling and accessibility features. - Added useIsMobile hook for better mobile detection and responsiveness.
11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
import { cn } from "@/lib/utils"
|
|
import { Loader2Icon } from "lucide-react"
|
|
|
|
function Spinner({ className, ...props }: React.ComponentProps<"svg">) {
|
|
return (
|
|
<Loader2Icon data-slot="spinner" role="status" aria-label="Loading" className={cn("size-4 animate-spin", className)} {...props} />
|
|
)
|
|
}
|
|
|
|
export { Spinner }
|