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