react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 404 B
JavaScript
import React from 'react';
export default function DrawingIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-drawing ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M8.5 3A5.5 5.5 0 0 1 14 8.5c0 1.33-.47 2.55-1.26 3.5H21v9h-9v-8.26c-.95.79-2.17 1.26-3.5 1.26A5.5 5.5 0 0 1 3 8.5 5.5 5.5 0 0 1 8.5 3z" />
</svg>
);
}