mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-07 06:03:58 -05:00
50 lines
878 B
TypeScript
50 lines
878 B
TypeScript
import type { LoadingPulseProps } from "$/types/Loading";
|
|
|
|
|
|
export default function Drop({
|
|
width,
|
|
height,
|
|
className,
|
|
animationDuration = 1.2,
|
|
stroke,
|
|
fill
|
|
}: LoadingPulseProps){
|
|
//https://github.com/n3r4zzurr0/svg-spinners/blob/main/svg-smil/pulse.svg
|
|
|
|
|
|
return (
|
|
<svg
|
|
width={width}
|
|
height={height}
|
|
viewBox="0 0 24 24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<circle
|
|
cx="12"
|
|
cy="12"
|
|
r="0"
|
|
className={className}
|
|
stroke={stroke}
|
|
fill={fill}
|
|
>
|
|
<animate
|
|
attributeName="r"
|
|
calcMode="spline"
|
|
dur={animationDuration}
|
|
values="0;11"
|
|
keySplines=".52,.6,.25,.99"
|
|
repeatCount="indefinite"
|
|
/>
|
|
<animate
|
|
attributeName="opacity"
|
|
calcMode="spline"
|
|
dur={animationDuration}
|
|
values="1;0"
|
|
keySplines=".52,.6,.25,.99"
|
|
repeatCount="indefinite"
|
|
/>
|
|
</circle>
|
|
</svg>
|
|
);
|
|
}
|