react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 340 B
JavaScript
import React from 'react';
export default function CeilingLightIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-ceiling-light ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M8 9h3V4h2v5h3l4 8H4l4-8m6 9a2 2 0 0 1-2 2 2 2 0 0 1-2-2h4z" />
</svg>
);
}