import type { LoadingDotsProps } from "$/types/LoadingTypes"; export default function SwellingDots({ width, height, className, animationDuration = 0.75, stroke, fill }: LoadingDotsProps){ //https://github.com/n3r4zzurr0/svg-spinners/blob/main/svg-smil/3-dots-scale.svg const id = crypto.randomUUID().replaceAll("-", ""); return ( ); }