react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 332 B
JavaScript
import React from 'react';
export default function LessThanIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-less-than ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M18.5 4.14l1 1.72L8.97 12l10.53 6.14-1 1.72L5 12l13.5-7.86z" />
</svg>
);
}