iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 554 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBellOff(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M17.25 6.875V12l2 4.25H7.75m-2-2.125l1-2.125v-2c0-2.9 2.35-5.25 5.25-5.25 0 0 1.61 0 2.594.5M9 16.75s0 2.5 3 2.5 3-2.5 3-2.5M19.25 4.75l-14.5 14.5" })));
}
export default SvgBellOff;