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