"use client"; import { SkeletonText } from "@calcom/ui/components/skeleton"; export function RoutingFunnelSkeleton() { return (
{/* Chart container */}
{/* Chart area */}
{/* Y-axis */}
{/* Chart content */}
{/* Grid lines */}
{Array.from({ length: 5 }).map((_, i) => (
))}
{/* Stacked area chart skeleton */}
{Array.from({ length: 7 }).map((_, i) => (
{/* Stacked areas - simulating the three data series */}
{/* X-axis label */}
))}
{/* Legend area */}
); }