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