UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 825 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var HeartBroken = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }), React.createElement("path", { d: "M11.8 1C14.118 1 16 2.882 16 5.2c0 4.566-4.935 5.982-8 10.616-3.243-4.663-8-5.9-8-10.616C0 2.881 1.882 1 4.2 1c.943 0 1.812.43 2.512 1.06L5.499 4l3.5 2-2 5 5.5-6-3.5-2 .967-1.451c.553-.34 1.175-.549 1.833-.549z", key: "k0" }))); }); HeartBroken.displayName = 'HeartBroken'; export var HeartBrokenDimensions = { height: 16, width: 16 };