react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 417 B
JavaScript
import React from 'react';
export default function TapeMeasureIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-tape-measure ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M9 5a7 7 0 0 1 7 7h1v3h-1v4H9a7 7 0 0 1-7-7 7 7 0 0 1 7-7m0 3a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m8 9h5v4h-2v-2h-3v-2z" />
</svg>
);
}