react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 526 B
JavaScript
import React from 'react';
export default function MagnifyMinusOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-magnify-minus-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 0 0 9.5 3 6.5 6.5 0 0 0 3 9.5 6.5 6.5 0 0 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 5 1.5-1.5-5-5m-6 0C7 14 5 12 5 9.5S7 5 9.5 5 14 7 14 9.5 12 14 9.5 14M7 9h5v1H7V9z" />
</svg>
);
}