iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 672 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgAnnouncement(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeWidth: 1.5, d: "M19.25 10c0 2.729-1.4 5.25-2.75 5.25s-2.75-2.521-2.75-5.25 1.4-5.25 2.75-5.25 2.75 2.521 2.75 5.25z" }),
React.createElement(Path, { stroke: "currentColor", strokeWidth: 1.5, d: "M16.5 15.25S8 13.5 7 13.25 4.75 11.69 4.75 10 6 7 7 6.75s9.5-2 9.5-2M6.75 13.5v3.75a2 2 0 002 2h.5a2 2 0 002-2V14.5" })));
}
export default SvgAnnouncement;