iconic-icons-rn
Version:
Iconic icons for React Native
11 lines (10 loc) • 853 B
JavaScript
import * as React from "react";
import Svg, { Path, Circle } from "react-native-svg";
function SvgEmojiSad(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: "M8.75 4.75h6.5a4 4 0 014 4v6.5a4 4 0 01-4 4h-6.5a4 4 0 01-4-4v-6.5a4 4 0 014-4z" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M7.75 15.25S9 12.75 12 12.75s4.25 2.5 4.25 2.5" }),
React.createElement(Circle, { cx: 14, cy: 10, r: 1, fill: "currentColor" }),
React.createElement(Circle, { cx: 10, cy: 10, r: 1, fill: "currentColor" })));
}
export default SvgEmojiSad;