Files
MattrixwvReactComponents/lib/component/loading/drop/Drop.tsx

59 lines
1.2 KiB
TypeScript

import type { LoadingPulseProps } from "$/types/LoadingTypes";
import { usePrefersReducedMotion } from "$/util/AccessibilityUtil";
export default function Drop({
size,
width,
height,
className,
animationDuration = 1200,
color,
stroke,
fill,
ariaLabel = "Loading"
}: Readonly<LoadingPulseProps>){
//https://github.com/n3r4zzurr0/svg-spinners/blob/main/svg-smil/pulse.svg
const reducedMotion = usePrefersReducedMotion();
const dur = reducedMotion ? animationDuration / 100 : animationDuration / 1000;
return (
<svg
width={size ?? width}
height={size ?? height}
role="status"
aria-live="polite"
aria-label={ariaLabel}
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="12"
cy="12"
r="0"
className={className}
stroke={color ?? stroke}
fill={color ?? fill}
>
<animate
attributeName="r"
calcMode="spline"
dur={dur}
values="0;11"
keySplines=".52,.6,.25,.99"
repeatCount="indefinite"
/>
<animate
attributeName="opacity"
calcMode="spline"
dur={dur}
values="1;0"
keySplines=".52,.6,.25,.99"
repeatCount="indefinite"
/>
</circle>
</svg>
);
}