react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 419 B
JavaScript
import React from 'react';
export default function FireExtinguisherIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-fire-extinguisher ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M10.5 7h1.25L12 5h-1.75L6 7.5V9H4V6.5L10 3h2V2h2v1h2l1-.5v3L16 5h-2l.25 2h1.25A1.5 1.5 0 0 1 17 8.5V22H9V8.5A1.5 1.5 0 0 1 10.5 7z" />
</svg>
);
}