react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 437 B
JavaScript
import React from 'react';
export default function LightbulbIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-lightbulb ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 2a7 7 0 0 0-7 7c0 2.38 1.19 4.47 3 5.74V17a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2.26c1.81-1.27 3-3.36 3-5.74a7 7 0 0 0-7-7M9 21a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1H9v1z" />
</svg>
);
}