import type { LoadingSpinnerProps } from "$/types/LoadingTypes"; import { usePrefersReducedMotion } from "$/util/AccessibilityUtil"; export default function ThreeQuarterSpinner({ size, width, height, animationDuration = 1000, color, className, stroke, fill, trackClassName = "fill-transparent", trackStroke, trackFill, ariaLabel = "Loading" }: Readonly){ //https://github.com/n3r4zzurr0/svg-spinners/blob/main/svg-smil/270-ring-with-bg.svg const reducedMotion = usePrefersReducedMotion(); const dur = reducedMotion ? animationDuration / 100 : animationDuration / 1000; return ( ); }