react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 535 B
JavaScript
import React from 'react';
export default function CommentArrowRightOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-comment-arrow-right-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M4 2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4v3a1 1 0 0 0 1 1h.5c.25 0 .5-.1.7-.29L13.9 18H20c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2H4m0 2h16v12h-6.92L10 19.08V16H4V4m4 5.05v2.07h4.64l-1.8 1.8 1.25 1.25 4.08-4.09L12.09 6l-1.25 1.25 1.8 1.8H8z" />
</svg>
);
}