import type { SVGProps } from "react"; export interface FloodIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function FloodIcon({ className = "", size = 24, color = "currentColor", ...props }: FloodIconProps) { return ( ); }