/** * Decorative wave SVG between sections. * `flip` mirrors the wave vertically. * `fromColor` and `toColor` set the CSS fill accordingly. */ type WaveDividerProps = { /** Fill color — use CSS variable or tailwind class value */ fill?: string; /** Flip vertically (place at bottom of a dark section going to light) */ flip?: boolean; className?: string; }; export function WaveDivider({ fill = "var(--background)", flip = false, className = "", }: WaveDividerProps) { return (
); }