react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 372 B
JavaScript
import React from 'react';
export default function LabelVariantIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-label-variant ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M3.5 19l4.84-7L3.5 5h11c.67 0 1.22.3 1.63.86L20.5 12l-4.37 6.14c-.41.56-.96.86-1.63.86h-11z" />
</svg>
);
}