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