import React from 'react'; import { styled } from '@mui/system'; import { SVGProps } from './interfaces'; // Create a styled container with hover effects const SvgContainer = styled('svg')({ '& path': { fill: 'rgba(41, 41, 43, 1)', // Default to red if no color prop } }); export const SendNewMessage:React.FC = ({ color, opacity }) => { return ( ); };