iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 492 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBell(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 12v-2a5.25 5.25 0 10-10.5 0v2l-2 4.25h14.5l-2-4.25zM9 16.75s0 2.5 3 2.5 3-2.5 3-2.5" })));
}
export default SvgBell;