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