@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 783 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 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M21.26 10.18A10.77 10.77 0 0 0 7.33 26.56l15.8 15.1c.49.46 1.25.46 1.73 0l15.8-15.1a10.77 10.77 0 0 0-13.93-16.38L24 12.25l-2.74-2.07Z"
}));
});
Heart.displayName = 'Heart';
export var HeartDimensions = {
height: 48,
width: 48
};