UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

8 lines (7 loc) 595 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgHeart(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: "M11.995 7.233c-1.45-1.623-3.867-2.06-5.683-.573-1.816 1.486-2.072 3.971-.645 5.73l6.328 5.86 6.329-5.86c1.426-1.759 1.201-4.26-.646-5.73-1.848-1.471-4.233-1.05-5.683.573z", clipRule: "evenodd" }))); } export default SvgHeart;