import type { LoadingDotsProps } from "$/types/Loading"; export default function CircleShrinkingDots({ width, height, className, animationDuration = 0.6, stroke, fill }: LoadingDotsProps){ //https://github.com/n3r4zzurr0/svg-spinners/blob/main/svg-smil/6-dots-scale.svg?short_path=17d1946 const id = crypto.randomUUID().replaceAll("-", ""); return ( ); }