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