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