@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 763 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Heart = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 28 28"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M14.6 6.2a6.52 6.52 0 1 1 9.51 8.9l-9.58 9.68a.75.75 0 0 1-1.06 0L3.89 15.1a6.52 6.52 0 1 1 9.5-8.92l.61.68.6-.68z"
}));
});
Heart.displayName = 'Heart';
export var HeartDimensions = {
height: 28,
width: 28
};