import type { CirclePulsingDotsProps } from "$/types/Loading"; export default function CirclePulsingDots({ width, height, className, rotationAnimationDuration = 6, growingAnimationDuration = 0.6, stroke, fill }: CirclePulsingDotsProps){ //https://github.com/n3r4zzurr0/svg-spinners/blob/main/svg-smil/12-dots-scale-rotate.svg const id = crypto.randomUUID().replaceAll("-", ""); return ( ); }