react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 531 B
JavaScript
import React from 'react';
export default function DoNotDisturbOffIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-do-not-disturb-off ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M17 11v2h-1.46l4.68 4.68A9.92 9.92 0 0 0 22 12 10 10 0 0 0 12 2c-2.11 0-4.07.66-5.68 1.78L13.54 11H17M2.27 2.27L1 3.54l2.78 2.78A9.92 9.92 0 0 0 2 12a10 10 0 0 0 10 10c2.11 0 4.07-.66 5.68-1.78L20.46 23l1.27-1.27L2.27 2.27M7 13v-2h1.46l2 2H7z" />
</svg>
);
}