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