react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 476 B
JavaScript
import React from 'react';
export default function VectorLinkIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-vector-link ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M3 1c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h11c1.11 0 2-.89 2-2v-3h-2v3H3V3h11v2h2V3c0-1.11-.89-2-2-2M9 7c-1.11 0-2 .89-2 2v3h2V9h11v11H9v-2H7v2c0 1.11.89 2 2 2h11c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2H9" />
</svg>
);
}