react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 660 B
JavaScript
import React from 'react';
export default function MotionSensorIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-motion-sensor ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M10 .2C9 .2 8.2 1 8.2 2S9 3.8 10 3.8 11.8 3 11.8 2 11 .2 10 .2m5.67.8A7.33 7.33 0 0 0 23 8.33V7a6 6 0 0 1-6-6h-1.33m2.66 0c0 2.58 2.09 4.67 4.67 4.67V4.33c-1.84 0-3.33-1.49-3.33-3.33h-1.34M21 1a2 2 0 0 0 2 2V1h-2M7.92 4.03c-.17 0-.34.03-.5.08L2 5.8V11h1.8V7.33l2.11-.66L2 22h1.8l2.87-8.11L9 17v5h1.8v-6.41l-2.49-4.54.73-2.87L10.12 10H15V8.2h-3.62l-2-3.33c-.3-.5-.84-.84-1.46-.84z" />
</svg>
);
}