react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 535 B
JavaScript
import React from 'react';
export default function TagIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-tag ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M5.5 7A1.5 1.5 0 0 1 4 5.5 1.5 1.5 0 0 1 5.5 4 1.5 1.5 0 0 1 7 5.5 1.5 1.5 0 0 1 5.5 7m15.91 4.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.11 0-2 .89-2 2v7c0 .55.22 1.05.59 1.41l8.99 9c.37.36.87.59 1.42.59.55 0 1.05-.23 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.56-.23-1.06-.59-1.42z" />
</svg>
);
}