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