@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
17 lines (15 loc) • 920 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const HeartFilled = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 32 32",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "currentColor"
}, /*#__PURE__*/ React.createElement("path", {
d: "M1 11.8328V11.4884C1 7.33767 3.96016 3.79735 7.99609 3.11566C10.6152 2.66495 13.3867 3.54736 15.2969 5.48616L16 6.19755L16.6504 5.48616C18.6133 3.54736 21.332 2.66495 24.0039 3.11566C28.041 3.79735 31 7.33767 31 11.4884V11.8328C31 14.2972 29.9922 16.6546 28.2109 18.3351L17.623 28.3527C17.1836 28.7684 16.6035 29 16 29C15.3965 29 14.8164 28.7684 14.377 28.3527L3.78848 18.3351C2.00957 16.6546 1.00002 14.2972 1.00002 11.8328H1Z"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(HeartFilled);
export default ForwardRef;