import React from 'react'; interface NewChatIconProps { width?: string; height?: string; className?: string; } export const NewChatIcon: React.FC = ({ width = "27", height = "27", className = "" }) => ( );