UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

11 lines (10 loc) 857 B
import * as React from "react"; import Svg, { Path, Circle } from "react-native-svg"; function SvgEmojiHappy(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 12.75S9 15.25 12 15.25s4.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 SvgEmojiHappy;