react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 545 B
JavaScript
import React from 'react';
export default function MagnifyPlusOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-magnify-plus-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M15.5 14l5 5-1.5 1.5-5-5v-.79l-.27-.28A6.471 6.471 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3 6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.57 4.23l.28.27h.79m-6 0C12 14 14 12 14 9.5S12 5 9.5 5 5 7 5 9.5 7 14 9.5 14m2.5-4h-2v2H9v-2H7V9h2V7h1v2h2v1z" />
</svg>
);
}