react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 335 B
JavaScript
import React from 'react';
export default function GreaterThanIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-greater-than ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M5.5 4.14l-1 1.72L15 12 4.5 18.14l1 1.72L19 12 5.5 4.14z" />
</svg>
);
}