import type { LoadingBarsProps } from "$/types/LoadingTypes"; export default function CenterGrowingBars({ width, height, className, animationDuration = 0.6, stroke, fill }: LoadingBarsProps){ //https://github.com/n3r4zzurr0/svg-spinners/blob/main/svg-smil/bars-scale-middle.svg const id = crypto.randomUUID().replaceAll("-", ""); return ( ); }