iconic-icons-rn
Version:
Iconic icons for React Native
10 lines (9 loc) • 849 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBroadcast(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: "M6.873 15.127a7.25 7.25 0 010-10.253m10.253 0a7.25 7.25 0 010 10.253M8.995 13.005a4.25 4.25 0 010-6.01m6.01 0a4.25 4.25 0 010 6.01" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M12.5 10a.5.5 0 11-1 0 .5.5 0 011 0z" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 13.75v5.5" })));
}
export default SvgBroadcast;